:root {
    --primary-color: #2a2a72;
    --accent-color: #009ffd;
    --background-color: #ffffff;
    --text-color: #333333;
    --error-color: #e74c3c;
    --success-color: #2ecc71;
    --footer-bg: #232342;
    --footer-text: #f0f0f0;
    --transition-speed: 0.3s;
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    position: relative;
    padding: 20px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    overflow: hidden;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}
/* Add left margin to logo */
.logo {
    margin-left: 30px;
}

/* Make sure it looks good on mobile too */
@media (max-width: 768px) {
    .logo {
        margin-left: 15px; /* Reduced margin on smaller screens */
    }
}

.logo h1 {
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: -1px;
}

.logo span {
    color: rgba(255, 255, 255, 0.85);
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity var(--transition-speed);
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-links a.active {
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: white;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: white;
    transition: all var(--transition-speed);
}

.social-icons a {
    color: white;
    margin-left: 15px;
    font-size: 1.2rem;
    transition: opacity var(--transition-speed);
}

.social-icons a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 60px;
    text-align: center;
}

.hero-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
}

/* Input Styles */
.input-container {
    max-width: 600px;
    margin: 0 auto;
}

.floating-label-group {
    position: relative;
    margin-bottom: 20px;
}

.floating-label-group input {
    width: 100%;
    height: 60px;
    padding: 20px 16px 0;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    transition: border-color var(--transition-speed);
    font-size: 16px;
}

.floating-label-group label {
    position: absolute;
    top: 20px;
    left: 16px;
    color: #999;
    pointer-events: none;
    transition: all var(--transition-speed);
}

.floating-label-group input:focus,
.floating-label-group input:not(:placeholder-shown) {
    border-color: var(--accent-color);
    outline: none;
}

.floating-label-group input:focus + label,
.floating-label-group input:not(:placeholder-shown) + label {
    top: 8px;
    left: 16px;
    font-size: 12px;
    color: var(--accent-color);
}

.error-message {
    color: var(--error-color);
    font-size: 14px;
    margin-top: 5px;
    text-align: left;
    visibility: hidden;
}

.error-message.show {
    visibility: visible;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius);
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: white;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.step h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Footer Styles */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 30px;
    position: relative;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    padding-right: 20px;
}

.footer-column h3 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-column a:hover {
    color: var(--accent-color);
}

.mini-contact-form input,
.mini-contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: var(--border-radius);
}

.mini-contact-form textarea {
    height: 80px;
    resize: none;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    color: var(--footer-text);
    font-size: 1.3rem;
    transition: color var(--transition-speed);
}

.footer-social-icons a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--footer-text);
}

.scroll-to-top {
    position: absolute;
    right: 30px;
    bottom: 30px;
}

#scroll-top-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed), visibility var(--transition-speed), transform var(--transition-speed);
}

#scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

#scroll-top-btn:hover {
    transform: translateY(-3px);
}

/* Utility Classes */
.hidden {
    display: none;
} 

