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

:root {
    /* Color Scheme */
    --primary-green: #67a613;
    --dark-green: #01410c;
    --light-green: #9ecd2d;

    /* Dark Theme Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-accent: var(--light-green);

    /* Gradients */
    --gradient-primary: linear-gradient(
        135deg,
        var(--primary-green) 0%,
        var(--dark-green) 100%
    );
    --gradient-secondary: linear-gradient(
        135deg,
        var(--light-green) 0%,
        var(--primary-green) 100%
    );
    --gradient-dark: linear-gradient(
        135deg,
        #0a0a0a 0%,
        #1a1a1a 50%,
        #2a2a2a 100%
    );

    /* Shadows */
    --shadow-neon: 0 0 20px rgba(103, 166, 19, 0.3);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(158, 205, 45, 0.4);

    /* Fonts */
    --font-primary: "Orbitron", monospace;
    --font-secondary: "Rajdhani", sans-serif;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

body {
    font-family: var(--font-secondary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(103, 166, 19, 0.2);
}

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

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: var(--transition);
}

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

.nav-menu a:hover {
    color: var(--light-green);
}

.phone-number {
    display: flex;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border: 2px solid #fbff00;
    border-radius: 25px;
    background: rgba(251, 255, 0, 0.1);
}

.phone-link:hover {
    color: #fbff00;
    background: rgba(251, 255, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(251, 255, 0, 0.3);
}

.phone-link i {
    font-size: 1rem;
    color: #fbff00;
}

/* Phone CTA Button */
.phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: var(--transition);
    box-shadow: var(--shadow-neon);
    border: none;
    cursor: pointer;
}

.phone-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: white;
}

.phone-cta span {
    font-size: 1rem;
}

/* Phone buttons for events and pricing */
.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    justify-content: center;
}

.event-button.phone-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    box-shadow: var(--shadow-neon);
}

.event-button.phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: white;
}

