* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #374151;
            background: #F9FAFB;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #7A5AF8;
            text-decoration: none;
        }

        .nav {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav a {
            text-decoration: none;
            color: #374151;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav a:hover, .nav a.active {
            color: #7A5AF8;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: #374151;
            transition: 0.3s;
        }

        main {
            margin-top: 80px;
            padding: 4rem 0;
        }

        .page-hero {
            text-align: center;
            padding: 4rem 0;
            background: linear-gradient(135deg, #7A5AF8 0%, #FF6AD5 100%);
            color: white;
            margin-bottom: 4rem;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../img/24.jpg') center/cover;
            opacity: 0.2;
        }

        .page-hero-content {
            position: relative;
            z-index: 2;
        }

        .page-hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ffffff, #f0f9ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .press-kit-section {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            margin: 3rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .download-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .download-card {
            background: linear-gradient(135deg, rgba(122, 90, 248, 0.05), rgba(255, 106, 213, 0.05));
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(122, 90, 248, 0.1);
            transition: all 0.3s ease;
        }

        .download-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(122, 90, 248, 0.15);
        }

        .download-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .download-card h3 {
            color: #374151;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .download-card p {
            color: #6B7280;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .download-button {
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .download-button:hover {
            transform: scale(1.05);
        }

        .press-releases {
            margin: 3rem 0;
        }

        .release-item {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-left: 4px solid #7A5AF8;
        }

        .release-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .release-title {
            color: #374151;
            font-size: 1.3rem;
            font-weight: 700;
        }

        .release-date {
            color: #7A5AF8;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .release-excerpt {
            color: #6B7280;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .release-link {
            color: #7A5AF8;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .release-link:hover {
            color: #FF6AD5;
        }

        .media-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .media-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .media-item:hover {
            transform: scale(1.05);
        }

        .media-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .media-info {
            padding: 1.5rem;
            text-align: center;
        }

        .media-info h4 {
            color: #374151;
            margin-bottom: 0.5rem;
        }

        .media-info p {
            color: #6B7280;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .contact-press {
            background: linear-gradient(135deg, rgba(122, 90, 248, 0.1), rgba(255, 106, 213, 0.1));
            border-radius: 20px;
            padding: 3rem;
            margin: 3rem 0;
            text-align: center;
        }

        .contact-press h3 {
            color: #374151;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .contact-press p {
            color: #6B7280;
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .press-contacts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .press-contact {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
        }

        .press-contact h4 {
            color: #7A5AF8;
            margin-bottom: 1rem;
        }

        .press-contact p {
            color: #374151;
            margin-bottom: 0.5rem;
        }

        .press-contact a {
            color: #FF6AD5;
            text-decoration: none;
            font-weight: 600;
        }

        footer {
            background: #1F2937;
            color: white;
            padding: 3rem 0 1rem;
            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: #FF6AD5;
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: #D1D5DB;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            color: #9CA3AF;
        }

        @media (max-width: 768px) {
            .nav {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 2rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }

            .nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .burger {
                display: flex;
            }

            .page-hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .release-header {
                flex-direction: column;
                align-items: flex-start;
            }
        }

