* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #000000;
            color: #e0e0e0;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 0, 51, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #00d9ff;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(0, 217, 255, 0.7);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #ff006e;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ff006e;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: #e0e0e0;
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        .about {
            padding: 100px 0;
            background-color: #0a0a0a;
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #ff006e, #00d9ff);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 40px;
            color: #00d9ff;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #ff006e;
        }

        .about-text {
            max-width: 800px;
            margin: 0 auto;
        }

        .about-text h3 {
            color: #00d9ff;
            margin: 30px 0 15px;
            font-size: 24px;
        }

        .about-text ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }

        .about-text li {
            margin-bottom: 10px;
        }

        footer {
            background-color: #000000;
            padding: 50px 20px 20px;
            border-top: 1px solid rgba(0, 217, 255, 0.3);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            color: #00d9ff;
            margin-bottom: 20px;
            font-size: 20px;
            text-transform: uppercase;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: #ff006e;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 217, 255, 0.1);
            color: #888;
            font-size: 14px;
        }

        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: rgba(26, 0, 51, 0.9);
            color: #e0e0e0;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1001;
            transform: translateY(150%);
            transition: transform 0.5s ease;
            border: 1px solid rgba(0, 217, 255, 0.3);
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-content {
            flex: 1;
            margin-right: 20px;
        }

        .cookie-content p {
            margin-bottom: 10px;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        .cookie-buttons button {
            padding: 8px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .cookie-accept {
            background-color: #ff006e;
            color: #ffffff;
        }

        .cookie-accept:hover {
            background-color: #ff3385;
        }

        .cookie-decline {
            background-color: transparent;
            color: #e0e0e0;
            border: 1px solid #e0e0e0;
        }

        .cookie-decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background-color: rgba(26, 0, 51, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s ease;
                z-index: 999;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 20px 0;
            }

            .burger {
                display: block;
                z-index: 1000;
            }

            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger.active div:nth-child(2) {
                opacity: 0;
            }

            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }

            .cookie-content {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }

