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

:root {
    --primary-color: #00ffff;
    --secondary-color: #00ff00;
    --accent-color: #00ff00;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --text-color: #ffffff;
    --glow: 0 0 20px var(--primary-color);
}

body {
    font-family: 'Courier New', monospace;
    background: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    margin-bottom: 3rem;
    overflow: hidden;
}

.loader-text {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: 8px;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color);
    display: inline-block;
    animation: loader-glitch 2s infinite, loader-pulse 1.5s ease-in-out infinite;
}

@keyframes loader-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

@keyframes loader-glitch {
    0%, 90%, 100% { transform: translate(0); filter: hue-rotate(0deg); }
    92% { transform: translate(-3px, 1px); filter: hue-rotate(90deg); }
    94% { transform: translate(3px, -1px); filter: hue-rotate(-90deg); }
    96% { transform: translate(-1px, 2px); filter: hue-rotate(180deg); }
    98% { transform: translate(1px, -2px); filter: hue-rotate(-180deg); }
}

.loader-bar {
    width: 300px;
    height: 4px;
    background: rgba(0, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

.loader-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 20px var(--primary-color);
    animation: loader-fill 2s ease-out forwards;
}

@keyframes loader-fill {
    0% { width: 0%; }
    20% { width: 20%; }
    50% { width: 60%; }
    80% { width: 85%; }
    100% { width: 100%; }
}

.loader-status {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--primary-color);
    animation: status-blink 0.5s infinite;
}

@keyframes status-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.5; }
}

/* Custom Cursor */
.custom-cursor {
    width: 12px;
    height: 12px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s, opacity 0.3s;
}

.custom-cursor.hover {
    width: 20px;
    height: 20px;
    border-color: var(--secondary-color);
    background: rgba(0, 255, 0, 0.1);
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    opacity: 0.5;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: scroll-bounce 2s ease-in-out infinite;
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel-scroll 1.5s ease-in-out infinite;
}

@keyframes wheel-scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--primary-color);
    opacity: 0.7;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* 3D Tilt Effect */
.tilt-card {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.tilt-inner {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    border-radius: 15px;
    overflow: hidden;
}

.tilt-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.tilt-card:hover .tilt-shine {
    opacity: 1;
}

/* Reveal Animation */
.reveal-element {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Typing Effect */
.typing-effect {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--primary-color);
    animation: typing-cursor 0.7s step-end infinite;
}

@keyframes typing-cursor {
    0%, 100% { border-color: var(--primary-color); }
    50% { border-color: transparent; }
}

/* Magnetic Button */
.magnetic-btn {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

section {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

/* Particles.js Container */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    will-change: auto;
}

#particles-js canvas {
    display: block;
    pointer-events: auto;
}

/* Cyberpunk Background */
.cyberpunk-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    display: none;
}

@keyframes gridMove {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 100px 100px, 100px 100px;
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 255, 0.1);
    z-index: 1000;
    pointer-events: auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    font-family: 'Orbitron', sans-serif;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
    text-shadow: var(--glow);
}

/* Glitch Effect */
.glitch {
    position: relative;
    color: var(--text-color);
    font-family: 'Orbitron', sans-serif;
    animation: dramatic-flicker 3s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--primary-color);
    animation: flicker-offset-1 3s infinite;
}

.glitch::after {
    left: -2px;
    text-shadow: 2px 0 var(--secondary-color);
    animation: flicker-offset-2 3s infinite;
}

@keyframes dramatic-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { 
        opacity: 1;
        text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
    }
    20%, 24%, 55% { 
        opacity: 0.4;
        text-shadow: none;
    }
}

