/* disclaimer.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #fc8318;
    --primary-dark: #e67415;
    --secondary: #ff416c;
    --dark: #1a1a1a;
    --dark-light: #2a2a2a;
    --text: #e0e0e0;
    --text-light: #b0b0b0;
    --warning: #ffcc00;
    --danger: #ff6b6b;
    --success: #00cc88;
    --card-bg: rgba(40, 40, 50, 0.8);
    --card-border: rgba(252, 131, 24, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, var(--dark) 0%, #0f0f1a 100%);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation */
.disclaimer-nav {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(252, 131, 24, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo i {
    color: var(--primary);
    font-size: 1.8rem;
}

.nav-logo:hover {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-links a:hover {
    color: white;
    background: rgba(252, 131, 24, 0.1);
}

.nav-links a i {
    font-size: 1.1rem;
}

/* Hero Section */
.disclaimer-hero {
    background: linear-gradient(135deg, 
        rgba(252, 131, 24, 0.15) 0%, 
        rgba(255, 65, 108, 0.15) 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-icon {
    font-size: 4rem;
    color: var(--warning);
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    color: rgba(252, 131, 24, 0.1);
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

/* Main Container */
.disclaimer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Summary Section */
.disclaimer-summary {
    margin-bottom: 3rem;
}

.summary-card {
    background: linear-gradient(145deg, var(--card-bg), rgba(30, 30, 40, 0.8));
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.summary-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.summary-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.summary-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.summary-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge.age {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.badge.legal {
    background: rgba(252, 131, 24, 0.2);
    color: var(--primary);
    border: 1px solid rgba(252, 131, 24, 0.3);
}

.badge.privacy {
    background: rgba(0, 204, 136, 0.2);
    color: var(--success);
    border: 1px solid rgba(0, 204, 136, 0.3);
}

/* Disclaimer Grid */
.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.disclaimer-section {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.disclaimer-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.disclaimer-section.full-width {
    grid-column: 1 / -1;
}

.section-header {
    background: linear-gradient(135deg, 
        rgba(252, 131, 24, 0.2) 0%, 
        rgba(255, 65, 108, 0.2) 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--card-border);
}

.section-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.section-header h2 {
    font-size: 1.5rem;
    color: white;
}

.section-content {
    padding: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.content-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.item-icon {
    width: 40px;
    height: 40px;
    background: rgba(252, 131, 24, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.item-content h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.item-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.legal-card {
    background: rgba(30, 30, 40, 0.6);
    border: 1px solid rgba(252, 131, 24, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.legal-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.legal-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.legal-card h4 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.legal-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Warning Section */
.warning-section {
    background: linear-gradient(135deg, 
        rgba(255, 204, 0, 0.15) 0%, 
        rgba(255, 107, 107, 0.15) 100%);
    border: 2px solid var(--warning);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.warning-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.warning-header i {
    font-size: 2rem;
    color: var(--warning);
    animation: spin 4s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.warning-header h3 {
    color: var(--warning);
    font-size: 1.8rem;
    font-weight: 700;
}

.warning-content p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.warning-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Acceptance Section */
.acceptance-section {
    margin: 3rem 0;
}

.acceptance-card {
    background: linear-gradient(145deg, var(--card-bg), rgba(30, 30, 40, 0.8));
    border: 2px solid var(--success);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.acceptance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--success), #00ffaa);
}

.acceptance-icon {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 1.5rem;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.acceptance-card h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
}

.acceptance-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.acceptance-check {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(0, 204, 136, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 204, 136, 0.2);
}

.acceptance-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--success);
    cursor: pointer;
}

.acceptance-check label {
    color: white;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.acceptance-check label i {
    color: var(--success);
}

.acceptance-check label:hover {
    color: var(--success);
}

.acceptance-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: 1px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(252, 131, 24, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-exit {
    background: linear-gradient(135deg, var(--danger), #ff4757);
    color: white;
}

.btn-exit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.btn-report {
    background: rgba(255, 204, 0, 0.2);
    color: var(--warning);
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.btn-report:hover {
    background: rgba(255, 204, 0, 0.3);
    transform: translateY(-3px);
}

/* Footer */
.disclaimer-footer {
    background: rgba(20, 20, 30, 0.95);
    border-top: 1px solid rgba(252, 131, 24, 0.2);
    margin-top: 4rem;
    padding-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-logo i {
    color: var(--primary);
}

.footer-tagline {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.link-group a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.link-group a:hover {
    color: var(--primary);
}

.link-group a.active {
    color: var(--primary);
    font-weight: 600;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .disclaimer-container {
        padding: 1rem;
    }

    .disclaimer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .summary-card {
        padding: 1.5rem;
    }

    .summary-badges {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .warning-actions {
        flex-direction: column;
    }

    .acceptance-actions {
        flex-direction: column;
    }

    .acceptance-card {
        padding: 1.5rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .content-item {
        flex-direction: column;
        text-align: center;
    }

    .item-icon {
        margin: 0 auto;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .disclaimer-nav,
    .warning-actions,
    .acceptance-check,
    .acceptance-actions,
    .disclaimer-footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .disclaimer-container {
        padding: 0;
    }

    .disclaimer-section {
        break-inside: avoid;
        border: 1px solid #ccc;
    }
}