/* Utah Timezone Tool Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.utah-timezone-wrapper {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
	  margin:40px 0;
}

/* Hero Section */
.utah-hero-section {
    padding: 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #f59e0b 100%);
    position: relative;
    overflow: hidden;
}

.utah-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="0.3" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.4" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.utah-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.utah-main-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.utah-subtitle {
    font-size: 1.5rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.utah-location {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Clock Styles */
.utah-clock-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.utah-svg-clock {
    width: 300px;
    height: 300px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    padding: 10px;
}

.utah-hour-markers line {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Digital Time Display */
.utah-digital-time {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.utah-time-component {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    min-width: 100px;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.utah-time-component:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.utah-time-value {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.utah-time-label {
    font-size: 0.9rem;
    color: #e2e8f0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    display: block;
}

.utah-time-separator {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.utah-ampm {
    background: linear-gradient(145deg, #f59e0b, #d97706);
    color: #ffffff;
    padding: 0.8rem 1.2rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
    letter-spacing: 1px;
}

.utah-current-date {
    font-size: 1.3rem;
    color: #e2e8f0;
    font-weight: 500;
    margin-top: 2rem;
}

/* Section Styles */
.utah-info-section,
.utah-comparison-section,
.utah-facts-section,
.utah-business-section,
.utah-travel-section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.utah-info-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.utah-comparison-section {
    background: linear-gradient(135deg, #ddd6fe 0%, #c7d2fe 100%);
}

.utah-facts-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
}

.utah-business-section {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.utah-travel-section {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.utah-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.utah-section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    position: relative;
}

.utah-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
}

.utah-section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    font-weight: 500;
}

/* Grid Layouts */
.utah-info-grid,
.utah-facts-grid,
.utah-business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.utah-timezone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Card Styles */
.utah-info-card,
.utah-fact-card,
.utah-business-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.utah-info-card:hover,
.utah-fact-card:hover,
.utah-business-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.9);
}

.utah-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.utah-card-title,
.utah-business-type {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.utah-card-content {
    color: #4b5563;
    line-height: 1.7;
}

/* Timezone Cards */
.utah-timezone-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.utah-timezone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.utah-current-tz {
    background: linear-gradient(145deg, #4f46e5, #7c3aed);
    color: #ffffff;
    transform: scale(1.05);
}

.utah-current-tz .utah-tz-name,
.utah-current-tz .utah-tz-time,
.utah-current-tz .utah-tz-diff {
    color: #ffffff;
}

.utah-tz-flag {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.utah-tz-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.utah-tz-time {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 0.5rem;
}

.utah-tz-diff {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Facts Section */
.utah-fact-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #f59e0b;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.utah-fact-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.utah-fact-text {
    color: #4b5563;
    line-height: 1.7;
    text-align: center;
}

/* Business Section */
.utah-business-hours {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 0.5rem;
}

.utah-business-days {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.utah-business-note {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Travel Section */
.utah-travel-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.utah-travel-tips,
.utah-dst-info {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.utah-tips-title,
.utah-dst-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.utah-tips-list {
    list-style: none;
}

.utah-tip-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.utah-tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.utah-tip-text {
    color: #4b5563;
    line-height: 1.6;
}

.utah-dst-details {
    display: grid;
    gap: 1.5rem;
}

.utah-dst-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.utah-dst-event {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.utah-dst-date {
    color: #4f46e5;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.utah-dst-change {
    font-family: 'Orbitron', monospace;
    color: #059669;
    font-weight: 700;
    font-size: 1.1rem;
}

.utah-time-component {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 20px;
	padding: 1.5rem 1rem;
	min-width: 273px;
	text-align: center;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), inset 0 1px 2px rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
    .utah-main-title {
        font-size: 2.8rem;
    }
    
    .utah-digital-time {
        gap: 0.5rem;
    }
    
    .utah-time-value {
        font-size: 2rem;
    }
    
    .utah-time-separator {
        font-size: 2.5rem;
    }
    
    .utah-svg-clock {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .utah-main-title {
        font-size: 2.3rem;
    }
    
    .utah-hero-section {
        padding: 1.5rem 1rem;
    }
    
    .utah-digital-time {
        flex-direction: column;
        gap: 1rem;
    }
    
    .utah-time-separator {
        display: none;
    }
    
    .utah-svg-clock {
        width: 200px;
        height: 200px;
    }
    
    .utah-time-component {
        min-width: 80px;
        padding: 1rem 0.8rem;
    }
    
    .utah-time-value {
        font-size: 1.8rem;
    }
    
    .utah-section-title {
        font-size: 2rem;
    }
    
    .utah-travel-content {
        grid-template-columns: 1fr;
    }
    
    .utah-timezone-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 600px) {
    .utah-main-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .utah-subtitle {
        font-size: 1.2rem;
    }
    
    .utah-info-section,
    .utah-comparison-section,
    .utah-facts-section,
    .utah-business-section,
    .utah-travel-section {
        padding: 3rem 1rem;
    }
    
    .utah-info-grid,
    .utah-facts-grid,
    .utah-business-grid {
        grid-template-columns: 1fr;
    }
    
    .utah-svg-clock {
        width: 180px;
        height: 180px;
    }
    
    .utah-section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 400px) {
    .utah-main-title {
        font-size: 1.8rem;
    }
    
    .utah-time-value {
        font-size: 1.5rem;
    }
    
    .utah-time-component {
        padding: 0.8rem 0.6rem;
    }
    
    .utah-svg-clock {
        width: 160px;
        height: 160px;
    }
    
    .utah-hero-section {
        padding: 1rem 0.5rem;
    }
    
    .utah-info-section,
    .utah-comparison-section,
    .utah-facts-section,
    .utah-business-section,
    .utah-travel-section {
        padding: 2rem 0.5rem;
    }
}

/* Animations */
@keyframes utah-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.utah-current-tz {
    animation: utah-pulse 3s ease-in-out infinite;
}

@keyframes utah-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(79, 70, 229, 0.3); }
    50% { box-shadow: 0 0 40px rgba(79, 70, 229, 0.6); }
}

.utah-time-component:nth-child(1) {
    background: linear-gradient(145deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.1));
}

.utah-time-component:nth-child(3) {
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.1));
}

.utah-time-component:nth-child(5) {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.1));
}

/* Smooth transitions for all interactive elements */
* {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
