/* Google Fonts */
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* True Dark Neon Palette */
    --bg-dark: #0a0a0f;
    --bg-card: rgba(20, 20, 30, 0.4);
    --neon-cyan: #00F0FF;
    --neon-pink: #FF00E6;
    --neon-purple: #B200FF;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Animated Background */
.bg-gradient-anim {
    position: fixed;
    top: -50%; left: -50%;
    width: 200vw; height: 200vh;
    background: radial-gradient(circle at 50% 50%, rgba(178, 0, 255, 0.15), rgba(0, 240, 255, 0.05) 40%, transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(255, 0, 230, 0.1), transparent 40%);
    z-index: -2;
    animation: rotateBg 30s linear infinite;
    transform-origin: center;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: -1;
    pointer-events: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

.text-gradient {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* Add standard property */
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
    box-shadow: 0 0 30px rgba(255, 0, 230, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: #fff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
}

.logo-text { letter-spacing: 2px; }
.logo-diamond { font-size: 1.4rem; }

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.nav-links a.btn-nav {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.nav-links a.btn-nav:hover {
    background: var(--neon-purple);
    border-color: var(--neon-purple);
    color: #fff;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-visual-bg {
    position: absolute;
    top: 0; right: 0;
    width: 60%; height: 100%;
    background-image: url('визуал/Снимок экрана 2026-04-02 в 03.39.43.png');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 800px;
    z-index: 1;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* Sections */
.section { padding: 6rem 0; }
.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}
.section-title span {
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}
.section-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

/* About / Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(178, 0, 255, 0.2);
    border-color: rgba(178, 0, 255, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Events Showcase */
.event-showcase {
    position: relative;
    overflow: hidden;
    padding: 4rem;
    display: flex;
    gap: 3rem;
}
.event-showcase::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at top right, rgba(255, 0, 230, 0.1), transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.event-showcase-content { position: relative; z-index: 1; }
.event-date {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--neon-pink);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.event-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #FFDD00, #FF00E6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.event-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}
.event-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}
.event-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}
.event-features li {
    background: rgba(255,255,255,0.05);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    font-size: 0.95rem;
}

/* Virtual Card (E1337 Pass) */
.card-3d-wrapper {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}
.virtual-card {
    width: 450px;
    height: 280px;
    border-radius: 20px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(178, 0, 255, 0.4);
}
.virtual-card:hover {
    box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 60px rgba(0, 240, 255, 0.5);
}
.vc-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
}
.vc-bg::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--neon-cyan), transparent 30%, transparent 70%, var(--neon-purple), transparent);
    animation: rotateCardBg 8s linear infinite;
    opacity: 0.3;
}
@keyframes rotateCardBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.vc-content {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
    transform: translateZ(30px);
}
.vc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.vc-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.vc-status {
    background: rgba(255, 0, 230, 0.2);
    color: var(--neon-pink);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 0, 230, 0.4);
    animation: pulseStatus 2s infinite;
}
@keyframes pulseStatus {
    0% { box-shadow: 0 0 0 rgba(255, 0, 230, 0.4); }
    50% { box-shadow: 0 0 15px rgba(255, 0, 230, 0.8); }
    100% { box-shadow: 0 0 0 rgba(255, 0, 230, 0.4); }
}
.vc-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37, #f3e5ab);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}
.vc-chip::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(0,0,0,0.1) 10px, rgba(0,0,0,0.1) 12px);
}
.vc-info { margin-top: 1rem; }
.vc-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 0.5rem;
}
.vc-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    max-width: 80%;
}
.vc-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}
.vc-name {
    font-size: 1.1rem;
    text-transform: uppercase;
}
.vc-type {
    font-size: 0.8rem;
    color: var(--neon-cyan);
}
.card-action {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Albums Grid & Collage Cover */
.albums-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.album-container {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.album-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.album-info h3 {
    font-size: 2rem;
    color: var(--neon-cyan);
}
.album-info p {
    color: var(--text-secondary);
}

/* Exactly 5 photos layout */
.album-collage {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    border-radius: 15px;
    overflow: hidden;
    height: 450px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.album-collage:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

.album-collage .collage-img:hover {
    filter: brightness(1.2);
}

/* Mapping nth-child to grid spots */
.album-collage .collage-img:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}
.album-collage .collage-img:nth-child(2) { grid-column: 2; grid-row: 1; }
.album-collage .collage-img:nth-child(3) { grid-column: 3; grid-row: 1; }
.album-collage .collage-img:nth-child(4) { grid-column: 2; grid-row: 2; }
.album-collage .collage-img:nth-child(5) {
    grid-column: 3; 
    grid-row: 2; 
    position: relative;
}

/* Plus more icon on 5th if > 5 images */
.more-photos-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    pointer-events: none;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 20px;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    object-fit: contain;
}
.close-lightbox {
    position: absolute;
    top: 20px; right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2010;
}
.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    background: rgba(0,0,0,0.3);
    border: none;
    border-radius: 0 3px 3px 0;
    user-select: none;
    transition: 0.3s;
    z-index: 2010;
}
.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.lightbox-prev:hover, .lightbox-next:hover {
    background-color: rgba(255, 0, 230, 0.8);
}
#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    font-size: 1.2rem;
    padding: 15px 0;
    font-family: var(--font-heading);
}
#lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: var(--font-body);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.review-card {
    padding: 2.5rem;
}
.review-stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.review-text {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}
.review-author {
    color: var(--neon-cyan);
    font-weight: 600;
}

/* Team Grid */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.team-member {
    padding: 3rem 2rem;
    text-align: center;
    width: 100%;
    max-width: 300px;
    transition: transform 0.3s ease;
}
.team-member:hover { transform: translateY(-10px); }
.avatar-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple));
    box-shadow: 0 10px 30px rgba(178, 0, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.avatar-wrapper.creator {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    box-shadow: 0 10px 30px rgba(255, 0, 230, 0.3);
}
.member-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transform: scale(1.4);
    transition: transform 0.3s ease;
}
.avatar-wrapper:hover .member-avatar {
    transform: scale(1.5);
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.contact-methods {
    margin-top: 2rem;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}
.contact-method .icon { font-size: 2rem; }
.contact-form {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--neon-purple);
    box-shadow: 0 0 10px rgba(178, 0, 255, 0.3);
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.footer-links {
    display: flex;
    gap: 2rem;
}
.footer-links a:hover { color: var(--neon-pink); }
.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active, .fade-up.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .album-collage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        height: auto;
        aspect-ratio: auto;
    }
    .album-collage .collage-img:nth-child(1) { grid-column: 1 / -1; height: 250px; }
    .album-collage .collage-img:nth-child(2) { grid-column: 1; grid-row: 3; height:150px; }
    .album-collage .collage-img:nth-child(3) { grid-column: 2; grid-row: 3; height:150px;}
    .album-collage .collage-img:nth-child(4) { grid-column: 1; grid-row: 4; height:150px;}
    .album-collage .collage-img:nth-child(5) { grid-column: 2; grid-row: 4; height:150px;}
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: rgba(10, 10, 15, 0.95);
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
        border-bottom: 1px solid var(--glass-border);
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .hero-title { 
        font-size: 2.2rem; 
        line-height: 1.2;
        word-wrap: break-word; 
        hyphens: auto; 
    }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons { 
        flex-direction: column; 
        width: 100%; 
        gap: 1rem; 
    }
    .hero-buttons .btn { 
        width: 100%; 
        text-align: center; 
    }
    .scroll-indicator { display: none; }
    .virtual-card { width: 100%; height: 280px; }
}
