*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ================= ROOT THEME ================= */
:root {
    /* Dark Theme */
    --bg-dark: #020b18;
    --glass-bg: rgba(2, 11, 24, 0.75);
    --text-primary: #ffffff;
    --text-gold: #d4af37;
    --text-btn: #000;

    --nav-idle: #ffffff;
    --nav-active: #d4af37;

    --accent-gold: #d4af37;
    --accent-gold-soft: rgba(212, 175, 55, 0.25);

    --hex-border: #d4af37;
    --hex-text: #d4af37;
    --hex-inner-bg: rgba(2, 11, 24, 0.85);

    --footer-bg: linear-gradient(180deg, #040b14, #02060c);
    --footer-text: #cfd6e0;
    --footer-border: rgba(255, 200, 80, 0.25);
    --footer-highlight: rgba(212, 175, 55, 0.05);

    --border-muted: rgba(255, 255, 255, 0.18);
}

/* ================= LIGHT THEME ================= */
[data-theme="light"] {
    --bg-dark: #f0f4f8;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --text-primary: #002d5b;
    --text-gold: #b8860b;
    --text-btn: #fff;

    --nav-idle: #002d5b;
    --nav-active: #b8860b;

    --accent-gold: #002d5b;
    --accent-gold-soft: rgba(0, 45, 91, 0.08);

    --hex-border: #002d5b;
    --hex-text: #002d5b;
    --hex-inner-bg: #f0f4f8;

    --footer-bg: linear-gradient(180deg, #f7f9fc, #e9eef5);
    --footer-text: #002d5b;
    --footer-border: rgba(0, 45, 91, 0.2);
    --footer-highlight: rgba(0, 45, 91, 0.06);

    --border-muted: rgba(0, 45, 91, 0.25);
}

.gold {
    color: var(--text-gold);
}

body {
            margin: 0;
            padding: 0;
            font-family: "Segoe UI", Tahoma, sans-serif;
            background: var(--bg-dark);
            color: var(--text-primary);
        }

        .policy-wrapper {
            max-width: 1100px;
            margin: 60px auto;
            padding: 20px;
        }

        .policy-box {
            background: var(--glass-bg);
            border: 1px solid var(--border-muted);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
        }

        .policy-title {
            text-align: center;
            margin-bottom: 10px;
            font-size: 32px;
            font-weight: 700;
            color: var(--text-gold);
        }

        .policy-date {
            text-align: center;
            margin-bottom: 40px;
            font-size: 14px;
            opacity: 0.85;
        }

        .policy-section {
            margin-bottom: 35px;
        }

        .policy-section h2 {
            font-size: 22px;
            margin-bottom: 12px;
            color: var(--text-gold);
            border-left: 4px solid var(--accent-gold);
            padding-left: 12px;
        }

        .policy-section p {
            font-size: 15.5px;
            line-height: 1.7;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .policy-section ul {
            margin-left: 18px;
        }

        .policy-section ul li {
            margin-bottom: 8px;
            line-height: 1.6;
        }

        .contact-box {
            margin-top: 10px;
            padding: 10px;
            border-radius: 12px;
            background: var(--accent-gold-soft);
            border: 1px solid var(--border-muted);
        }

        .contact-box h3 {
            margin-bottom: 8px;
            margin-top: 8px;
            color: var(--text-gold);
        }

        .contact-box p {
            margin: 4px 0;
            font-size: 15px;
        }

        @media (max-width: 768px) {
            .policy-box {
                padding: 25px;
            }

            .policy-title {
                font-size: 26px;
            }
        }
/* ===============================
   BACK BUTTON (PREMIUM STYLE)
================================ */

.back-wrapper {
    max-width: 1100px;
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;

    color: var(--accent-gold);
    text-decoration: none;

    border-radius: 30px;
    border: 1px solid rgba(212,175,55,0.5);
    background: rgba(212,175,55,0.05);

    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.back-btn:hover {
    background: var(--accent-gold);
    color: var(--text-btn);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212,175,55,0.3);
}

/* Icon animation */
.back-btn i {
    transition: transform 0.3s ease;
}

.back-btn:hover i {
    transform: translateX(-5px);
}

/* Shine animation */
.back-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transition: 0.5s;
}

.back-btn:hover::before {
    left: 100%;
}