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

body {
    font-family: 'Orbitron', monospace;
    background: radial-gradient(circle at top left, #0f1115, #06070a);
    color: #ccfaff;
    line-height: 1.6;
    overflow-x: hidden;
    animation: gradientMove 20s ease-in-out infinite;
}

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

/* Animated Background Canvas */
#backgroundCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

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

/* Floating Navigation */
.nav-toggle {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #000000ee;
    border: 2px solid #00ffcc66;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    border-color: #00ffcc;
    box-shadow: 0 0 20px #00ffe122;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: #00ffcc;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

.floating-nav {
    position: fixed;
    top: 100px;
    right: 30px;
    background: #000000ee;
    border: 1px solid #00ffcc66;
    border-radius: 15px;
    padding: 20px;
    z-index: 1000;
    transform: translateX(300px);
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.floating-nav.active {
    transform: translateX(0);
    opacity: 1;
}

.floating-nav ul {
    list-style: none;
}

.floating-nav li {
    margin: 15px 0;
}

.floating-nav a {
    color: #00ffcc;
    text-decoration: none;
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: block;
}

.floating-nav a:hover {
    background: #00ffcc22;
    color: #00ffe1;
    box-shadow: 0 0 10px #00ffe122;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 1;
}

/* Typography */
h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #00ffe1;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px #00ffe144;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 20px #00ffe144; }
    100% { text-shadow: 0 0 30px #00ffe166, 0 0 40px #00ffe133; }
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #00ffe1;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px #00ffe122;
}

h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #00ffcc;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #ccfaff;
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ffcc66, transparent);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 100px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-image {
    margin-top: 3rem;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    border: 2px solid #00ffcc66;
    box-shadow: 0 0 30px #00ffe122;
    transition: all 0.3s ease;
}

.hero-image img:hover {
    border-color: #00ffcc;
    box-shadow: 0 0 50px #00ffe133;
}

/* Mirrors Section */
.mirrors-section {
    background: linear-gradient(135deg, #0a0c10, #151820);
}

.mirrors-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.mirrors-links {
    background: #000000aa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #00ffcc66;
    backdrop-filter: blur(10px);
}

.mirror-list {
    margin: 1.5rem 0;
}

.mirror-list a {
    display: block;
    color: #ff4a33;
    text-decoration: none;
    font-family: 'Share Tech Mono', monospace;
    padding: 8px 15px;
    margin: 5px 0;
    background: #000000aa;
    border-radius: 5px;
    border: 1px solid #ff4a3366;
    transition: all 0.3s ease;
}

.mirror-list a:hover {
    color: #ffaa88;
    border-color: #ff4a33;
    box-shadow: 0 0 15px #ff4a3322;
}

.mirror-warning {
    color: #ffaa88;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: #000000aa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #00ffcc66;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    border-color: #00ffcc;
    box-shadow: 0 0 25px #00ffe122;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px #00ffe144);
}

.features-image {
    text-align: center;
    margin-top: 2rem;
}

.features-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    border: 2px solid #00ffcc66;
    box-shadow: 0 0 30px #00ffe122;
}

/* Registration Section */
.registration-section {
    background: linear-gradient(135deg, #151820, #0a0c10);
}

.registration-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.step-number {
    background: #00ffcc;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px #00ffe144;
}

.registration-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid #00ffcc66;
    box-shadow: 0 0 30px #00ffe122;
}

/* Security Section */
.security-features {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.security-item {
    background: #000000aa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #00ffcc66;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.security-item:hover {
    border-color: #00ffcc;
    box-shadow: 0 0 25px #00ffe122;
}

/* Vendors Section */
.vendors-section {
    background: linear-gradient(135deg, #0a0c10, #151820);
}

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

.vendor-requirements,
.vendor-rules {
    background: #000000aa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #00ffcc66;
    backdrop-filter: blur(10px);
}

/* Raffle Section */
.raffle-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.raffle-info,
.raffle-benefits {
    background: #000000aa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #00ffcc66;
    backdrop-filter: blur(10px);
}

.raffle-image {
    text-align: center;
}

.raffle-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid #00ffcc66;
    box-shadow: 0 0 30px #00ffe122;
}

/* Safety Section */
.safety-section {
    background: linear-gradient(135deg, #151820, #0a0c10);
}

.warning-box {
    background: linear-gradient(135deg, #ff4a3322, #000000aa);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ff4a33;
    margin-bottom: 2rem;
    box-shadow: 0 0 25px #ff4a3322;
}

.safety-guidelines,
.legal-disclaimer {
    background: #000000aa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #00ffcc66;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #000000ee;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #00ffcc66;
    color: #88aaaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        top: 20px;
        right: 20px;
    }
    
    .floating-nav {
        top: 80px;
        right: 20px;
        left: 20px;
        transform: translateY(-300px);
    }
    
    .floating-nav.active {
        transform: translateY(0);
    }
    
    .mirrors-content,
    .registration-content,
    .vendors-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .raffle-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .feature-card,
    .security-item,
    .vendor-requirements,
    .vendor-rules,
    .raffle-info,
    .raffle-benefits,
    .safety-guidelines,
    .legal-disclaimer {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

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

/* Selection Styling */
::selection {
    background: #00ffcc44;
    color: #00ffe1;
}

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

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #00ffcc66;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00ffcc;
}