/* SEO Content Section */
.seo-content {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.content-columns {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.content-column {
    flex: 1;
}

.content-column h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.content-column h3 {
    color: var(--primary-color);
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.content-column p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.content-column ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content-column li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.feature-list li {
    padding-left: 5px;
}

.feature-list li strong {
    color: var(--primary-color);
}

.testimonial {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-author {
    text-align: right;
    color: #666;
    font-size: 0.9em;
    margin-bottom: 0 !important;
}

.seo-callout {
    background: linear-gradient(135deg, rgba(42, 42, 114, 0.05), rgba(0, 159, 253, 0.05));
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.seo-callout h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.seo-callout p {
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .content-column h2 {
        font-size: 1.6rem;
    }
    
    .content-column h3 {
        font-size: 1.3rem;
    }
    
    .seo-callout {
        padding: 20px;
    }
} 

/* Mobile Menu Improvements */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: relative;
        z-index: 100;
        margin-right: 15px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 9999;
        padding: 50px 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    /* Menu Overlay */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        z-index: 9998;
    }
    
    .menu-overlay.active {
        display: block;
    }

    /* Hide main content when menu is open */
    body.menu-open main,
    body.menu-open .site-footer {
        display: none;
    }

    /* Ensure menu is fully opaque */
    .nav-links.open {
        right: 0;
        background: var(--primary-color);
    }
    
    .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 10px 0;
        font-size: 1.2rem;
        color: white;
        font-weight: 500;
    }
    
    .nav-links a.active::after {
        display: none;
    }
    
    .nav-links a.active {
        color: var(--accent-color);
    }
    
    .header-container .social-icons {
        display: none;
    }
    
    /* Hamburger animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Add mobile social icons */
    .nav-links .mobile-social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
        background: transparent;
    }
    
    .nav-links .mobile-social-icons a {
        color: white;
        font-size: 1.5rem;
        padding: 0;
        opacity: 0.9;
    }
    
    .nav-links .mobile-social-icons a:hover {
        color: var(--accent-color);
        opacity: 1;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

.header-container .social-icons {
    padding-right: 20px;
}

@media (max-width: 768px) {
    .header-container .social-icons {
        padding-right: 20px;
    }
}

.hero-player-container {
    width: 100%;
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 0 1rem;
    transition: all 0.3s ease;
}

.hero-player-container.hidden {
    display: none;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.hero-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-wrapper .loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-player-container {
        margin: 1.5rem auto 0;
    }
}

@media (max-width: 480px) {
    .hero-player-container {
        margin: 1rem auto 0;
        padding: 0 0.5rem;
    }
}

/* Legal Pages Styling */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.legal-content {
    padding: 40px 0 80px;
    background: #f8f9fa;
}

.legal-navigation {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    position: sticky;
    top: 20px;
    z-index: 10;
}

.legal-navigation ul {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-navigation a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.legal-navigation a:hover {
    background: var(--accent-color);
    color: white;
}

.legal-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.legal-content-block {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    background: #f8f9fa;
    border-left: 4px solid var(--accent-color);
}

.legal-content-block h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.legal-content-block p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content-block ul, 
.legal-content-block ol {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-content-block li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content-block strong {
    color: var(--primary-color);
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .legal-section {
        padding: 20px;
    }

    .legal-navigation {
        padding: 15px;
        margin-bottom: 30px;
    }

    .legal-navigation ul {
        gap: 10px;
    }

    .legal-navigation a {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .legal-content-block {
        padding: 15px;
    }
}

/* Add smooth scroll behavior for legal page navigation */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Active state for legal navigation */
.legal-navigation a.active {
    background: var(--accent-color);
    color: white;
}

.contact-info-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-details p {
    color: #666;
    margin-bottom: 15px;
}

.telegram-button {
    display: inline-flex;
    align-items: center;
    background-color: #0088cc;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.telegram-button i {
    margin-right: 10px;
    font-size: 1.2em;
}

.telegram-button:hover {
    background-color: #0077b5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 136, 204, 0.2);
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.contact-social a {
    color: var(--primary-color);
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.contact-social a:hover {
    color: var(--accent-color);
}

.contact-info-box {
    background: linear-gradient(135deg, rgba(42, 42, 114, 0.05), rgba(0, 159, 253, 0.05));
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.contact-info-box h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.contact-info-box ul {
    list-style: none;
    padding: 0;
}

.contact-info-box li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #555;
}

.contact-info-box li i {
    color: var(--accent-color);
    margin-right: 10px;
}

@media (max-width: 768px) {
    .contact-info-item {
        padding: 20px;
    }
    
    .telegram-button {
        width: 100%;
        justify-content: center;
    }
    
    .contact-social {
        justify-content: center;
    }
}

.contact-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.contact-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-lead {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.telegram-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    padding: 60px 30px;
    text-align: center;
    color: white;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.telegram-content {
    max-width: 600px;
    margin: 0 auto;
}

.telegram-icon-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
}

.telegram-hero h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.telegram-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: left;
}

.telegram-features li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.telegram-features li i {
    margin-right: 10px;
    color: #4CAF50;
}

.telegram-hero-button {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #0088cc;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 20px 0;
}

.telegram-hero-button i {
    margin-right: 12px;
    font-size: 1.4em;
}

.telegram-hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.telegram-note {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 15px;
}

.support-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
}

.support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.support-feature {
    text-align: center;
    padding: 20px;
}

.support-feature i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.support-feature h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.support-feature p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-intro h2 {
        font-size: 2rem;
    }
    
    .telegram-hero {
        padding: 40px 20px;
    }
    
    .telegram-features {
        grid-template-columns: 1fr;
    }
    
    .support-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Legal Pages Styles */
.legal-main {
    padding-bottom: 60px;
    min-height: calc(100vh - 200px);
    margin-top: 0;
    background-color: #f9f9f9;
}

/* Hero Section */
.legal-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 100px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0,136,204,0.1) 0%, transparent 60%);
    animation: pulse 15s infinite linear;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(5%, 5%);
    }
    100% {
        transform: translate(0, 0);
    }
}

.legal-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon fill="rgba(249,249,249,0.03)" points="0,100 100,0 100,100"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.legal-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
    animation: fadeInDown 1s ease-out;
}

.legal-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Legal Navigation */
.legal-nav {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 70px;
    z-index: 90;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.legal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-nav li {
    margin: 0;
}

.legal-nav a {
    display: block;
    padding: 18px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    text-align: center;
}

.legal-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0088cc;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.legal-nav a:hover,
.legal-nav a.active {
    color: #0088cc;
    background-color: rgba(0,136,204,0.05);
}

.legal-nav a:hover::after,
.legal-nav a.active::after {
    transform: scaleX(1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.section-header h1,
.section-header h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #0088cc, #00bcd4);
    border-radius: 2px;
}

.last-updated {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 15px;
    display: inline-block;
}

/* Legal Sections */
.legal-section {
    padding: 80px 0;
    scroll-margin-top: 140px;
    transition: all 0.3s ease;
    position: relative;
}

.legal-section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
}

/* Info Cards */
.info-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #f0f0f0;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.info-card.primary {
    background: linear-gradient(135deg, #0088cc 0%, #005580 100%);
    color: #fff;
    border-top: none;
}

.info-card.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><circle cx="0" cy="0" r="50" fill="rgba(255,255,255,0.05)"/></svg>');
    background-position: top left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
    pointer-events: none;
}

.card-header {
    margin-bottom: 25px;
}

.card-header i {
    font-size: 3rem;
    color: #0088cc;
    margin-bottom: 20px;
    text-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.info-card:hover .card-header i {
    transform: scale(1.1);
}

.primary .card-header i {
    color: #fff;
}

.card-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.card-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #0088cc;
    border-radius: 2px;
}

.primary .card-header h2::after {
    background: #fff;
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 60px;
    animation: fadeIn 1s ease-out;
    animation-fill-mode: both;
}

.policy-section:nth-child(2) {
    animation-delay: 0.2s;
}

.policy-section:nth-child(3) {
    animation-delay: 0.4s;
}

.policy-section:nth-child(4) {
    animation-delay: 0.6s;
}

.policy-section h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.policy-section h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: #0088cc;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Data Types Grid */
.data-types,
.usage-grid,
.security-grid,
.rights-grid,
.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.data-type,
.usage-item,
.security-item,
.right-item,
.terms-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #0088cc;
    z-index: 1;
}

