* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            background: linear-gradient(135deg, #0f0f23, #1a1a3e, #2d1b69);
            color: #ffffff;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(15, 15, 35, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 900;
            background: linear-gradient(45deg, #00d4ff, #9c40ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: #00d4ff;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #00d4ff, #9c40ff);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .burger span {
            width: 25px;
            height: 3px;
            background: #00d4ff;
            margin: 3px 0;
            transition: 0.3s;
        }
        
        main {
            padding-top: 120px;
            min-height: 100vh;
        }
        
        .page-hero {
            padding: 80px 0;
            text-align: center;
            background: linear-gradient(135deg, #2d1b69, #4c1d95);
        }
        
        .page-hero h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #00d4ff, #9c40ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .page-hero p {
            font-size: 1.3rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .press-kit-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #1a1a3e, #0f0f23);
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 60px;
            text-align: center;
            background: linear-gradient(45deg, #00d4ff, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .press-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .press-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(0, 212, 255, 0.3);
            transition: all 0.3s ease;
        }
        
        .press-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(156, 64, 255, 0.2);
        }
        
        .press-card h3 {
            color: #00d4ff;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .press-card p {
            margin-bottom: 20px;
            opacity: 0.9;
            line-height: 1.7;
        }
        
        .download-btn {
            display: inline-block;
            padding: 12px 25px;
            background: linear-gradient(45deg, #00d4ff, #9c40ff);
            color: white;
            text-decoration: none;
            font-weight: 700;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
        }
        
        .releases-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #2d1b69, #1a1a3e);
        }
        
        .release-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            margin-bottom: 30px;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(0, 212, 255, 0.3);
        }
        
        .release-header {
            padding: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .release-date {
            color: #00d4ff;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        
        .release-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .release-excerpt {
            opacity: 0.9;
            line-height: 1.7;
        }
        
        .release-content {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .release-item.expanded .release-content {
            max-height: 1000px;
            padding: 30px;
        }
        
        .read-more-btn {
            background: none;
            border: none;
            color: #9c40ff;
            cursor: pointer;
            font-weight: 600;
            padding: 15px 30px;
            width: 100%;
            text-align: left;
            transition: color 0.3s ease;
        }
        
        .read-more-btn:hover {
            color: #00d4ff;
        }
        
        .gallery-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #0f0f23, #2d1b69);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            height: 250px;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0, 212, 255, 0.8), rgba(156, 64, 255, 0.8));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .download-icon {
            font-size: 2rem;
            color: white;
        }
        
        .contact-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #1a1a3e, #0f0f23);
            text-align: center;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .contact-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(0, 212, 255, 0.3);
        }
        
        .contact-card h4 {
            color: #00d4ff;
            font-size: 1.3rem;
            margin-bottom: 20px;
        }
        
        .contact-info {
            opacity: 0.9;
            line-height: 1.8;
        }
        
        .contact-info a {
            color: #9c40ff;
            text-decoration: none;
            font-weight: 600;
        }
        
        .contact-info a:hover {
            color: #00d4ff;
        }
        
        footer {
            background: #0a0a1a;
            padding: 60px 0 30px;
            text-align: center;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h4 {
            color: #00d4ff;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: #00d4ff;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            color: rgba(255, 255, 255, 0.6);
        }
        
        @media (max-width: 768px) {
            .burger {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(15, 15, 35, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.3s ease;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .page-hero h1 {
                font-size: 3rem;
            }
        }

