/* Policy Page Styles - Based on privacy.vnggames.net */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.policy-wrapper {
    min-height: 100vh;
    padding: 20px 0;
}

.policy-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.policy-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 30px;
    text-align: center;
    color: #ffffff;
}

.policy-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.policy-main-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 30px 0;
    text-align: center;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 20px;
    border-bottom: 3px solid #667eea;
}

.policy-content {
    padding: 40px 50px;
}

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

.policy-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
    text-transform: uppercase;
}

.policy-subsection {
    margin-bottom: 20px;
}

.subsection-title {
    font-size: 18px;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 12px;
    margin-top: 20px;
}

.policy-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.policy-list {
    margin: 15px 0;
    padding-left: 30px;
    list-style-type: lower-alpha;
}

.policy-list-item {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
    text-align: justify;
}

.policy-sublist {
    margin: 10px 0 10px 20px;
    padding-left: 25px;
    list-style-type: lower-roman;
}

.policy-sublist li {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 8px;
}

.policy-footer {
    background-color: #f8f9fa;
    padding: 30px 50px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.footer-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.footer-text a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.footer-text a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-wrapper {
        padding: 10px;
    }
    
    .policy-container {
        border-radius: 0;
    }
    
    .policy-header {
        padding: 30px 20px;
    }
    
    .policy-title {
        font-size: 20px;
    }
    
    .policy-content {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .subsection-title {
        font-size: 16px;
    }
    
    .policy-paragraph,
    .policy-list-item {
        font-size: 14px;
    }
    
    .policy-footer {
        padding: 20px;
    }
    
    .footer-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .policy-title {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .policy-content {
        padding: 20px 15px;
    }
    
    .policy-list {
        padding-left: 20px;
    }
    
    .policy-sublist {
        padding-left: 15px;
    }
}

