:root {
    --primary-blue: #5DADE2;
    --soft-teal: #7FB3D3;
    --warm-orange: #F39C12;
    --light-gray: #F8F9FA;
    --dark-text: #698cb7;
    --muted-text: #6C757D;
    --card-white: #FFFFFF;
    --background: var(--light-gray);
    --foreground: var(--dark-text);
    --muted: var(--muted-text);
    --border: rgba(93, 173, 226, 0.2);
    --card: var(--card-white);
    --primary: var(--primary-blue);
    --accent: var(--soft-teal);
    --shadow-color: rgba(0, 0, 0, 0.1);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background:
        linear-gradient(rgba(248, 249, 250, 0.85), rgba(248, 249, 250, 0.85)),
        url('bg-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}



.min-h-screen {
    min-height: 100vh;
    padding: 1rem;
    position: relative;
}

.container {
    max-width: 92vw;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--dark-text);
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}



.timezone-sliders, .popular-timezones {
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2rem;
    background: #ffffff6e;
    position: relative;
    transition: all 0.3s ease;
}

.timezone-sliders:hover, .popular-timezones:hover {
    transform: translateY(-2px);
    /*box-shadow: 0 8px 32px var(--shadow-color);*/
}

.timezones-list {
    display: flex;
    justify-items: start;
    gap: 2rem;
    flex-wrap: wrap;
}

.timezone-item {
    margin-bottom: 1.5rem;
    position: relative;
    background: var(--card);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgb(0 0 0 / 20%);
    box-shadow: 0 2px 14px rgb(0 0 0 / 17%);
    transition: all 0.3s ease;
    width: 24vw;
}

.timezone-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-color);
}



.timezone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.timezone-info h3 {
    margin: 0;
    font-size: 1.4rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #6e7884;
}

.timezone-info p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0.25rem 0;
    font-weight: 500;
}

.time-display {
    text-align: right;
    position: relative;
}

.current-time {
    font-size: 3rem;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    color: #1b5fb3;
}



.current-date {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.slider {
    width: 100%;
    margin: 1.5rem 0;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--light-gray), var(--dark-text));
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--dark-text);
    border: 2px solid white;
    cursor: pointer;
    box-shadow: 0 2px 8px var(--shadow-color);
    transition: all 0.2s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px var(--shadow-color);
    color: var(--dark-text);
}

.timezone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.timezone-card {
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    background: var(--card);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 12px var(--shadow-color);
    font-weight: 500;
}

.timezone-card:nth-child(even) {
    background: linear-gradient(135deg, var(--card), rgba(93, 173, 226, 0.05));
}

.timezone-card:nth-child(3n) {
    background: linear-gradient(135deg, var(--card), rgba(243, 156, 18, 0.05));
}

.timezone-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-color);
    border-color: var(--primary-blue);
    z-index: 10;
}

.timezone-card.active {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue), var(--soft-teal));
    color: white;
    box-shadow: 0 8px 24px rgba(93, 173, 226, 0.3);
}



.remove-button {
    position: absolute;
    right: -0.5rem;
    top: -0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    background: var(--warm-gray);
    border: 1px solid var(--glow-purple);
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--foreground);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(5px);
}

.remove-button:hover {
    background: var(--glow-purple);
    color: var(--dark-text);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.timezone-item:hover .remove-button {
    opacity: 1;
}

.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--foreground);
    padding: 1.5rem 0;
    box-shadow: 0 2px 20px var(--shadow-color);
    position: relative;
    border-bottom: 1px solid var(--border);
}



.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-header h1 {
    margin: 0;
    font-size: 3rem;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: -0.5px;
    color: var(--dark-text);
    line-height: 1.1;
}

.subheading {
    margin: 0.5rem 0 0 0;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--muted);
    opacity: 0.8;
}

.site-header nav a {
    color: var(--foreground);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.site-header nav a:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    box-shadow: 0 4px 16px rgba(93, 173, 226, 0.3);
    transform: translateY(-2px);
}

.site-footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--muted);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
    margin-top: 3rem;
    font-size: 0.9rem;
    font-weight: 400;
    position: relative;
}



.site-footer .container {
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}



/* SEO Content Sections */
.hero-section {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-color);
}

.hero-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--foreground);
    max-width: 800px;
    margin: 0 auto;
}

.meeting-info, .faq-section {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px var(--shadow-color);
}

.meeting-info h2, .faq-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.meeting-info h3, .faq-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 1.5rem 0 1rem 0;
}

.meeting-info ul {
    list-style: none;
    padding: 0;
}

.meeting-info li {
    background: rgba(93, 173, 226, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.meeting-info li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--shadow-color);
    border-color: var(--primary-blue);
}

.faq-item {
    background: rgba(243, 156, 18, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--shadow-color);
    border-color: var(--warm-orange);
}

.faq-item h3 {
    margin-top: 0;
    color: var(--primary-blue);
}

.faq-item p {
    line-height: 1.6;
    color: var(--foreground);
    margin-bottom: 0;
}

/* Footer Enhancements */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    padding: 0.25rem 0;
    color: var(--foreground);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.8rem;
    color: var(--muted);
}

@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .header-content {
        padding-left: 1rem;
    }

    .site-header h1 {
        font-size: 2rem;
    }

    .subheading {
        font-size: 0.9rem;
    }

    .timezone-sliders, .popular-timezones {
        padding: 0rem;
    }
    .timezone-item {
        width: 100%;
    }

    h1 {
        font-size: 2.5rem;
    }

    .site-header nav {
        padding-left: 1rem;
    }

    .site-header nav a {
        margin-left: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero-section h2 {
        font-size: 1.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}