/* CSS Custom Properties */
:root {
  --primary-purple: #8a2be2;
  --primary-cyan: #00ffff;
  --primary-blue: #007fff;
  --primary-magenta: #ff00ff;
  --background-black: #000000;
  --card-background: rgba(10, 10, 10, 0.8);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s ease;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  --border-radius: 15px;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
    background-color: var(--background-black);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-primary);
    scroll-behavior: smooth;
}

/* Intro screen - unchanged */
#introScreen {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: var(--background-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow: hidden;
}

.intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.intro-content h1 {
    font-size: clamp(4rem, 15vw, 8rem);
    margin-bottom: var(--spacing-md);
    font-weight: 900;
    letter-spacing: -3px;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    position: relative;
    font-family: 'Goudy Old Style', 'Times New Roman', Georgia, serif;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Chromatic aberration effect */
.intro-content h1::before {
    content: "VOXY";
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transform: translate(0, 0);
}

.intro-content p {
    font-size: clamp(1.2rem, 4vw, 2rem);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    font-family: 'Goudy Old Style', 'Times New Roman', Georgia, serif;
    font-weight: normal;
}

#continueButton {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: clamp(0.8rem, 3vw, 1.2rem);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    padding-left: 2rem;
    padding-right: 2rem;
}

#continueButton:hover {
    background: transparent;
    border-color: rgba(138, 43, 226, 0.7);
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

#continueButton:focus {
    outline: none;
}

#continueButton:focus-visible {
    border-color: rgba(138, 43, 226, 0.7);
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

#continueButton:active,
#continueButton.is-pressed {
    background: transparent;
    border-color: rgba(138, 43, 226, 0.9);
    box-shadow: 0 0 8px rgba(138, 43, 226, 0.6);
    transform: scale(0.98);
}

/* Remove any existing pseudo-elements that may have been added */
#continueButton::before,
#continueButton::after {
    display: none !important;
}

/* VHS Effects for Intro */
#introScreen::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(rgba(138, 43, 226, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138, 43, 226, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 5;
    opacity: 0.6;
}

.scanlines {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.05) 0px,
        rgba(0, 0, 0, 0.05) 1px,
        transparent 1px,
        transparent 3px
    );
    pointer-events: none;
    z-index: 2;
    animation: scanlineMove 8s linear infinite;
}

@keyframes scanlineMove {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Background particle system for intro */
.intro-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

/* Particle layers */
.particle-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    will-change: transform;
}

.particle-layer--far {
    z-index: 2;
}

.particle-layer--mid {
    z-index: 3;
}

.particle-layer--near {
    z-index: 4;
}

/* Particle types */
.particle--dot {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.7;
    animation: floatParticle linear infinite;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

.particle--cross,
.particle--dash,
.particle--blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.7;
    animation: floatParticle linear infinite;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
    /* Convert to circle by making width = height */
    width: 4px;
    height: 4px;
}

.particle--cross,
.particle--dash {
    width: 4px;
    height: 4px;
}

.particle--blur {
    width: 4px;
    height: 4px;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
}

/* Add diagonal movement to particles */
@keyframes floatDiagonal {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
}







/* Vignette effect */
.vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 5;
    pointer-events: none;
}

/* Noise overlay */
.noise-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 5;
}

/* Scanlines effect */
.scanlines {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.05) 0px,
        rgba(0, 0, 0, 0.05) 1px,
        transparent 1px,
        transparent 3px
    );
    pointer-events: none;
    z-index: 5;
    animation: scanlineMove 8s linear infinite;
}



/* Main content */
#mainContent {
    display: none;
    padding: 20px;
    position: relative;
    min-height: 100vh;
}

/* Background effects */
.background-effects {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.light-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 25s infinite ease-in-out;
}

.light-sphere:nth-child(1) {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.light-sphere:nth-child(2) {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #00ffff, #008080);
    top: 60%;
    left: 60%;
    animation-delay: -5s;
}

.light-sphere:nth-child(3) {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ff00ff, #800080);
    top: 70%;
    left: 20%;
    animation-delay: -10s;
}



.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(138, 43, 226, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138, 43, 226, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
}

.mouse-follower {
    position: fixed;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.2s;
    filter: blur(10px);
}

.mouse-follower.active {
    opacity: 1;
}

/* Navigation */
.voxy-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
    transition: all var(--transition-fast);
}