.data-type::before,
.usage-item::before,
.security-item::before,
.right-item::before,
.terms-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,136,204,0.03) 0%, transparent 100%);
    z-index: -1;
}

.data-type:hover,
.usage-item:hover,
.security-item:hover,
.right-item:hover,
.terms-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.data-type i,
.usage-item i,
.security-item i,
.right-item i,
.terms-item i {
    font-size: 2.2rem;
    color: #0088cc;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.data-type:hover i,
.usage-item:hover i,
.security-item:hover i,
.right-item:hover i,
.terms-item:hover i {
    transform: scale(1.1);
    color: #005580;
}

.data-type h4,
.usage-item h4,
.security-item h4,
.right-item h4,
.terms-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.data-type h4::after,
.usage-item h4::after,
.security-item h4::after,
.right-item h4::after,
.terms-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #0088cc;
}

.data-type p,
.usage-item p,
.security-item p,
.right-item p,
.terms-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.data-type ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.data-type li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #666;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.data-type li:hover {
    color: #333;
    transform: translateX(5px);
}

.data-type li i {
    font-size: 1rem;
    margin-right: 10px;
    margin-bottom: 0;
    color: #4CAF50;
}

/* Usage List */
.usage-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.usage-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding: 10px 15px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.usage-list li:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.usage-list i {
    color: #e74c3c;
    margin-right: 15px;
    font-size: 1rem;
}