@keyframes flicker-offset-1 {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { 
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
    20%, 24%, 55% { 
        opacity: 0;
        clip-path: inset(50% 0 50% 0);
    }
}

@keyframes flicker-offset-2 {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { 
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
    20%, 24%, 55% { 
        opacity: 0;
        clip-path: inset(40% 0 60% 0);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 2rem;
    overflow: hidden;
    background: var(--dark-bg);
    pointer-events: auto;
    z-index: 2;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    filter: brightness(1) contrast(1.3);
}

.hero-content {
    z-index: 2;
}

.glitch-large {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 800;
    letter-spacing: 10px;
    margin-bottom: 1rem;
    position: relative;
    animation: dramatic-flicker 3s infinite;
    font-family: 'Orbitron', sans-serif;
}

.glitch-large::before,
.glitch-large::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-large::before {
    left: 2px;
    text-shadow: -3px 0 var(--primary-color);
    animation: flicker-offset-1 3s infinite;
}

.glitch-large::after {
    left: -2px;
    text-shadow: 3px 0 var(--secondary-color);
    animation: flicker-offset-2 3s infinite;
}

.tagline {
    font-size: clamp(1rem, 3vw, 1.5rem);
    letter-spacing: 5px;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-shadow: var(--glow);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 3px;
    border: 2px solid var(--primary-color);
    background: rgba(0, 255, 255, 0.05);
    color: var(--primary-color);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 5px;
    text-transform: uppercase;
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    left: 0;
}

.btn-primary:hover, .btn-secondary:hover {
    color: var(--dark-bg);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6), 0 5px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
}

.btn-secondary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-secondary::before {
    background: var(--secondary-color);
}

/* Sound Waves Animation */
.sound-waves {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.wave {
    width: 4px;
    height: 50px;
    background: var(--primary-color);
    animation: wave-pulse 1s infinite ease-in-out;
    box-shadow: 0 0 10px var(--primary-color);
}

.wave:nth-child(2) {
    animation-delay: 0.15s;
}

.wave:nth-child(3) {
    animation-delay: 0.3s;
}

.wave:nth-child(4) {
    animation-delay: 0.45s;
}

.wave:nth-child(5) {
    animation-delay: 0.6s;
}

@keyframes wave-pulse {
    0%, 100% { height: 20px; opacity: 0.5; }
    50% { height: 60px; opacity: 1; }
}

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

/* Section Title */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 8px;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.8), 0 0 60px rgba(0, 255, 255, 0.4);
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    box-shadow: 0 0 20px var(--secondary-color);
}

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(5, 5, 5, 0.95) 100%);
    opacity: 1 !important;
    transform: none !important;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 0, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.band-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Music Section */
.music {
    padding: 8rem 0;
    position: relative;
}

.music::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.featured-album {
    margin-bottom: 5rem;
    text-align: center;
    transition: transform 0.4s ease;
}

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

.featured-album:hover .featured-video {
    box-shadow: 0 0 60px rgba(0, 255, 255, 0.7), 0 15px 50px rgba(0, 0, 0, 0.7) !important;
    transform: scale(1.02);
}

#hyperfollow-widget {
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

#hyperfollow-widget:hover {
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
}

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

.album-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.album-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.album-card:hover::before {
    opacity: 1;
}

.album-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 255, 255, 0.4), 0 0 40px rgba(0, 255, 255, 0.2);
    border-color: var(--primary-color);
    background: rgba(0, 255, 255, 0.05);
}

.album-cover {
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.album-cover video,
.album-cover img {
    transition: transform 0.4s ease;
}

.album-card:hover .album-cover video,
.album-card:hover .album-cover img {
    transform: scale(1.05);
}

.album-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.3) 0%, rgba(255, 0, 255, 0.3) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 3px;
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    flex-direction: column;
    text-align: center;
    padding: 1rem;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: 0 0 20px var(--primary-color);
}

.album-card h3 {
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.album-card:hover h3 {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.album-card p {
    color: rgba(0, 255, 255, 0.7);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.album-card:hover p {
    color: var(--primary-color);
}

/* Tour Section */
.tour {
    padding: 8rem 0;
    background: var(--darker-bg);
}

.tour-dates {
    max-width: 900px;
    margin: 0 auto;
}

.tour-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.tour-item:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateX(10px);
    border-left-color: var(--secondary-color);
}

.date {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.location {
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.btn-ticket {
    padding: 0.8rem 2rem;
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ticket:hover {
    background: var(--secondary-color);
    color: var(--dark-bg);
    box-shadow: 0 0 20px var(--secondary-color);
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: #000000;
    position: relative;
    backdrop-filter: blur(10px);
    z-index: 10;
    pointer-events: auto;
}

.contact .container {
    position: relative;
    z-index: 11;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 12;
}

.social-btn {
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 13;
    pointer-events: auto;
}

.social-btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: 0 0 20px var(--primary-color);
}

.newsletter {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h3 {
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    letter-spacing: 2px;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.btn-submit {
    padding: 1rem 2rem;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--dark-bg);
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: transparent;
    color: var(--secondary-color);
    box-shadow: 0 0 20px var(--secondary-color);
}

/* Footer */
.footer {
    padding: 3rem 0;
    text-align: center;
    background: var(--darker-bg);
    border-top: 2px solid var(--primary-color);
}

.footer p {
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.footer-tagline {
    color: var(--primary-color);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Disable custom cursor on mobile */
    .custom-cursor, .cursor-follower {
        display: none;
    }
    
    body {
        cursor: auto;
    }

    .nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-video {
        transform: translate(-50%, -50%) scale(0.7);
    }

    .tour-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-buttons button {
        flex: 1;
        min-width: 0;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .loader-text {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }
    
    .loader-bar {
        width: 200px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

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