/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00ff41;
    --secondary-color: #8a2be2;
    --accent-color: #ff1493;
    --purple-acid: #8a2be2;
    --pink-acid: #ff1493;
    --green-acid: #00ff41;
    --blue-acid: #00bfff;
    --cyan-acid: #00ffff;
    --background-dark: #0a0a0a;
    --background-darker: #040404;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

body {
    font-family: 'Orbitron', monospace;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Static Background with particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(57, 255, 20, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #0a1e2e 100%);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('images/particles-green.png'),
        url('images/particles-cubes.png');
    background-repeat: repeat;
    background-size: 300px 200px, 150px 100px;
    background-position: 0 0, 100px 50px;
    z-index: -1;
    opacity: 0.05;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.accent {
    color: var(--green-acid);
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.8);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: 
        linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)),
        url('attached_assets/bg_0bae4770_1753804516614.jpg') center/cover fixed;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--cyan-acid);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan-acid);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    background: 
        url('attached_assets/bg_af285ff4_1753804516614.jpg') center/cover,
        radial-gradient(ellipse at center top, rgba(57, 255, 20, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 10, 46, 0.8) 50%, rgba(10, 33, 62, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green-acid);
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.9);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-features {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.feature-tag {
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid var(--purple-acid);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--purple-acid);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--green-acid);
    color: #000000;
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.4), 0 0 20px rgba(0, 255, 65, 0.6);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 65, 0.5), 0 0 25px rgba(0, 255, 65, 0.8);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease 0.4s both;
}

/* Fake Cheat Interface */
.cheat-interface {
    width: 420px;
    height: 380px;
    background: rgba(10, 10, 30, 0.95);
    border-radius: 15px;
    border: 1px solid var(--cyan-acid);
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.interface-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 255, 255, 0.05);
}

.interface-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cyan-acid);
    font-weight: bold;
    font-size: 1.1rem;
}

.demon-icon {
    width: 24px;
    height: 24px;
    filter: hue-rotate(120deg) brightness(1.2);
}

.interface-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--pink-acid);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #666;
}

.status-dot.active {
    background: var(--pink-acid);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.interface-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn.active {
    color: var(--blue-acid);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--blue-acid);
}

.tab-content {
    display: none;
    padding: 20px;
    height: 260px;
    overflow-y: auto;
}

.tab-content.active {
    display: block;
}

.setting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.setting-row:last-child {
    border-bottom: none;
}

.setting-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.toggle-switch {
    width: 40px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch.active {
    background: var(--green-acid);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
}

.toggle-slider {
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}

.toggle-switch.active .toggle-slider {
    transform: translateX(20px);
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 120px;
}

.slider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
}

.slider-fill {
    height: 100%;
    background: var(--purple-acid);
    border-radius: 2px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.slider-thumb {
    width: 12px;
    height: 12px;
    background: var(--purple-acid);
    border-radius: 50%;
    position: absolute;
    top: -4px;
    transform: translateX(-50%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease;
}

.slider-value {
    color: var(--purple-acid);
    font-size: 0.8rem;
    min-width: 30px;
    text-align: right;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: 
        url('attached_assets/common-bg_087ab055_1753804516614.jpg') center/cover,
        rgba(255, 255, 255, 0.02);
    position: relative;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: 
        url('attached_assets/common-bg_087ab055_1753804516614.jpg') center/cover,
        rgba(147, 51, 234, 0.05);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(57, 255, 20, 0.08) 0%, 
        rgba(255, 0, 255, 0.08) 50%, 
        rgba(0, 255, 255, 0.08) 100%);
    z-index: -1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--cyan-acid);
    box-shadow: 
        0 25px 50px rgba(0, 255, 255, 0.2),
        0 0 30px rgba(0, 255, 255, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-info h3 {
    color: var(--cyan-acid);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: bold;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.4;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Разные цвета для заголовков секций */
#features .section-title {
    color: var(--purple-acid);
    text-shadow: 0 0 25px rgba(138, 43, 226, 0.8);
}

#gallery .section-title {
    color: var(--cyan-acid);
    text-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
}

#download .section-title {
    color: var(--pink-acid);
    text-shadow: 0 0 25px rgba(255, 20, 147, 0.8);
}

#faq .section-title {
    color: var(--blue-acid);
    text-shadow: 0 0 25px rgba(0, 191, 255, 0.8);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:nth-child(1):hover {
    border-color: var(--green-acid);
    box-shadow: 0 20px 40px rgba(0, 255, 65, 0.15);
}

.feature-card:nth-child(2):hover {
    border-color: var(--purple-acid);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.15);
}

.feature-card:nth-child(3):hover {
    border-color: var(--pink-acid);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.15);
}

.feature-card:nth-child(4):hover {
    border-color: var(--cyan-acid);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.15);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card:nth-child(1) h3 {
    color: var(--green-acid);
}

.feature-card:nth-child(2) h3 {
    color: var(--purple-acid);
}

.feature-card:nth-child(3) h3 {
    color: var(--pink-acid);
}

.feature-card:nth-child(4) h3 {
    color: var(--cyan-acid);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Download Section */
.download-section {
    padding: 100px 0;
    background: 
        url('attached_assets/common-bg_087ab055_1753804516614.jpg') center/cover,
        linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    position: relative;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(57, 255, 20, 0.05) 0%, 
        rgba(255, 0, 255, 0.05) 50%, 
        rgba(0, 255, 255, 0.05) 100%);
    z-index: -1;
}

.download-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.download-info {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--purple-acid);
    border-radius: 12px;
    padding: 40px;
    backdrop-filter: blur(15px);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
}

.download-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item:nth-child(1) {
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid var(--green-acid);
}

.feature-item:nth-child(2) {
    background: rgba(138, 43, 226, 0.05);
    border: 1px solid var(--purple-acid);
}

.feature-item:nth-child(3) {
    background: rgba(255, 20, 147, 0.05);
    border: 1px solid var(--pink-acid);
}

.feature-item:nth-child(4) {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid var(--cyan-acid);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.5rem;
}

.download-action {
    text-align: center;
}

.btn-download {
    font-size: 1.2rem;
    padding: 18px 40px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--pink-acid);
    border-radius: 8px;
    box-shadow: 
        0 15px 35px rgba(255, 20, 147, 0.4),
        0 0 20px rgba(255, 20, 147, 0.6);
}

.btn-download:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 45px rgba(255, 20, 147, 0.5),
        0 0 30px rgba(255, 20, 147, 0.8);
}

.download-icon {
    font-size: 1.3rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.download-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Removed old download cards styles - replaced with new download section */

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: 
        url('attached_assets/common-bg_087ab055_1753804516614.jpg') center/cover,
        rgba(255, 255, 255, 0.02);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #00ff88;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 255, 136, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #ffffff;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #00ff88;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: 
        url('attached_assets/common-bg_087ab055_1753804516614.jpg') center/cover,
        linear-gradient(135deg, rgba(22, 33, 62, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00ff88;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-link {
    color: #00ff88;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ffffff;
}

/* Footer */
.footer {
    background: 
        url('attached_assets/common-bg_087ab055_1753804516614.jpg') center/cover,
        #0a0a0a;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #00ff88;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00ff88;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cheat-interface {
        width: 100%;
        max-width: 350px;
        height: 320px;
    }
    
    .tab-content {
        height: 200px;
    }
    
    .download-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item {
        min-height: 200px;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .contact-card {
        padding: 30px 20px;
    }
    
    .card-header,
    .card-content {
        padding: 20px;
    }
}
