* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #000000;
            --secondary-dark: #1a1a1a;
            --neon-blue: #00ffff;
            --electric-purple: #8a2be2;
            --white: #ffffff;
            --gradient-main: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #8a2be2 100%);
            --gradient-accent: linear-gradient(45deg, #00ffff 0%, #8a2be2 100%);
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--white);
            background: var(--gradient-main);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--neon-blue);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neon-blue);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: var(--neon-blue);
            transition: 0.3s;
        }

        main {
            margin-top: 80px;
            padding: 4rem 0;
        }

        .page-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .press-section {
            background: rgba(26, 26, 26, 0.9);
            border: 2px solid var(--electric-purple);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 3rem;
        }

        .press-section h2 {
            color: var(--neon-blue);
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .press-releases {
            display: grid;
            gap: 2rem;
        }

        .press-item {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid var(--neon-blue);
            border-radius: 15px;
            padding: 2rem;
            transition: transform 0.3s ease;
        }

        .press-item:hover {
            transform: translateY(-3px);
        }

        .press-date {
            color: var(--electric-purple);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .press-item h3 {
            color: var(--neon-blue);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .press-item p {
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .download-btn {
            background: var(--gradient-accent);
            color: var(--white);
            padding: 8px 16px;
            border: none;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .download-btn:hover {
            transform: scale(1.05);
        }

        .media-kit {
            background: rgba(0, 255, 255, 0.1);
            border: 2px solid var(--neon-blue);
            border-radius: 20px;
            padding: 3rem;
            margin: 3rem 0;
            text-align: center;
        }

        .media-kit h2 {
            color: var(--neon-blue);
            margin-bottom: 2rem;
        }

        .media-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .media-item {
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid var(--electric-purple);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
        }

        .media-item img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 1rem;
        }

        .media-item h4 {
            color: var(--neon-blue);
            margin-bottom: 1rem;
        }

        .photo-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            aspect-ratio: 1;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .contact-press {
            background: rgba(138, 43, 226, 0.1);
            border: 2px solid var(--electric-purple);
            border-radius: 20px;
            padding: 3rem;
            margin-top: 3rem;
        }

        .contact-press h2 {
            color: var(--electric-purple);
            margin-bottom: 2rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .contact-card {
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid var(--neon-blue);
            border-radius: 15px;
            padding: 2rem;
        }

        .contact-card h3 {
            color: var(--neon-blue);
            margin-bottom: 1rem;
        }

        footer {
            background: var(--primary-dark);
            padding: 3rem 0 1rem;
            text-align: center;
            border-top: 2px solid var(--electric-purple);
            margin-top: 4rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--neon-blue);
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: var(--white);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--neon-blue);
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 2rem;
                transition: left 0.3s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .burger {
                display: flex;
            }

            .page-header h1 {
                font-size: 2.5rem;
            }

            .press-section,
            .media-kit,
            .contact-press {
                padding: 2rem;
            }

            .photo-gallery {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
        }