.pricing-button.phone-btn {
    background: var(--gradient-secondary);
    color: var(--bg-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: var(--shadow-neon);
}

.pricing-button.phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: var(--gradient-primary);
    color: white;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light-green);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px; /* Увеличенный отступ для фиксированного хедера */
    transition: padding-top 0.3s ease; /* Плавная анимация при изменении отступа */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #0a0a0a 0%,
        #1a1a1a 30%,
        rgba(103, 166, 19, 0.05) 70%,
        #2a2a2a 100%
    );
    background-image:
        radial-gradient(
            circle at 20% 80%,
            rgba(103, 166, 19, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(158, 205, 45, 0.04) 0%,
            transparent 60%
        ),
        linear-gradient(
            45deg,
            transparent 0%,
            rgba(103, 166, 19, 0.02) 50%,
            transparent 100%
        );
    z-index: -1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(
            circle at 20% 20%,
            rgba(103, 166, 19, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(158, 205, 45, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 60%,
            rgba(1, 65, 12, 0.1) 0%,
            transparent 50%
        );
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.glitch {
    position: relative;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glitch-subtle 6s ease-in-out infinite;
}

.hero-subtitle {
    display: block;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-neon);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.vr-showcase {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: var(--shadow-dark);
    transition: transform 0.4s ease;
    cursor: pointer;
}

.vr-showcase:before,
.vr-showcase:after {
    pointer-events: none;
}

.vr-showcase:hover {
    transform: translateY(-10px) scale(1.02);
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(103, 166, 19, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    mask:
        radial-gradient(
            ellipse at center,
            black 70%,
            rgba(0, 0, 0, 0.8) 85%,
            transparent 100%
        ),
        linear-gradient(
            to bottom,
            transparent 0%,
            black 10%,
            black 90%,
            rgba(0, 0, 0, 0.7) 100%
        );
    mask-composite: intersect;
    -webkit-mask:
        radial-gradient(
            ellipse at center,
            black 70%,
            rgba(0, 0, 0, 0.8) 85%,
            transparent 100%
        ),
        linear-gradient(
            to bottom,
            transparent 0%,
            black 10%,
            black 90%,
            rgba(0, 0, 0, 0.7) 100%
        );
    -webkit-mask-composite: source-in;
}

.vr-showcase:hover .hero-img {
    filter: brightness(0.9) contrast(1.2);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(103, 166, 19, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Световые блики на изображении */
.hero-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(
            circle at 30% 30%,
            rgba(158, 205, 45, 0.2) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 70% 70%,
            rgba(103, 166, 19, 0.15) 0%,
            transparent 40%
        );
    border-radius: 20px;
    opacity: 0.6;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.vr-showcase:hover .hero-img::before {
    opacity: 0.8;
}

.vr-showcase::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 25px;
    right: -25px;
    bottom: -25px;
    background:
        radial-gradient(
            ellipse at 40% 40%,
            rgba(158, 205, 45, 0.3) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse at 80% 20%,
            rgba(103, 166, 19, 0.25) 0%,
            transparent 50%
        ),
        linear-gradient(
            135deg,
            rgba(103, 166, 19, 0.2) 0%,
            rgba(1, 65, 12, 0.3) 50%,
            rgba(158, 205, 45, 0.15) 100%
        );
    border-radius: 35px;
    filter: blur(30px);
    z-index: 1;
    opacity: 0.8;
    animation: glow-pulse 4s ease-in-out infinite alternate;
    transition: all 0.4s ease;
}

.vr-showcase:hover::before {
    opacity: 1;
    transform: scale(1.1);
    filter: blur(35px);
}

.vr-showcase::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background:
        radial-gradient(
            ellipse at 60% 30%,
            rgba(255, 255, 255, 0.08) 0%,
            transparent 40%
        ),
        radial-gradient(
            ellipse at center,
            rgba(158, 205, 45, 0.18) 0%,
            rgba(103, 166, 19, 0.12) 40%,
            transparent 70%
        );
    border-radius: 30px;
    filter: blur(20px);
    z-index: 1;
    animation: glow-pulse 6s ease-in-out infinite alternate-reverse;
    transition: all 0.4s ease;
}

.vr-showcase:hover::after {
    opacity: 0.9;
    transform: scale(1.1);
    filter: blur(25px);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    transition: all 0.4s ease;
}

.vr-showcase:hover .floating-elements {
    transform: scale(1.05);
}

.floating-icon {
    position: absolute;
    background: rgba(103, 166, 19, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(103, 166, 19, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-green);
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(103, 166, 19, 0.3);
}

.vr-showcase:hover .floating-icon {
    background: rgba(103, 166, 19, 0.4);
    border-color: rgba(103, 166, 19, 0.6);
    box-shadow:
        0 8px 30px rgba(103, 166, 19, 0.5),
        0 0 20px rgba(158, 205, 45, 0.3);
    transform: scale(1.1);
}

.floating-icon:nth-child(1) {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    top: 60%;
    right: 10%;
    animation-delay: 4s;
}

/* WeAreVR Style Hero Section */
.hero.wearevr-style {
    background: linear-gradient(
        135deg,
        #0a0a0a 0%,
        #1a1a1a 25%,
        #2a2a2a 50%,
        #1a1a1a 75%,
        #0a0a0a 100%
    );
    overflow: visible;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(251, 255, 0, 0.03) 2px,
            rgba(251, 255, 0, 0.03) 4px
        ),
        radial-gradient(
            circle at 20% 20%,
            rgba(186, 23, 218, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(251, 255, 0, 0.08) 0%,
            transparent 60%
        );
    z-index: 1;
    animation: pattern-pulse 15s ease-in-out infinite;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 120px);
}

/* Left Side - Character */
.hero-left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.vr-character {
    position: relative;
    width: 280px;
    height: 350px;
}

.character-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(
        ellipse at center,
        rgba(186, 23, 218, 0.4) 0%,
        rgba(251, 255, 0, 0.2) 40%,
        transparent 70%
    );
    border-radius: 50%;
    animation: character-glow 4s ease-in-out infinite;
    z-index: -1;
}

.character-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(1.1) contrast(1.2) saturate(1.3);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(251, 255, 0, 0.3);
}

.games-count-badge {
    background: linear-gradient(135deg, #fbff00, #ba17da);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    transform: rotate(-8deg);
    box-shadow: 0 10px 30px rgba(251, 255, 0, 0.4);
    animation: badge-bounce 6s ease-in-out infinite;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge-number {
    font-size: 1.2rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
}

.exclusive-badge {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #fbff00;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    transform: rotate(3deg);
    backdrop-filter: blur(10px);
}

.exclusive-text {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fbff00;
    text-align: center;
    line-height: 1.1;
}

/* Center - Main Content */
.hero-center {
    text-align: center;
    position: relative;
    margin-top: 2rem;
}

.hero-main-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.title-primary {
    display: block;
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 0.2rem;
}

.title-highlight {
    display: block;
    background: linear-gradient(45deg, #fbff00, #ba17da);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4rem;
    margin-bottom: 0.2rem;
    text-shadow: 0 0 30px rgba(251, 255, 0, 0.3);
    animation: title-pulse 3s ease-in-out infinite;
}

.title-secondary {
    display: block;
    color: #ffffff;
    font-size: 2.2rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(43, 43, 43, 0.3);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(43, 43, 43, 0.5);
    transform: translateX(10px);
}

.feature-bullet {
    width: 12px;
    height: 12px;
    background: #fbff00;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.3rem;
    box-shadow: 0 0 10px rgba(251, 255, 0, 0.5);
}

.feature-item span {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.main-cta-btn {
    background: linear-gradient(45deg, #fbff00, #ba17da);
    color: #000;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(251, 255, 0, 0.4);
}

.main-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(251, 255, 0, 0.6);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.main-cta-btn:hover .btn-glow {
    left: 100%;
}

.discount-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.discount-text {
    color: #ffffff;
    font-size: 0.9rem;
}

.discount-value {
    color: #fbff00;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(251, 255, 0, 0.5);
}

/* Right Side - Headset */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vr-headset {
    position: relative;
    width: 300px;
    height: 300px;
}

.headset-glow {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: radial-gradient(
        ellipse at center,
        rgba(251, 255, 0, 0.3) 0%,
        rgba(186, 23, 218, 0.2) 50%,
        transparent 70%
    );
    border-radius: 50%;
    animation: headset-glow 5s ease-in-out infinite;
    z-index: -1;
}

.headset-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(1.1) contrast(1.2);
    animation: headset-float 8s ease-in-out infinite;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    background: rgba(251, 255, 0, 0.2);
    border: 2px solid rgba(251, 255, 0, 0.4);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbff00;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.element-3 {
    top: 70%;
    right: 5%;
    animation-delay: 4s;
}

/* Animations */
@keyframes pattern-pulse {
    0%,
    100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes character-glow {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes badge-bounce {
    0%,
    100% {
        transform: rotate(-8deg) translateY(0px);
    }
    25% {
        transform: rotate(-6deg) translateY(-5px);
    }
    75% {
        transform: rotate(-10deg) translateY(-3px);
    }
}

@keyframes title-pulse {
    0%,
    100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

@keyframes headset-glow {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2) rotate(2deg);
        opacity: 1;
    }
}

@keyframes headset-float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* Responsive WeAreVR Style Hero */
@media (max-width: 1199px) {
    .hero-content {
        grid-template-columns: 0.8fr 2fr 0.8fr;
        gap: 1.5rem;
    }

    .vr-character {
        width: 220px;
        height: 280px;
    }

    .hero-main-title {
        font-size: 3rem;
    }

    .title-highlight {
        font-size: 3.5rem;
    }

    .vr-headset {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 959px) {
    .hero.wearevr-style {
        padding-top: 100px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        min-height: calc(100vh - 100px);
    }

    .hero-left {
        order: 3;
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .hero-center {
        order: 1;
        margin-top: 1rem;
    }

    .hero-right {
        order: 2;
    }

    .vr-character {
        width: 180px;
        height: 220px;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .title-highlight {
        font-size: 3rem;
    }

    .title-primary,
    .title-secondary {
        font-size: 2rem;
    }

    .vr-headset {
        width: 200px;
        height: 200px;
    }

    .hero-features {
        text-align: center;
        margin-top: 1.5rem;
    }
}

@media (max-width: 639px) {
    .hero.wearevr-style {
        padding-top: 140px;
    }

    .hero-content {
        min-height: calc(100vh - 140px);
    }

    .hero-left {
        gap: 1rem;
    }

    .vr-character {
        width: 150px;
        height: 180px;
    }

    .hero-main-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .title-highlight {
        font-size: 2.2rem;
    }

    .title-primary,
    .title-secondary {
        font-size: 1.4rem;
    }

    .hero-features {
        gap: 0.8rem;
    }

    .feature-item {
        padding: 0.6rem;
    }

    .feature-item span {
        font-size: 0.8rem;
    }

    .main-cta-btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }

    .vr-headset {
        width: 150px;
        height: 150px;
    }

    .games-count-badge {
        padding: 0.8rem 1rem;
    }

    .badge-number {
        font-size: 1rem;
    }

    .badge-text {
        font-size: 0.7rem;
    }

    .exclusive-badge {
        padding: 0.6rem 1rem;
    }

    .exclusive-text {
        font-size: 0.6rem;
    }
}

@media (max-width: 479px) {
    .hero.wearevr-style {
        padding-top: 140px;
    }

    .hero-content {
        padding: 0 15px;
        gap: 1.5rem;
        min-height: calc(100vh - 140px);
    }

    .hero-center {
        margin-top: 0.5rem;
    }

    .hero-main-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        line-height: 1.05;
    }

    .title-highlight {
        font-size: 2rem;
    }

    .title-primary,
    .title-secondary {
        font-size: 1.2rem;
    }

    .main-cta-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }

    .float-element {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.title-text {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.feature-card {
    background: var(--bg-tertiary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transition: var(--transition);
    border: 1px solid rgba(103, 166, 19, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.feature-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.split-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-side {
    position: absolute;
    top: 0;
    height: 100%;
    overflow: hidden;
}

.real-side {
    left: 0;
    width: 50%;
    border-right: 2px solid var(--primary-green);
}

.vr-side {
    right: 0;
    width: 50%;
    filter: hue-rotate(120deg) saturate(1.5);
}

.image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: ew-resize;
}

.handle-circle {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-neon);
    transition: var(--transition);
}

.handle-circle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.feature-content {
    padding: 2rem;
}

.feature-content h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--light-green);
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Events Section */
.events {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.event-card {
    background: var(--bg-tertiary);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(103, 166, 19, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.event-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.event-card:hover::before {
    opacity: 0.1;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.event-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-neon);
}

.event-card h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--light-green);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.event-description {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.event-main-info {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.event-bonus {
    background: linear-gradient(
        45deg,
        rgba(255, 215, 0, 0.1),
        rgba(255, 193, 7, 0.1)
    );
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.event-bonus:hover {
    background: linear-gradient(
        45deg,
        rgba(255, 215, 0, 0.15),
        rgba(255, 193, 7, 0.15)
    );
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateX(5px);
}

.event-bonus i {
    color: #ffc107;
    font-size: 0.9rem;
    min-width: 16px;
}

.event-bonus span {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.event-discount {
    background: linear-gradient(
        45deg,
        rgba(40, 167, 69, 0.1),
        rgba(103, 166, 19, 0.1)
    );
    border: 1px solid var(--light-green);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.event-discount:hover {
    background: linear-gradient(
        45deg,
        rgba(40, 167, 69, 0.15),
        rgba(103, 166, 19, 0.15)
    );
    border-color: rgba(103, 166, 19, 0.8);
    transform: translateX(5px);
}

.event-discount i {
    color: var(--light-green);
    font-size: 0.9rem;
    min-width: 16px;
}

.event-discount span {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.event-additional {
    background: rgba(103, 166, 19, 0.05);
    border: 1px solid rgba(103, 166, 19, 0.1);
    border-radius: 12px;
    padding: 0.8rem;
    margin-top: 0.8rem;
    transition: var(--transition);
}

.event-additional:hover {
    background: rgba(103, 166, 19, 0.08);
    border-color: rgba(103, 166, 19, 0.2);
}

.additional-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    padding: 0.2rem 0;
    border-radius: 6px;
}

.additional-item:hover {
    background: rgba(103, 166, 19, 0.05);
    padding-left: 0.5rem;
}

.additional-item:last-child {
    margin-bottom: 0;
}

.additional-item i {
    color: var(--text-secondary);
    font-size: 0.8rem;
    min-width: 14px;
    margin-top: 0.1rem;
}

.additional-item span {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

.event-price {
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(103, 166, 19, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(103, 166, 19, 0.1);
}

.event-price .price {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-green);
    display: block;
    margin-bottom: 0.5rem;
}

.event-price .duration {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.event-button {
    background: var(--gradient-secondary);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    color: var(--dark-green);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 200px;
    margin-top: auto;
}

.event-button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-neon);
}

/* AI Intensive Banner */
.ai-intensive-banner {
    margin: 3rem auto 2rem;
    max-width: 1000px;
    background: linear-gradient(
        135deg,
        rgba(103, 166, 19, 0.03) 0%,
        rgba(103, 166, 19, 0.08) 50%,
        rgba(103, 166, 19, 0.03) 100%
    );
    border: 1px solid rgba(103, 166, 19, 0.15);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.ai-intensive-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--light-green) 50%,
        transparent 100%
    );
}

.ai-intensive-content {
    display: flex;
    align-items: center;
    padding: 2rem 2.5rem;
    gap: 3rem;
}

.ai-intensive-left {
    flex: 1;
}

.ai-intensive-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(103, 166, 19, 0.1);
    color: var(--light-green);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    border: 1px solid rgba(103, 166, 19, 0.2);
}

.ai-intensive-badge i {
    font-size: 0.9rem;
}

.ai-intensive-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.ai-intensive-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.ai-intensive-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ai-intensive-features span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.ai-intensive-features i {
    color: var(--light-green);
    font-size: 0.8rem;
}

.ai-intensive-right {
    flex-shrink: 0;
    text-align: center;
}

.ai-intensive-price-block {
    background: var(--bg-tertiary);
    border: 1px solid rgba(103, 166, 19, 0.1);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    min-width: 180px;
}

.ai-intensive-price {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--light-green);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.ai-intensive-price-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.ai-intensive-button {
    background: var(--gradient-primary);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.ai-intensive-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(103, 166, 19, 0.3);
}

/* Responsive for AI Intensive */
@media (max-width: 768px) {
    .ai-intensive-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 1.5rem 1.2rem;
    }

    .ai-intensive-title {
        font-size: 1.5rem;
    }

    .ai-intensive-features {
        justify-content: center;
        gap: 1rem;
    }

    .ai-intensive-features span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .ai-intensive-banner {
        margin: 2rem 1rem 1.5rem;
    }

    .ai-intensive-content {
        padding: 1.2rem 1rem;
    }

    .ai-intensive-features {
        flex-direction: column;
        gap: 0.8rem;
    }

    .ai-intensive-price-block {
        padding: 1.2rem 1.5rem;
        min-width: auto;
    }

    .ai-intensive-price {
        font-size: 1.8rem;
    }
}

/* Responsive styles for event cards */
@media (max-width: 768px) {
    .event-card {
        min-height: auto;
        padding: 1.5rem;
    }

    .event-bonus,
    .event-discount,
    .event-additional {
        padding: 0.6rem 0.8rem;
        margin-bottom: 0.6rem;
    }

    .event-bonus span,
    .event-discount span {
        font-size: 0.85rem;
    }

    .additional-item span {
        font-size: 0.8rem;
    }

    .event-main-info {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .event-card {
        padding: 1.2rem;
    }

    .event-bonus,
    .event-discount,
    .event-additional {
        padding: 0.5rem 0.6rem;
    }

    .event-bonus span,
    .event-discount span {
        font-size: 0.8rem;
    }

    .additional-item {
        flex-direction: column;
        gap: 0.2rem;
        margin-bottom: 0.4rem;
    }

    .additional-item i {
        margin-top: 0;
    }
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.pricing-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pricing-section-title {
    text-align: center;
    font-family: var(--font-primary);
    color: var(--light-green);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pricing-section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .pricing-section-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: var(--bg-tertiary);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(103, 166, 19, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.pricing-card.featured {
    border: 2px solid var(--primary-green);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(103, 166, 19, 0.2);
}

.pricing-header h3 {
    font-family: var(--font-primary);
    color: var(--light-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.amount {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.currency {
    font-size: 1.5rem;
    color: var(--light-green);
    margin-left: 5px;
}

.duration {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-weekend {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    background: rgba(103, 166, 19, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(103, 166, 19, 0.2);
}

.weekend-price {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.weekend-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.pricing-features .fa-check {
    color: var(--light-green);
}

.pricing-features .fa-times {
    color: #666;
}

.pricing-button {
    width: 100%;
    background: var(--gradient-primary);
    border: none;
    padding: 1rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

/* Games Section */
.games {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.games-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-tertiary);
    border-radius: 15px;
    border: 1px solid rgba(103, 166, 19, 0.1);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    color: var(--light-green);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-group select {
    background: var(--bg-secondary);
    border: 1px solid rgba(103, 166, 19, 0.3);
    border-radius: 8px;
    padding: 0.5rem;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 10px rgba(103, 166, 19, 0.3);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    background: var(--bg-tertiary);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(103, 166, 19, 0.1);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.game-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-card:hover .game-overlay {
    opacity: 0.8;
}

.play-icon {
    color: white;
    font-size: 3rem;
    transform: scale(0);
    transition: var(--transition);
}

.game-card:hover .play-icon {
    transform: scale(1);
}

.game-content {
    padding: 1.5rem;
}

.game-title {
    font-family: var(--font-primary);
    color: var(--light-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.game-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.game-tag {
    background: rgba(103, 166, 19, 0.2);
    color: var(--light-green);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid rgba(103, 166, 19, 0.3);
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: 15px;
    border: 1px solid rgba(103, 166, 19, 0.1);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-neon);
}

.contact-item i {
    color: var(--light-green);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: var(--light-green);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-form {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(103, 166, 19, 0.1);
}

.contact-form h3 {
    font-family: var(--font-primary);
    color: var(--light-green);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: var(--bg-secondary);
    border: 1px solid rgba(103, 166, 19, 0.3);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 10px rgba(103, 166, 19, 0.3);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

/* Footer */
.footer {
    background: var(--bg-primary);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(103, 166, 19, 0.2);
}

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

.footer-logo h3 {
    font-family: var(--font-primary);
    color: var(--light-green);
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--text-secondary);
}

.footer-links h4 {
    color: var(--light-green);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--light-green);
}

.footer-social h4 {
    color: var(--light-green);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-neon);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(103, 166, 19, 0.1);
    color: var(--text-secondary);
}

/* Animations */
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes glitch-subtle {
    0%,
    95%,
    100% {
        transform: translateX(0);
    }
    96% {
        transform: translateX(-1px);
    }
    97% {
        transform: translateX(1px);
    }
    98% {
        transform: translateX(-1px);
    }
    99% {
        transform: translateX(1px);
    }
}

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

@keyframes glow-pulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .phone-number {
        display: none;
    }

    .phone-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .phone-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .navbar {
        padding: 0.8rem 0; /* Уменьшенный padding для мобильных */
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding-top: 100px; /* Увеличенный отступ для мобильных устройств */
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    /* Адаптивные эффекты для hero изображения */
    .hero-img {
        height: 300px;
        mask: none;
        -webkit-mask: none;
    }

    .vr-showcase::before {
        top: 15px;
        left: 15px;
        right: -15px;
        bottom: -15px;
        filter: blur(20px);
    }

    .vr-showcase::after {
        top: 10px;
        left: 10px;
        right: -10px;
        bottom: -10px;
        filter: blur(15px);
    }

    .vr-showcase:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .floating-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .games-filters {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.6rem 0; /* Еще меньший padding для очень маленьких экранов */
    }

    .hero {
        padding-top: 120px; /* Еще больший отступ для маленьких экранов */
    }

    .hero-title {
        font-size: 2rem;
    }

    .title-text {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    /* Упрощенные эффекты для маленьких экранов */
    .hero-img {
        height: 250px;
    }

    .vr-showcase::before,
    .vr-showcase::after {
        display: none;
    }

    .hero-img::before {
        opacity: 0.3;
    }

    .vr-showcase:hover {
        transform: translateY(-3px);
    }

    .vr-showcase:hover .floating-elements {
        transform: scale(1.02);
    }

    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .floating-icon:hover {
        transform: scale(1.05);
    }

    .pricing-card.featured {
        transform: none;
    }

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

/* Placeholder Images */
.hero-img,
.game-image img,
.feature-image-container img {
    background: linear-gradient(
        45deg,
        #2a2a2a 25%,
        #1a1a1a 25%,
        #1a1a1a 50%,
        #2a2a2a 50%,
        #2a2a2a 75%,
        #1a1a1a 75%
    );
    background-size: 20px 20px;
}

.hero-img[src=""],
.game-image img[src=""],
.feature-image-container img[src=""] {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="300" viewBox="0 0 400 300"><rect width="400" height="300" fill="%23222"/><text x="50%" y="50%" text-anchor="middle" dy=".3em" fill="%2367a613" font-family="Arial" font-size="18">VR IMAGE</text></svg>');
}

/* Light Theme Variables (for theme switcher) */
.light-theme {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-accent: var(--dark-green);

    /* Light theme shadows */
    --shadow-neon: 0 0 20px rgba(1, 65, 12, 0.3);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(103, 166, 19, 0.4);
}

.light-theme .navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(1, 65, 12, 0.2);
}

.light-theme .nav-menu a {
    color: var(--text-primary);
}

.light-theme .hero-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.light-theme .hero-particles {
    background-image:
        radial-gradient(
            circle at 20% 20%,
            rgba(1, 65, 12, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(103, 166, 19, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 60%,
            rgba(158, 205, 45, 0.1) 0%,
            transparent 50%
        );
}

.light-theme .floating-icon {
    background: rgba(1, 65, 12, 0.1);
    border: 1px solid rgba(1, 65, 12, 0.2);
    color: var(--dark-green);
}

.light-theme .vr-showcase::before {
    background:
        radial-gradient(
            ellipse at 40% 40%,
            rgba(1, 65, 12, 0.2) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse at 80% 20%,
            rgba(103, 166, 19, 0.15) 0%,
            transparent 50%
        ),
        linear-gradient(
            135deg,
            rgba(1, 65, 12, 0.15) 0%,
            rgba(103, 166, 19, 0.2) 50%,
            rgba(158, 205, 45, 0.1) 100%
        );
}

.light-theme .vr-showcase::after {
    background:
        radial-gradient(
            ellipse at 60% 30%,
            rgba(255, 255, 255, 0.15) 0%,
            transparent 40%
        ),
        radial-gradient(
            ellipse at center,
            rgba(1, 65, 12, 0.1) 0%,
            rgba(103, 166, 19, 0.08) 40%,
            transparent 70%
        );
}

.light-theme .hero-img::before {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 30%),
        radial-gradient(
            circle at 30% 30%,
            rgba(1, 65, 12, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 70% 70%,
            rgba(103, 166, 19, 0.1) 0%,
            transparent 40%
        );
}

.light-theme .feature-card,
.light-theme .event-card,
.light-theme .pricing-card,
.light-theme .game-card,
.light-theme .contact-item,
.light-theme .contact-form,
.light-theme .games-filters {
    border-color: rgba(1, 65, 12, 0.2);
}

.light-theme .event-card::before {
    background: var(--gradient-secondary);
}

.light-theme .filter-group select,
.light-theme .contact-form input,
.light-theme .contact-form select,
.light-theme .contact-form textarea {
    background: var(--bg-primary);
    border-color: rgba(1, 65, 12, 0.3);
    color: var(--text-primary);
}

.light-theme .game-tag {
    background: rgba(1, 65, 12, 0.1);
    color: var(--dark-green);
    border-color: rgba(1, 65, 12, 0.3);
}

.light-theme .footer {
    border-top-color: rgba(1, 65, 12, 0.2);
}

/* Additional animations and effects */
.feature-card .split-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--primary-green),
        transparent
    );
    transform: translateX(-50%);
    z-index: 5;
}

.pricing-card.featured::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 22px;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* Selection styles */
::selection {
    background: var(--primary-green);
    color: white;
}

::-moz-selection {
    background: var(--primary-green);
    color: white;
}

/* Focus styles for accessibility */
button:focus,
select:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Notification styles */
.notification {
    font-family: var(--font-secondary);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.notification-close:hover {
    opacity: 1;
}

/* Glitch effect enhancement */
.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    opacity: 0;
}

.glitch::before {
    left: 1px;
    text-shadow: -1px 0 var(--primary-green);
    animation: glitch-anim1 8s infinite linear alternate-reverse;
}

.glitch::after {
    left: -1px;
    text-shadow: 1px 0 var(--light-green);
    animation: glitch-anim2 10s infinite linear alternate-reverse;
}

@keyframes glitch-anim1 {
    0%,
    90%,
    100% {
        clip: rect(0, 0, 0, 0);
        opacity: 0;
    }
    91% {
        clip: rect(42px, 9999px, 44px, 0);
        opacity: 0.7;
    }
    92% {
        clip: rect(12px, 9999px, 59px, 0);
        opacity: 0.4;
    }
    93% {
        clip: rect(63px, 9999px, 71px, 0);
        opacity: 0.6;
    }
    94% {
        clip: rect(18px, 9999px, 39px, 0);
        opacity: 0.3;
    }
    95% {
        clip: rect(54px, 9999px, 28px, 0);
        opacity: 0.5;
    }
}

@keyframes glitch-anim2 {
    0%,
    88%,
    100% {
        clip: rect(0, 0, 0, 0);
        opacity: 0;
    }
    89% {
        clip: rect(25px, 9999px, 30px, 0);
        opacity: 0.5;
    }
    90% {
        clip: rect(50px, 9999px, 55px, 0);
        opacity: 0.3;
    }
    91% {
        clip: rect(75px, 9999px, 80px, 0);
        opacity: 0.6;
    }
    92% {
        clip: rect(15px, 9999px, 20px, 0);
        opacity: 0.4;
    }
    93% {
        clip: rect(35px, 9999px, 40px, 0);
        opacity: 0.2;
    }
}

/* VR Celebration Banner */
.vr-celebration-banner {
    padding: 4rem 0;
    background: linear-gradient(
        135deg,
        #0a0a0a 0%,
        #1a1a1a 25%,
        #2a2a2a 50%,
        #1a1a1a 75%,
        #0a0a0a 100%
    );
    position: relative;
    overflow: hidden;
}

.vr-celebration-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(
            circle at 20% 20%,
            rgba(103, 166, 19, 0.05) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(158, 205, 45, 0.03) 0%,
            transparent 50%
        );
    z-index: 1;
}

.vr-celebration-content {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.vr-celebration-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.vr-celebration-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
}

.vr-celebration-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow-neon);
    position: relative;
    z-index: 2;
}

.vr-celebration-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.vr-celebration-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

@keyframes cardScatter1 {
    0% {
        opacity: 0;
        transform: translateY(30px) rotate(0deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: rotate(-8deg) translateY(-10px) scale(1);
    }
}

@keyframes cardScatter2 {
    0% {
        opacity: 0;
        transform: translateY(30px) rotate(0deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: rotate(5deg) translateY(8px) scale(1);
    }
}

@keyframes cardScatter3 {
    0% {
        opacity: 0;
        transform: translateY(30px) rotate(0deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: rotate(-3deg) translateY(-5px) scale(1);
    }
}

@keyframes cardScatter4 {
    0% {
        opacity: 0;
        transform: translateY(30px) rotate(0deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: rotate(7deg) translateY(12px) scale(1);
    }
}

.vr-celebration-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
}

.vr-celebration-card:nth-child(1) {
    transform: rotate(-8deg) translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    animation: cardScatter1 0.8s ease-out forwards;
    animation-delay: 0.1s;
}

.vr-celebration-card:nth-child(2) {
    transform: rotate(5deg) translateY(8px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    animation: cardScatter2 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

.vr-celebration-card:nth-child(3) {
    transform: rotate(-3deg) translateY(-5px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.38);
    animation: cardScatter3 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.vr-celebration-card:nth-child(4) {
    transform: rotate(7deg) translateY(12px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.42);
    animation: cardScatter4 0.8s ease-out forwards;
    animation-delay: 0.7s;
}

.vr-celebration-card:hover {
    transform: translateY(-8px) rotate(0deg) scale(1.02);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.vr-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.vr-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.vr-celebration-card:hover .vr-card-image img {
    transform: scale(1.05);
}

.vr-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        transparent 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    padding: 1.5rem 1rem 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.vr-card-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .vr-celebration-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        gap: 2rem;
    }

    .vr-celebration-title {
        font-size: 2.2rem;
    }

    @keyframes cardScatterTablet1 {
        0% {
            opacity: 0;
            transform: translateY(20px) rotate(0deg) scale(0.9);
        }
        100% {
            opacity: 1;
            transform: rotate(-6deg) translateY(-8px) scale(1);
        }
    }

    @keyframes cardScatterTablet2 {
        0% {
            opacity: 0;
            transform: translateY(20px) rotate(0deg) scale(0.9);
        }
        100% {
            opacity: 1;
            transform: rotate(4deg) translateY(6px) scale(1);
        }
    }

    @keyframes cardScatterTablet3 {
        0% {
            opacity: 0;
            transform: translateY(20px) rotate(0deg) scale(0.9);
        }
        100% {
            opacity: 1;
            transform: rotate(-4deg) translateY(-4px) scale(1);
        }
    }

    @keyframes cardScatterTablet4 {
        0% {
            opacity: 0;
            transform: translateY(20px) rotate(0deg) scale(0.9);
        }
        100% {
            opacity: 1;
            transform: rotate(6deg) translateY(8px) scale(1);
        }
    }

    .vr-celebration-card:nth-child(1) {
        transform: rotate(-6deg) translateY(-8px);
        animation: cardScatterTablet1 0.7s ease-out forwards;
        animation-delay: 0.1s;
    }

    .vr-celebration-card:nth-child(2) {
        transform: rotate(4deg) translateY(6px);
        animation: cardScatterTablet2 0.7s ease-out forwards;
        animation-delay: 0.25s;
    }

    .vr-celebration-card:nth-child(3) {
        transform: rotate(-4deg) translateY(-4px);
        animation: cardScatterTablet3 0.7s ease-out forwards;
        animation-delay: 0.4s;
    }

    .vr-celebration-card:nth-child(4) {
        transform: rotate(6deg) translateY(8px);
        animation: cardScatterTablet4 0.7s ease-out forwards;
        animation-delay: 0.55s;
    }
}

@media (max-width: 768px) {
    .vr-celebration-banner {
        padding: 3rem 0;
    }

    .vr-celebration-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .vr-celebration-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .vr-celebration-button {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }

    .vr-celebration-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        gap: 1.5rem;
    }

    @keyframes cardScatterMobile1 {
        0% {
            opacity: 0;
            transform: translateY(15px) rotate(0deg) scale(0.95);
        }
        100% {
            opacity: 1;
            transform: rotate(-4deg) translateY(-5px) scale(1);
        }
    }

    @keyframes cardScatterMobile2 {
        0% {
            opacity: 0;
            transform: translateY(15px) rotate(0deg) scale(0.95);
        }
        100% {
            opacity: 1;
            transform: rotate(3deg) translateY(4px) scale(1);
        }
    }

    @keyframes cardScatterMobile3 {
        0% {
            opacity: 0;
            transform: translateY(15px) rotate(0deg) scale(0.95);
        }
        100% {
            opacity: 1;
            transform: rotate(-2deg) translateY(-3px) scale(1);
        }
    }

    @keyframes cardScatterMobile4 {
        0% {
            opacity: 0;
            transform: translateY(15px) rotate(0deg) scale(0.95);
        }
        100% {
            opacity: 1;
            transform: rotate(4deg) translateY(5px) scale(1);
        }
    }

    .vr-celebration-card:nth-child(1) {
        transform: rotate(-4deg) translateY(-5px);
        animation: cardScatterMobile1 0.6s ease-out forwards;
        animation-delay: 0.1s;
    }

    .vr-celebration-card:nth-child(2) {
        transform: rotate(3deg) translateY(4px);
        animation: cardScatterMobile2 0.6s ease-out forwards;
        animation-delay: 0.2s;
    }

    .vr-celebration-card:nth-child(3) {
        transform: rotate(-2deg) translateY(-3px);
        animation: cardScatterMobile3 0.6s ease-out forwards;
        animation-delay: 0.3s;
    }

    .vr-celebration-card:nth-child(4) {
        transform: rotate(4deg) translateY(5px);
        animation: cardScatterMobile4 0.6s ease-out forwards;
        animation-delay: 0.4s;
    }

    .vr-card-image {
        height: 180px;
    }

    .vr-card-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .vr-celebration-banner {
        padding: 2rem 0;
    }

    .vr-celebration-title {
        font-size: 1.4rem;
        line-height: 1.3;
        padding: 0 1rem;
    }

    .vr-celebration-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .vr-celebration-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        margin: 0 1rem;
    }

    .vr-celebration-grid {
        padding: 0 1rem;
    }

    .vr-card-image {
        height: 160px;
    }

    .vr-card-overlay {
        padding: 1rem 0.8rem 0.8rem;
    }

    .vr-card-text {
        font-size: 0.8rem;
    }
}
