/*
    Developed by: Igor Kalen  
    Contact: igor@igorkalen.dev  
    Creation Date: July 31, 2025  
    Last Updated: August 1, 2025
    Version: 2.0.0
    Status: IN PRODUCTION
    File: documents.css

    ----
    © 2025 Laius Entertainment. All rights reserved.

    This code is the exclusive property of Laius Entertainment.  
    Unauthorized use, copying, distribution, or modification  
    is strictly prohibited.

    For internal use only on systems, services, and domains  
    officially managed by Laius Entertainment.
*/
:root {
            --primary: #27742d;
            --primary-light: #2f8235;
            --primary-dark: #1e5d22;
            --text-primary: #1a1a1a;
            --text-secondary: #666666;
            --text-muted: #999999;
            --background: #ffffff;
            --background-subtle: #fafafa;
            --border: #e5e7eb;
            --border-light: #f3f4f6;
            --shadow: rgba(0, 0, 0, 0.04);
            --shadow-md: rgba(0, 0, 0, 0.08);
        }

          .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--background);
            border-top: 1px solid var(--border);
            padding: 1.5rem;
            z-index: 10002;
            box-shadow: 0 -4px 20px var(--shadow-md);
            transform: translateY(100%);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
            opacity: 1;
        }

        .cookie-banner.hide {
            transform: translateY(100%);
            opacity: 0;
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
        }

        .cookie-text {
            flex: 1;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .cookie-text strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        .cookie-text a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }

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

        .cookie-actions {
            display: flex;
            gap: 0.75rem;
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s ease;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }

        .cookie-btn-primary {
            background: var(--primary);
            color: white;
        }

        .cookie-btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

        .cookie-btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border);
        }

        .cookie-btn-secondary:hover {
            background: var(--background-subtle);
            border-color: var(--primary);
        }

        .preferences-button {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background: var(--background);
            border: 1px solid var(--border);
            border-radius: 8px;
            width: 50px;
            height: 50px;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px var(--shadow-md);
            transition: all 0.2s ease;
            z-index: 9999999999;
            color: var(--text-secondary);
        }

        .preferences-button:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        .preferences-button svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .preferences-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10003;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .preferences-modal.show {
            opacity: 1;
        }

        .preferences-content {
            background: var(--background);
            border-radius: 8px;
            padding: 2rem;
            max-width: 500px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .preferences-modal.show .preferences-content {
            transform: scale(1);
        }

        .preferences-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .preferences-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .preferences-close {
            background: none;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            padding: 4px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .preferences-close:hover {
            background: var(--background-subtle);
            color: var(--text-primary);
        }

        .preference-item {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border-light);
        }

        .preference-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .preference-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .preference-name {
            font-weight: 600;
            color: var(--text-primary);
        }

        .preference-toggle {
            position: relative;
            width: 44px;
            height: 24px;
            background: var(--border);
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .preference-toggle.active {
            background: var(--primary);
        }

        .preference-toggle::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 8px;
            transition: transform 0.2s ease;
        }

        .preference-toggle.active::before {
            transform: translateX(20px);
        }

        .preference-description {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .preferences-actions {
            display: flex;
            gap: 0.75rem;
            justify-content: flex-end;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-light);
        }


        .feedback-popup {
    position: fixed;
    bottom: 80px;
    left: 20px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    max-width: 320px;
    box-shadow: 0 8px 32px var(--shadow-md);
    z-index: 10001;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.feedback-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.feedback-popup.hide {
    transform: translateY(100px);
    opacity: 0;
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.feedback-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.feedback-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.feedback-close:hover {
    background: var(--background-subtle);
    color: var(--text-primary);
}

.feedback-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.feedback-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.feedback-btn-closeperm {
    background: transparent;
    margin-top: 5px;
    color: var(--text-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    background: transparent;
    border: 1px solid var(--border);
}

.feedback-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--background);
            font-size: 16px;
        }

        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

       .logo {
  display: flex;
  align-items: center;
  height: 60px;
  transition: opacity 0.2s ease;
}

.logo img {
  height: 100%;
  width: auto;
  display: block;
}

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 400;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .hero {
            padding: 140px 2rem 80px;
            text-align: center;
            background: var(--background);
        }

        .hero-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--background-subtle);
            border: 1px solid var(--border);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .hero-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .hero-description {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .documents-section {
            padding: 100px 2rem;
            background: var(--background-subtle);
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--text-primary);
        }

        .documents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .document-card {
            background: var(--background);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 2rem;
            transition: all 0.2s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .document-card:hover {
            border-color: var(--primary);
            box-shadow: 0 4px 20px var(--shadow-md);
            transform: translateY(-2px);
            text-decoration: none;
            color: inherit;
        }

        .document-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .document-icon {
            width: 48px;
            height: 48px;
            background: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .document-icon svg {
            width: 28px;
            height: 28px;
            fill: currentColor;
        }

        .document-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .document-description {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .document-meta {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .meta-item {
            background: var(--background-subtle);
            padding: 0.375rem 0.75rem;
            border-radius: 8px;
            font-size: 0.875rem;
            color: var(--text-secondary);
            border: 1px solid var(--border-light);
        }

        .document-link-indicator {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
            font-weight: 500;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .document-container {
  display: flex;
  gap: 25px;
  align-items: center;
}

        .document-link-indicator svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        .legal-notice {
            padding: 60px 2rem;
            background: var(--background);
        }

        .notice-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .notice-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .notice-text {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .contact-section {
            padding: 100px 2rem;
            background: var(--background-subtle);
            text-align: center;
        }

        .contact-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .contact-description {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .contact-link {
            padding: 0.875rem 1.75rem;
            background: var(--background);
            border: 1px solid var(--border);
            color: var(--text-primary);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .contact-link:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-1px);
        }

        .footer {
            background: var(--background);
            padding: 3rem 2rem 2rem;
            border-top: 1px solid var(--border);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }

        .footer-link:hover {
            color: var(--primary);
        }

        .footer-text {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.25rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .documents-grid {
                grid-template-columns: 1fr;
            }

            .contact-links {
                flex-direction: column;
                align-items: center;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-container {
                padding: 0 1rem;
            }

            .hero,
            .documents-section,
            .legal-notice,
            .contact-section {
                padding-left: 1rem;
                padding-right: 1rem;
            }
             .feedback-popup {
        bottom: 80px;
        left: 15px;
        right: 15px;
        max-width: none;
    }
     .cookie-content {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
            }

            .cookie-actions {
                flex-direction: column;
            }

            .cookie-btn {
                justify-content: center;
            }

            .preferences-content {
                margin: 1rem;
                width: calc(100% - 2rem);
            }

            .preferences-actions {
                flex-direction: column;
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }