/* Privacy Policy Styles for Online Casino: Slots and Wheel */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --gold-color: #ffd700;
    --text-color: #2c3e50;
    --light-text: #7f8c8d;
    --background-color: #f8f9fa;
    --white: #ffffff;
    --border-color: #dee2e6;
    --gradient-start: #667eea;
    --gradient-end: #764ba2;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    margin: 0;
    padding: 0;
    font-size: 16px;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold-color), var(--accent-color), var(--gold-color));
}

header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 25px;
    position: relative;
}

header::after {
    content: '🎰';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}

h1 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin: 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    border-left: 5px solid var(--accent-color);
    padding-left: 20px;
    position: relative;
}

h2::before {
    content: '♦';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-color);
    font-size: 1.2rem;
}

.policy-content {
    margin-bottom: 40px;
}

p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.05rem;
}

ul {
    margin-bottom: 25px;
    padding-left: 30px;
    list-style: none;
}

li {
    margin-bottom: 12px;
    line-height: 1.7;
    position: relative;
    padding-left: 25px;
}

li::before {
    content: '♠';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: bold;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
}

a:hover {
    border-bottom: 2px solid var(--accent-color);
    color: var(--primary-color);
}

footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
    color: var(--light-text);
    background: linear-gradient(90deg, transparent, var(--gold-color), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Casino-themed decorative elements */
.container::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--gold-color) 30%, transparent 30%);
    border-radius: 50%;
    opacity: 0.1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 15px;
        padding: 20px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    body {
        font-size: 15px;
    }
    
    header::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        margin: 10px;
        padding: 15px;
    }
    
    h1 {
        font-size: 1.9rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    h2::before {
        display: none;
    }
}

/* Print styles */
@media print {
    body {
        background: white;
    }
    
    .container {
        box-shadow: none;
        margin: 0;
        padding: 0;
    }
    
    .container::before,
    .container::after {
        display: none;
    }
}
