body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #fff7e6, #ffe0f0);
    color: #333;
    min-height: 100vh;
    overflow-x: hidden;
}

/* =========================
   BACKGROUND GLOW
========================= */

.background-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.35;
}

.glow1 {
    width: 300px;
    height: 300px;
    background: #ffd54f;
    top: -100px;
    left: -100px;
}

.glow2 {
    width: 300px;
    height: 300px;
    background: #ff80ab;
    bottom: -100px;
    right: -100px;
}

/* =========================
   NAVBAR + TABS (UPDATED)
========================= */

nav {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    color: #ff9800;
    font-size: 1.6rem;
    font-weight: bold;
}

/* TAB SYSTEM */
.nav-links {
    display: flex;
    gap: 10px;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: bold;
    padding: 10px 16px;
    border-radius: 12px;
    transition: 0.2s ease;
}

/* hover effect */
.nav-links a:hover {
    background: rgba(255,152,0,0.15);
    color: #ff9800;
    transform: translateY(-2px);
}

/* active tab */
.nav-links .active {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
    color: white;
    box-shadow: 0 6px 15px rgba(255,152,0,0.25);
}

/* =========================
   HERO SECTION
========================= */

.hero {
    text-align: center;
    padding: 120px 20px;
}

.hero h2 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero p {
    max-width: 700px;
    margin: auto;
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.85;
}

.hero-btn {
    display: inline-block;
    margin-top: 35px;
    padding: 16px 30px;
    background: linear-gradient(135deg, #ff9800, #ffb74d);
    color: white;
    border-radius: 16px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(255,152,0,0.3);
    transition: 0.2s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

/* =========================
   INFO CARDS (HOME PAGE)
========================= */

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 60px;
    max-width: 1000px;
    margin: auto;
}

.info-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.2s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

/* =========================
   CONTENT SECTION
========================= */

.content {
    padding: 60px;
}

/* =========================
   QUOTE PAGE
========================= */

.quote-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
}

.quote-card {
    width: 100%;
    max-width: 750px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.quote-info {
    margin-top: 10px;
    opacity: 0.7;
    font-size: 1rem;
}

#quote {
    font-size: 2rem;
    line-height: 1.7;
    margin-top: 40px;
    font-weight: bold;
}

#author {
    margin-top: 25px;
    color: #ff9800;
    font-size: 1.3rem;
}

/* =========================
   COUNTDOWN CARDS
========================= */

.countdown-grid {
    margin-top: 40px;
    width: 100%;
    max-width: 750px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.countdown-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.countdown-card p {
    font-size: 1.2rem;
    color: #ff9800;
    font-weight: bold;
}

/* =========================
   BUTTONS
========================= */

button {
    padding: 14px 22px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff9800, #ffb74d);
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s ease;
}

button:hover {
    transform: translateY(-2px);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    nav {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h2 {
        font-size: 2.8rem;
    }

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

    .quote-card {
        padding: 35px;
    }

    #quote {
        font-size: 1.5rem;
    }
}