/* Cookie Types */
.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.cookie-type {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #0088cc;
}

.cookie-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,136,204,0.03) 0%, transparent 100%);
    z-index: 0;
}

.cookie-type:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.cookie-type i {
    font-size: 2.5rem;
    color: #0088cc;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.cookie-type:hover i {
    transform: scale(1.1);
    color: #005580;
}

.cookie-type h4 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.cookie-type p {
    color: #666;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* DMCA Steps */
.dmca-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.step {
    position: relative;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 30px;
    height: 30px;
    background: #0088cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,136,204,0.3);
}

.step h4 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.3rem;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Limitations List */
.limitations-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.limitation-item {
    display: flex;
    align-items: flex-start;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 3px solid #0088cc;
}

.limitation-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background: #fff;
}

.limitation-item i {
    font-size: 1.5rem;
    color: #0088cc;
    margin-right: 20px;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.limitation-item:hover i {
    transform: scale(1.1);
    color: #005580;
}

.limitation-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.limitation-content p {
    color: #666;
    line-height: 1.6;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(to right, #1a1a1a, #2a2a2a);
    color: #fff;
    padding: 60px 0 30px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #0088cc, #00bcd4);
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #0088cc;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 3px 0;
}

.footer-column a:hover {
    color: #0088cc;
    transform: translateX(5px);
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    color: #ccc;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    color: #0088cc;
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .data-types,
    .usage-grid,
    .security-grid,
    .rights-grid,
    .terms-grid,
    .cookie-types,
    .dmca-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: #1a1a1a;
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 99;
        box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .desktop-social {
        display: none;
    }

    .mobile-social {
        display: block;
        margin-top: 30px;
    }

    .mobile-social .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .legal-nav {
        top: 60px;
    }

    .legal-nav ul {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 15px;
        justify-content: flex-start;
    }

    .legal-nav li {
        flex: 0 0 auto;
    }

    .legal-nav a {
        padding: 15px 20px;
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .section-header h1,
    .section-header h2 {
        font-size: 2.2rem;
    }

    .info-card {
        padding: 30px 20px;
    }

    .legal-hero h1 {
        font-size: 2.5rem;
    }

    .legal-hero p {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .data-types,
    .usage-grid,
    .security-grid,
    .rights-grid,
    .terms-grid,
    .cookie-types,
    .dmca-steps {
        grid-template-columns: 1fr;
    }

    .footer-columns {
        flex-direction: column;
    }

    .footer-column {
        margin-bottom: 30px;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .section-header h1,
    .section-header h2 {
        font-size: 1.8rem;
    }

    .card-header i {
        font-size: 2.5rem;
    }

    .card-header h2 {
        font-size: 1.6rem;
    }

    .legal-nav a {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .legal-hero h1 {
        font-size: 2rem;
    }

    .legal-hero p {
        font-size: 1rem;
    }

    .data-type,
    .usage-item,
    .security-item,
    .right-item,
    .terms-item,
    .cookie-type {
        padding: 20px;
    }

    .info-card {
        padding: 25px 15px;
    }

    .policy-section h3 {
        font-size: 1.5rem;
    }

    .limitation-item {
        flex-direction: column;
        text-align: center;
    }

    .limitation-item i {
        margin: 0 0 15px 0;
    }
} 