* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f7fb;
    color: #333;
}

/* ===== HEADER / NAVBAR ===== */
header.nav {
    background: #1e3c72;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    padding: 15px 20px;
}

header.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

header.nav ul li a {
    color: #ffeb3b; /* Yellow */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

header.nav ul li a:hover {
    color: #ffffff;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 90vh;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* ===== PLAY STORE BUTTON ===== */
.play-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #ffeb3b; /* Yellow */
    color: #1e3c72;      /* Blue */
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* ===== COMMON PAGE BOX ===== */
.page-box {
    max-width: 900px;
    margin: 40px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 10px;
    animation: fadeUp 0.8s ease;
}

/* ===== FOOTER ===== */
footer {
    background: #1e3c72;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

footer a {
    color: #ffeb3b;
    text-decoration: none;
    margin: 0 8px;
}

footer a:hover {
    text-decoration: underline;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.delay {
    animation-delay: 0.4s;
}

.delay2 {
    animation-delay: 0.8s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===== POLICY HERO ===== */
.policy-hero {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1e3c72, #ffeb3b);
    color: #1e3c72;
}

.policy-hero h1 {
    font-size: 42px;
}

.policy-hero p {
    font-size: 16px;
}

/* ===== GLASS EFFECT ===== */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
}

/* ===== PAGE BOX ANIMATION ===== */
.fade-up {
    animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ACTIVE NAV ===== */
header.nav ul li a.active {
    border-bottom: 2px solid #ffeb3b;
}