@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Orbitron:wght@400;700&display=swap');

        :root {
            --color-primary: #5A2D82;
            --color-secondary: #9B5DE5;
            --color-accent: #F15BB5;
            --color-text: #E5D5EF;
            --color-bg: #1A0D2B;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }

        h1, h2, h3 {
            font-family: 'Orbitron', sans-serif;
            color: var(--color-accent);
            text-shadow: 0 0 10px var(--color-accent);
            margin-bottom: 20px;
        }
        
        h1 {
            font-size: 2.5em;
            text-align: center;
        }
        
        h2 {
            font-size: 1.8em;
            margin-top: 40px;
        }

        p {
            margin-bottom: 15px;
        }
        
        ul {
            margin-bottom: 15px;
            padding-left: 25px;
        }
        
        ul li {
            margin-bottom: 8px;
        }

        header {
            background-color: rgba(26, 13, 43, 0.9);
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 100;
            backdrop-filter: blur(5px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8em;
            color: var(--color-accent);
            text-decoration: none;
            text-transform: uppercase;
            text-shadow: 0 0 8px var(--color-accent);
        }

        .nav-menu {
            display: flex;
            gap: 25px;
        }

        .nav-menu a {
            color: var(--color-text);
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--color-accent);
            transition: width 0.3s ease, left 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
            left: 0;
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger-bar {
            width: 30px;
            height: 3px;
            background-color: var(--color-accent);
            transition: all 0.3s ease;
        }

        main {
            padding-top: 120px;
            background-image: url('../img/12.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }

        main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(26, 13, 43, 0.7);
            z-index: 1;
        }
        
        .content {
            position: relative;
            z-index: 2;
            background-color: rgba(26, 13, 43, 0.85);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            margin: 20px 0;
        }

        .disclaimer {
            padding: 20px;
            text-align: center;
            font-size: 0.9em;
            color: #aaa;
            background: #11081a;
            border-top: 1px solid #332244;
        }
        
        .disclaimer a {
            color: var(--color-secondary);
            text-decoration: none;
        }

        footer {
            background-color: #0d0613;
            padding: 40px 20px;
            text-align: center;
            border-top: 5px solid var(--color-accent);
        }

        .footer-content {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5em;
            color: var(--color-accent);
            text-transform: uppercase;
            text-shadow: 0 0 5px var(--color-accent);
            margin-bottom: 15px;
        }

        .footer-section {
            flex: 1;
            min-width: 200px;
            text-align: left;
        }
        
        .footer-section h4 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2em;
            margin-bottom: 15px;
            color: var(--color-accent);
            text-transform: uppercase;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: var(--color-text);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section ul li a:hover {
            color: var(--color-accent);
        }

        address {
            font-style: normal;
        }

        .footer-bottom {
            margin-top: 40px;
            font-size: 0.9em;
            color: #aaa;
            border-top: 1px solid #332244;
            padding-top: 20px;
        }

        .footer-bottom a {
            color: var(--color-accent);
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                right: 0;
                background-color: rgba(26, 13, 43, 0.95);
                width: 100%;
                text-align: center;
                padding: 20px 0;
                transition: transform 0.3s ease-in-out;
            }

            .nav-menu.active {
                display: flex;
            }
            
            .burger-menu {
                display: flex;
                position: relative;
                z-index: 101;
            }
        }

