* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #ffffff;
            background: linear-gradient(135deg, #0a0a1f 0%, #1a0d2e 25%, #2d1b69 50%, #0f0f23 75%, #000000 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 10, 31, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 255, 157, 0.2);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #00ff9d;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav-menu a:hover, .nav-menu a.active {
            color: #00ff9d;
            background: rgba(0, 255, 157, 0.1);
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: #00ff9d;
            margin: 3px 0;
            transition: 0.3s;
        }

        main {
            margin-top: 80px;
            padding: 100px 0;
        }

        .page-hero {
            text-align: center;
            margin-bottom: 100px;
            background: linear-gradient(45deg, rgba(45, 27, 105, 0.4), rgba(10, 10, 31, 0.8));
            padding: 100px 0;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('../img/19.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            z-index: -1;
        }

        .page-hero h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #00ff9d, #6c5ce7);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section {
            margin-bottom: 100px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 40px;
            color: #00ff9d;
            text-align: center;
        }

        .press-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .press-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(0, 255, 157, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .press-card:hover {
            transform: translateY(-5px);
            border-color: #00ff9d;
            box-shadow: 0 20px 40px rgba(0, 255, 157, 0.2);
        }

        .press-card h3 {
            color: #00ff9d;
            margin-bottom: 20px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .press-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .download-btn {
            background: linear-gradient(45deg, #6c5ce7, #00ff9d);
            color: #ffffff;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            width: 100%;
            text-align: center;
        }

        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(108, 92, 231, 0.4);
        }

        .press-releases {
            background: rgba(255, 255, 255, 0.03);
            padding: 60px 40px;
            border-radius: 25px;
            border: 1px solid rgba(0, 255, 157, 0.1);
            backdrop-filter: blur(10px);
        }

        .release-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .release-item:last-child {
            border-bottom: none;
        }

        .release-content {
            flex: 1;
        }

        .release-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 5px;
        }

        .release-date {
            color: #00ff9d;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .release-excerpt {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
        }

        .release-actions {
            display: flex;
            gap: 15px;
        }

        .action-btn {
            background: rgba(0, 255, 157, 0.1);
            color: #00ff9d;
            padding: 8px 16px;
            border: 1px solid rgba(0, 255, 157, 0.3);
            border-radius: 15px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .action-btn:hover {
            background: #00ff9d;
            color: #000;
        }

        .media-gallery {
            background: linear-gradient(45deg, rgba(26, 13, 46, 0.8), rgba(15, 15, 35, 0.9));
            padding: 60px 40px;
            border-radius: 25px;
            margin-bottom: 80px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 20px;
            color: #ffffff;
        }

        .bio-section {
            background: rgba(255, 255, 255, 0.03);
            padding: 60px 40px;
            border-radius: 25px;
            margin-bottom: 80px;
        }

        .bio-content {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 60px;
            align-items: start;
        }

        .bio-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .bio-image img {
            width: 100%;
            height: auto;
        }

        .bio-text {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .bio-text h4 {
            color: #00ff9d;
            margin: 30px 0 15px 0;
            font-size: 1.3rem;
        }

        .contact-info {
            background: linear-gradient(135deg, rgba(45, 27, 105, 0.6), rgba(26, 13, 46, 0.8));
            padding: 60px 40px;
            border-radius: 25px;
            text-align: center;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(0, 255, 157, 0.1);
        }

        .contact-card h4 {
            color: #00ff9d;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .contact-card p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 5px;
        }

        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }

        .stat-card {
            background: linear-gradient(45deg, rgba(108, 92, 231, 0.2), rgba(0, 255, 157, 0.1));
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(0, 255, 157, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #00ff9d;
            display: block;
            margin-bottom: 10px;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
        }

        footer {
            background: linear-gradient(135deg, rgba(10, 10, 31, 0.95), rgba(0, 0, 0, 0.9));
            padding: 60px 0 30px;
            border-top: 1px solid rgba(0, 255, 157, 0.2);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: #00ff9d;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .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: #00ff9d;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 10, 31, 0.95);
                flex-direction: column;
                padding: 20px;
                gap: 10px;
            }

            .nav-menu.active {
                display: flex;
            }

            .burger {
                display: flex;
            }

            .page-hero h1 {
                font-size: 2.5rem;
            }

            .press-grid {
                grid-template-columns: 1fr;
            }

            .bio-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .release-item {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

