/* Mills: Nine Mens Morris - Privacy Policy Minimalist Theme */

:root {
    /* Hearts Theme Palette */
    --bg-light: #FAF9F6; /* Cream background from screenshot */
    --bg-card: #ffffff;
    --bg-card-hover: #fffafa;
    
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #757575;
    
    --accent-red: #B81D24; /* Dark red from Play button */
    --accent-red-light: #E31B23; /* Bright red */
    --accent-gold: #D4AF37; /* Level/Rank gold accent */
    
    --border-soft: 1px solid #E0E0E0;
    --border-red: 2px solid #B81D24;
    
    --container-max: 960px;
    --radius-lg: 24px; /* More rounded like in screenshot */
    --radius-md: 16px;
    --radius-sm: 8px;
    
    --shadow-soft: 0 10px 40px rgba(184, 29, 36, 0.08);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: #E0E0E0;
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

/* Structure */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    text-align: center;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 0.02em;
}

.badge-container {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    color: var(--accent-red);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #F0F0F0;
}

.badge i {
    font-size: 1rem;
}

.badge-update {
    background: var(--accent-red);
    color: white;
    border: none;
}

/* Privacy policy main wrapper */
.policy-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 80px;
    margin-bottom: 100px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(184, 29, 36, 0.05);
}

/* Policy Content Details */
.policy-card h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 56px 0 24px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 16px;
    letter-spacing: -0.02em;
}

.policy-card h2::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 32px;
    background: var(--accent-red);
    border-radius: 4px;
}

.policy-card h2:first-of-type {
    margin-top: 0;
}

.policy-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.policy-card p strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Highlight boxes */
.highlight-box {
    background: #FFF5F5;
    border-left: 6px solid var(--accent-red);
    padding: 32px;
    border-radius: var(--radius-md);
    margin: 40px 0;
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--accent-red);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Lists */
.policy-card ul {
    list-style: none;
    margin-bottom: 40px;
}

.policy-card li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.policy-card li::before {
    content: "♥";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.4;
}

/* Interactive section grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 60px 0;
}

.feature-item {
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid #F0F0F0;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    border-color: var(--accent-red);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(184, 29, 36, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--accent-red);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 28px;
    box-shadow: 0 10px 20px rgba(184, 29, 36, 0.2);
}

.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-item p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

.accent-text {
    color: var(--accent-red);
    font-weight: 700;
}

/* Footer styling */
footer {
    padding: 80px 0;
    background-color: white;
    text-align: center;
    border-top: 1px solid #F0F0F0;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    overflow: hidden;
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copy {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .policy-card {
        padding: 48px 24px;
        margin-bottom: 60px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 80px 0 40px;
    }

    .badge-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}