/* DragonBout Legal Pages - Shared Styles */
/* File: legal-pages.css */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    min-height: 100vh;
    color: #fff;
    line-height: 1.6;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #0088ff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #0088ff;
    overflow: hidden;
}

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

.logo-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff4444;
    font-family: 'Georgia', serif;
}

.tagline {
    color: #00ff88;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    text-align: center;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav a:hover {
    color: #0088ff;
}

.back-btn {
    background: rgba(0, 136, 255, 0.2);
    color: #0088ff;
    border: 1px solid #0088ff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.back-btn:hover {
    background: #0088ff;
    color: #000;
}

/* Main Content */
.main-content {
    padding: 4rem 0;
}

.page-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(0, 136, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 136, 255, 0.1);
}

.page-title {
    text-align: center;
    margin-bottom: 2rem;
}

.page-title h1 {
    color: #0088ff;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.page-title .subtitle {
    color: #ccc;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.effective-date {
    background: rgba(0, 136, 255, 0.1);
    border: 1px solid rgba(0, 136, 255, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.effective-date strong {
    color: #0088ff;
}

.intro-text {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #0088ff;
}

.section {
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 136, 255, 0.2);
    transition: all 0.3s ease;
}

.section:hover {
    border-color: #0088ff;
    transform: translateY(-2px);
}

.section-title {
    color: #00ff88;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid rgba(0, 255, 136, 0.3);
    padding-bottom: 0.5rem;
}

.section-content {
    color: #ccc;
    line-height: 1.8;
    font-size: 1rem;
}

.section-content ul {
    margin: 1.2rem 0;
    padding-left: 1.8rem;
}

.section-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.section-content strong {
    color: #fff;
    font-weight: 600;
}

.highlight-box {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    padding: 1.2rem;
    margin: 1.2rem 0;
    border-left: 4px solid #00ff88;
}

.warning-box {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1.2rem;
    margin: 1.2rem 0;
    border-left: 4px solid #ff4444;
}

.important-box {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 1.2rem;
    margin: 1.2rem 0;
    border-left: 4px solid #ffd700;
}

.contact-section {
    background: rgba(0, 136, 255, 0.1);
    border: 2px solid rgba(0, 136, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.contact-section h3 {
    color: #0088ff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-section a {
    color: #0088ff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border: 1px solid #0088ff;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-section a:hover {
    background: #0088ff;
    color: #000;
    transform: translateY(-2px);
}

/* Cookie Policy Specific Styles */
.cookie-type {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid;
}

.cookie-type h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.essential-cookies {
    border-left-color: #00ff88;
}

.essential-cookies h4 {
    color: #00ff88;
}

.performance-cookies {
    border-left-color: #0088ff;
}

.performance-cookies h4 {
    color: #0088ff;
}

.no-tracking {
    border-left-color: #ff4444;
}

.no-tracking h4 {
    color: #ff4444;
}

.browser-links {
    background: rgba(0, 136, 255, 0.1);
    border: 1px solid rgba(0, 136, 255, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.browser-links h4 {
    color: #0088ff;
    margin-bottom: 1rem;
}

.browser-links ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.8rem;
    list-style: none;
    padding: 0;
}

.browser-links a {
    color: #0088ff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 136, 255, 0.3);
    border-radius: 6px;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
}

.browser-links a:hover {
    background: rgba(0, 136, 255, 0.2);
    border-color: #0088ff;
    transform: translateY(-2px);
}

/* Print Styles */
@media print {
    .header {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .page-container {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
    }
    
    .section {
        background: white;
        border: 1px solid #ddd;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .page-title h1 {
        font-size: 2.2rem;
    }

    .section {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .browser-links ul {
        grid-template-columns: 1fr;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: #0088ff;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00aaff;
}