body {
    background-color: #6d28d9;
    background-image:
            radial-gradient(rgba(255, 222, 89, 0.2) 15%, transparent 16%),
            radial-gradient(rgba(255, 222, 89, 0.2) 15%, transparent 16%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    font-family: 'Trebuchet MS', 'Arial Black', 'Impact', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

@keyframes bgMove {
    0% { background-position: 0 0, 30px 30px; }
    100% { background-position: 600px 600px, 630px 630px; }
}

/* --- CONTAINER --- */
.privacy-policy {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    color: #18181b;
    padding: 20px;
}

/* --- HERO HEADER --- */
.privacy-policy .hero-banner {
    background: #ffde59;
    border: 5px solid #18181b;
    border-radius: 24px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 8px 8px 0px #18181b;
    margin-bottom: 35px;
    position: relative;
    animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.privacy-policy .hero-banner::before {
    content: "🎮";
    font-size: 50px;
    display: block;
    margin-bottom: 10px;
}

.privacy-policy .hero-banner::after {
    content: "PRESS START TO READ";
    position: absolute;
    top: -18px;
    right: 20px;
    background: #ff5757;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    padding: 6px 14px;
    border: 3px solid #18181b;
    border-radius: 20px;
    box-shadow: 3px 3px 0px #18181b;
    transform: rotate(5deg);
}

.privacy-policy .hero-title {
    font-size: 38px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #18181b;
    text-shadow: 3px 3px 0px #ffffff;
}

.privacy-policy .hero-subtitle {
    font-size: 16px;
    font-weight: bold;
    color: #4c1d95;
    margin-top: 10px;
}

/* --- POLICY SECTIONS / CARDS --- */
.privacy-policy .section-card {
    background: #ffffff;
    border: 4px solid #18181b;
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 25px;
    box-shadow: 6px 6px 0px #18181b;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.privacy-policy .section-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0px #18181b;
}

.privacy-policy .section-title {
    font-size: 22px;
    color: #18181b;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

/* Pseudo-element Icons */
.privacy-policy .icon-intro::before { content: "🛡️ "; margin-right: 10px; font-size: 26px; }
.privacy-policy .icon-loot::before { content: "📦 "; margin-right: 10px; font-size: 26px; }
.privacy-policy .icon-powerup::before { content: "⚡ "; margin-right: 10px; font-size: 26px; }
.privacy-policy .icon-cookies::before { content: "🍪 "; margin-right: 10px; font-size: 26px; }
.privacy-policy .icon-coop::before { content: "🤝 "; margin-right: 10px; font-size: 26px; }
.privacy-policy .icon-kids::before { content: "👾 "; margin-right: 10px; font-size: 26px; }
.privacy-policy .icon-rights::before { content: "👑 "; margin-right: 10px; font-size: 26px; }
.privacy-policy .icon-contact::before { content: "📬 "; margin-right: 10px; font-size: 26px; }

.privacy-policy .section-content {
    font-size: 15px;
    font-family: Arial, sans-serif;
    font-weight: 600;
    color: #3f3f46;
}

.privacy-policy .section-content p {
    margin-bottom: 12px;
}

.privacy-policy .section-content ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 12px;
}

.privacy-policy .section-content li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
}

.privacy-policy .section-content li::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff5757;
    font-size: 14px;
}

/* --- HIGHLIGHT BADGE --- */
.privacy-policy .badge {
    display: inline-block;
    background: #00e5ff;
    color: #18181b;
    border: 2px solid #18181b;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
    margin-right: 5px;
    box-shadow: 2px 2px 0px #18181b;
}

/* --- CONTACT BOX --- */
.privacy-policy .contact-box {
    background: #00e5ff;
    border: 4px solid #18181b;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-top: 15px;
    box-shadow: 4px 4px 0px #18181b;
}

.privacy-policy .contact-email {
    display: inline-block;
    margin-top: 10px;
    background: #ffffff;
    color: #18181b;
    font-weight: 900;
    text-decoration: none;
    padding: 10px 20px;
    border: 3px solid #18181b;
    border-radius: 12px;
    box-shadow: 3px 3px 0px #18181b;
    transition: background 0.2s ease;
}

.privacy-policy .contact-email:hover {
    background: #ffde59;
}
.privacy-policy .contact-email .email-link{
    color: inherit;
    text-decoration: none;
}

/* --- RESPONSIVE ADAPTATION --- */
@media (max-width: 600px) {
    .privacy-policy { padding: 12px; }
    .privacy-policy .hero-title { font-size: 26px; }
    .privacy-policy .section-card { padding: 18px 20px; }
    .privacy-policy .section-title { font-size: 18px; }
}