.nav-wordmark {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    margin: 0;
    padding: 0;
}

.nav-menu li {
    cursor: pointer;
    position: relative;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color var(--transition-fast);
    padding: var(--spacing-xs) 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-menu li:hover {
    color: var(--primary-cyan);
}

.nav-menu li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-cyan));
    transition: width var(--transition-fast);
    z-index: 2;
}

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

.nav-menu li.active::after {
    width: 100%;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-cyan));
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    width: 25px;
    height: 20px;
    z-index: 1001;
}

.menu-toggle span {
    background: #fff;
    border-radius: 10px;
    height: 2px;
    transition: all var(--transition-fast);
    width: 100%;
}

/* Menu toggle animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg) var(--spacing-md);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #fff, var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.explore-btn, .discover-btn {
    padding: var(--spacing-sm) var(--spacing-md);
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    min-width: 180px;
}

.explore-btn {
    border: 1px solid rgba(138, 43, 226, 0.5);
    background: linear-gradient(90deg, rgba(138, 43, 226, 0.1), transparent);
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.2);
}

.discover-btn {
    border: 1px solid rgba(0, 255, 255, 0.5);
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.1), transparent);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.explore-btn:hover, .discover-btn:hover {
    opacity: 1;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
    transform: translateY(-3px);
}

/* V/X Graphic */
.vx-graphic {
    width: clamp(200px, 30vw, 400px);
    height: clamp(200px, 30vw, 400px);
    position: relative;
    z-index: 2;
    animation: pulse 4s infinite ease-in-out;
}

.vx-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: rotateShape 15s infinite linear;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vx-reflection {
    position: absolute;
    width: 60%;
    height: 60%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: float 10s infinite ease-in-out;
    filter: blur(3px);
}

/* Projects Section */
.projects-section {
    padding: var(--spacing-lg) var(--spacing-md);
    max-width: 1400px;
    margin: var(--spacing-xl) auto;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.projects-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: var(--card-background);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
    border: 1px solid rgba(138, 43, 226, 0.2);
    box-shadow: var(--shadow);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.project-card:nth-child(2n) {
    animation-delay: 0.2s;
}

.project-card:nth-child(3n) {
    animation-delay: 0.4s;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 255, 255, 0.3);
    z-index: 2;
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    pointer-events: none;
    animation: gradientShift 5s infinite alternate;
    z-index: -1;
}

.project-graphic {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-md);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.project-graphic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.6) 0%, transparent 30%);
    opacity: 0.5;
    animation: pulse 8s infinite ease-in-out;
}

.project-card h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    letter-spacing: 0.5px;
    font-weight: 600;
}

.project-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.category-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 20px;
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.category-badge.plugin {
    background: linear-gradient(90deg, var(--primary-purple), #4b0082);
}

.category-badge.gaming {
    background: linear-gradient(90deg, var(--primary-blue), #0000ff);
}

.status-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 20px;
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    text-transform: uppercase;
}

/* Section styling */
.section {
    padding: var(--spacing-lg) var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
    min-height: 50vh;
}

.section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
}

.section p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.plugin-grid, .tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.plugin-card, .tool-card {
    background: var(--card-background);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    border: 1px solid rgba(138, 43, 226, 0.2);
    box-shadow: var(--shadow);
    transition: all var(--transition-fast);
}

.plugin-card:hover, .tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.voxy-footer {
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    background: rgba(10, 10, 10, 0.8);
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    margin-top: var(--spacing-lg);
}

.voxy-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: clamp(0.8rem, 2vw, 1rem);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, 20px) rotate(5deg);
    }
    50% {
        transform: translate(-20px, -20px) rotate(-5deg);
    }
    75% {
        transform: translate(10px, -10px) rotate(3deg);
    }
}

@keyframes rotateShape {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

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

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



/* Animations */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, 20px) rotate(5deg);
    }
    50% {
        transform: translate(-20px, -20px) rotate(-5deg);
    }
    75% {
        transform: translate(10px, -10px) rotate(3deg);
    }
}

@keyframes rotateShape {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
        gap: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .vx-graphic {
        width: 250px;
        height: 250px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-section {
        padding: 60px 20px;
    }
    
    .section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .explore-btn, .discover-btn {
        width: 100%;
        text-align: center;
    }
    
    .vx-graphic {
        width: 200px;
        height: 200px;
    }
    
    .section {
        padding: 40px 15px;
    }
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}