* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Epic Color Palette */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    --neon-gradient: linear-gradient(135deg, #ff006e 0%, #8338ec 50%, #3a86ff 100%);
    --cyber-gradient: linear-gradient(135deg, #00f5ff 0%, #ff00ff 50%, #ffff00 100%);
    --fire-gradient: linear-gradient(135deg, #ff4757 0%, #ff6b35 50%, #f7b731 100%);
    --ocean-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e0e6ed;
    --text-accent: #ffd700;
    --text-dark: #1a1a2e;
    
    /* Background Colors */
    --bg-dark: #0f0f23;
    --bg-darker: #16213e;
    --bg-card: rgba(255, 255, 255, 0.1);
    --bg-glass: rgba(255, 255, 255, 0.05);
    
    /* Shadows & Effects */
    --shadow-neon: 0 0 20px rgba(102, 126, 234, 0.5);
    --shadow-epic: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(255, 215, 0, 0.3);
    
    /* Animations */
    --transition-epic: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f23 0%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: var(--text-primary);
}

.loading-logo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.logo-ring {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

.logo-ring:nth-child(1) {
    width: 120px;
    height: 120px;
    border-top: 2px solid #667eea;
    animation-duration: 2s;
}

.logo-ring:nth-child(2) {
    width: 90px;
    height: 90px;
    top: 15px;
    left: 15px;
    border-right: 2px solid #f093fb;
    animation-duration: 1.5s;
    animation-direction: reverse;
}

.logo-ring:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 30px;
    left: 30px;
    border-bottom: 2px solid #4facfe;
    animation-duration: 1s;
}

.loading-logo i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 1s ease-in-out infinite alternate;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 2rem auto;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: var(--neon-gradient);
    border-radius: 2px;
    animation: loadProgress 3s ease-in-out;
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f23 0%, #16213e 50%, #0f0f23 100%);
    z-index: -2;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 30%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 30%;
    animation-delay: 1s;
}

.shape-5 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 60%;
    animation-delay: 3s;
}

.shape-6 {
    width: 180px;
    height: 180px;
    top: 70%;
    right: 50%;
    animation-delay: 5s;
}

@keyframes floatShape {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    33% { 
        transform: translateY(-30px) rotate(120deg) scale(1.1);
        opacity: 0.6;
    }
    66% { 
        transform: translateY(15px) rotate(240deg) scale(0.9);
        opacity: 0.4;
    }
}

/* Particle System */
.particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: var(--transition-epic);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-icon {
    position: relative;
    margin-right: 1rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    font-size: 2rem;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neon-gradient);
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.3;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { transform: scale(0.8); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0.6; }
}

.logo-text {
    background: var(--cyber-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Orbitron', monospace;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: var(--transition-epic);
    overflow: hidden;
}

.nav-link span {
    position: relative;
    z-index: 2;
}

.nav-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    border-radius: 25px;
    transition: var(--transition-epic);
}

.nav-link:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.nav-link:hover .nav-glow {
    opacity: 0.2;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition-epic);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeShine 2s ease-in-out infinite;
}

@keyframes badgeShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-badge i {
    margin-right: 0.5rem;
    color: #ff4757;
    animation: fireFlicker 1s ease-in-out infinite alternate;
}

@keyframes fireFlicker {
    0% { transform: scale(1) rotate(-2deg); }
    100% { transform: scale(1.1) rotate(2deg); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: 'Orbitron', monospace;
}

.title-line {
    display: block;
    animation: titleSlide 1s ease-out;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

@keyframes titleSlide {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.gradient-text-animated {
    background: var(--cyber-gradient);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Epic Timer Section */
.timer-section {
    margin: 3rem 0;
}

.timer-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.timer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: timerShine 3s ease-in-out infinite;
}

@keyframes timerShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.timer-header {
    text-align: center;
    margin-bottom: 2rem;
}

.timer-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--fire-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Orbitron', monospace;
}

.timer-warning-pulse {
    font-size: 1rem;
    color: #ff4757;
    font-weight: 600;
    animation: warningPulse 1.5s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.time-unit {
    position: relative;
    text-align: center;
    min-width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.time-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neon-gradient);
    border-radius: 15px;
    opacity: 0.2;
}

.time-value {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    background: var(--cyber-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Orbitron', monospace;
    z-index: 2;
}

.time-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
    z-index: 2;
}

.time-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--neon-gradient);
    border-radius: 20px;
    filter: blur(15px);
    opacity: 0.3;
    animation: timeGlow 2s ease-in-out infinite alternate;
}

@keyframes timeGlow {
    0% { opacity: 0.3; transform: scale(0.9); }
    100% { opacity: 0.6; transform: scale(1.1); }
}

.time-separator {
    font-size: 2rem;
    font-weight: 900;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.separator-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gradient);
    border-radius: 50%;
    animation: dotBlink 1s ease-in-out infinite alternate;
}

.separator-dot:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes dotBlink {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

/* Epic Pricing */
.hero-pricing {
    margin: 3rem 0;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.price-before {
    text-align: center;
    position: relative;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.price-before .price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff4757;
    font-family: 'Orbitron', monospace;
    position: relative;
}

.strike-through {
    position: absolute;
    top: 65%;
    left: 0;
    right: 0;
    height: 4px;
    background: #ff4757;
    transform: rotate(-15deg);
    animation: strikeGrow 1s ease-out 1s both;
}

@keyframes strikeGrow {
    0% { width: 0; left: 50%; }
    100% { width: 100%; left: 0; }
}

.price-arrow {
    position: relative;
    font-size: 2rem;
    color: var(--text-accent);
}

.arrow-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    filter: blur(10px);
    opacity: 0.5;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.price-now {
    text-align: center;
    position: relative;
}

.price-now .price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Orbitron', monospace;
}

.price-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gold-gradient);
    filter: blur(20px);
    opacity: 0.3;
    animation: priceGlow 2s ease-in-out infinite alternate;
}

@keyframes priceGlow {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 0.6; transform: scale(1.2); }
}

.discount-explosion {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--fire-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    transform: rotate(15deg);
    animation: explosionBounce 2s ease-in-out infinite;
}

@keyframes explosionBounce {
    0%, 100% { transform: rotate(15deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

.explosion-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg, transparent, #ffd700, transparent, #ff4757, transparent);
    border-radius: 50%;
    animation: raysSpin 3s linear infinite;
    opacity: 0.3;
    z-index: -1;
}

@keyframes raysSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Epic Buttons */
.hero-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.mega-btn, .glass-btn {
    position: relative;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-bounce);
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mega-btn {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid transparent;
    width: 100%;
    font-family: 'Orbitron';
}

.mega-btn .btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--fire-gradient);
    border-radius: 50px;
    z-index: 1;
}

.mega-btn .btn-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--fire-gradient);
    border-radius: 55px;
    filter: blur(15px);
    opacity: 0.5;
    z-index: 0;
    animation: btnGlow 2s ease-in-out infinite alternate;
}

@keyframes btnGlow {
    0% { opacity: 0.5; transform: scale(0.95); }
    100% { opacity: 0.8; transform: scale(1.05); }
}

.mega-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.glass-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-btn .btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    border-radius: 50px;
    transition: var(--transition-epic);
}

.glass-btn:hover .btn-bg {
    opacity: 0.2;
}

.glass-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
}

/* 3D Visual Elements */
.hero-visual {
    position: relative;
    height: 600px;
    perspective: 1000px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: containerFloat 8s ease-in-out infinite;
}

@keyframes containerFloat {
    0%, 100% { transform: rotateY(0deg) rotateX(0deg); }
    25% { transform: rotateY(90deg) rotateX(5deg); }
    50% { transform: rotateY(180deg) rotateX(0deg); }
    75% { transform: rotateY(270deg) rotateX(-5deg); }
}

.floating-card {
    position: absolute;
    width: 150px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    color: var(--text-primary);
    transform-style: preserve-3d;
    transition: var(--transition-epic);
}

.card-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--neon-gradient);
    border-radius: 25px;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
}

.card-content i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: var(--cyber-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-content span {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.card-count {
    font-size: 0.8rem;
    opacity: 0.7;
    font-weight: 500;
}

.card-1 {
    top: 5%;
    left: 10%;
    animation: cardFloat1 6s ease-in-out infinite;
    transform: rotateY(-15deg) rotateX(10deg);
}

.card-2 {
    top: 15%;
    right: 5%;
    animation: cardFloat2 7s ease-in-out infinite;
    transform: rotateY(15deg) rotateX(-10deg);
}

.card-3 {
    bottom: 25%;
    left: 5%;
    animation: cardFloat3 8s ease-in-out infinite;
    transform: rotateY(-20deg) rotateX(15deg);
}

.card-4 {
    bottom: 5%;
    right: 15%;
    animation: cardFloat4 5s ease-in-out infinite;
    transform: rotateY(20deg) rotateX(-15deg);
}

@keyframes cardFloat1 {
    0%, 100% { transform: rotateY(-15deg) rotateX(10deg) translateZ(0px); }
    50% { transform: rotateY(-15deg) rotateX(10deg) translateZ(50px); }
}

@keyframes cardFloat2 {
    0%, 100% { transform: rotateY(15deg) rotateX(-10deg) translateZ(0px); }
    50% { transform: rotateY(15deg) rotateX(-10deg) translateZ(40px); }
}

@keyframes cardFloat3 {
    0%, 100% { transform: rotateY(-20deg) rotateX(15deg) translateZ(0px); }
    50% { transform: rotateY(-20deg) rotateX(15deg) translateZ(60px); }
}

@keyframes cardFloat4 {
    0%, 100% { transform: rotateY(20deg) rotateX(-15deg) translateZ(0px); }
    50% { transform: rotateY(20deg) rotateX(-15deg) translateZ(30px); }
}

.center-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    animation: orbFloat 4s ease-in-out infinite;
}

.orb-rings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top: 2px solid var(--accent-gradient);
    border-radius: 50%;
    animation: orbSpin 3s linear infinite;
}

.orb-rings::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid transparent;
    border-right: 1px solid var(--neon-gradient);
    border-radius: 50%;
    animation: orbSpin 2s linear infinite reverse;
}

@keyframes orbSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    background: var(--cyber-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-neon);
}

.orb-core i {
    font-size: 2rem;
    color: var(--text-primary);
    animation: orbPulse 2s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

@keyframes orbPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Features Section */
.features {
    padding: 8rem 0;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    position: relative;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

.section-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', monospace;
}

.title-word {
    display: inline-block;
    margin-right: 1rem;
    animation: wordFloat 3s ease-in-out infinite;
}

.title-word:nth-child(1) {
    background: var(--fire-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-delay: 0s;
}

.title-word:nth-child(2) {
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-delay: 0.5s;
}

.title-word:nth-child(3) {
    background: var(--cyber-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-delay: 1s;
}

@keyframes wordFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.section-subtitle {
    font-size: 1.3rem;
    opacity: 0.8;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.feature-category {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    transition: var(--transition-epic);
    overflow: hidden;
    transform-style: preserve-3d;
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neon-gradient);
    opacity: 0;
    border-radius: 25px;
    transition: var(--transition-epic);
}

.feature-category:hover .category-bg {
    opacity: 0.05;
}

.feature-category:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: rgba(255, 255, 255, 0.3);
}

.category-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--neon-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    overflow: hidden;
}

.category-icon i {
    font-size: 2rem;
    color: var(--text-primary);
    z-index: 2;
}

.icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cyber-gradient);
    border-radius: 50%;
    opacity: 0.3;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.feature-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--cyber-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-count {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-accent);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.feature-category ul {
    list-style: none;
}

.feature-category li {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    color: var(--text-secondary);
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-epic);
}

.feature-category li:last-child {
    border-bottom: none;
}

.feature-category li:hover {
    color: var(--text-primary);
    transform: translateX(10px);
}

.feature-category li i {
    color: #27ae60;
    margin-right: 1rem;
    font-size: 1rem;
}

.category-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--neon-gradient);
    border-radius: 35px;
    filter: blur(30px);
    opacity: 0;
    transition: var(--transition-epic);
    cursor: pointer;
}

.feature-category:hover .category-glow {
    opacity: 0.2;
}

/* Pricing Section */
.pricing {
    padding: 0rem 0 8rem;
    position: relative;
}

.pricing-card {
    margin: 0 auto;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 4rem;
    overflow: hidden;
}

.pricing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cyber-gradient);
    opacity: 0.03;
    border-radius: 30px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-badge {
    position: relative;
    display: inline-block;
    background: var(--fire-gradient);
    color: var(--text-primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 2rem;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-explosion {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, #ff4757, #ffd700, #ff4757, #ffd700);
    animation: explosionSpin 3s linear infinite;
    opacity: 0.3;
}

@keyframes explosionSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pricing-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--cyber-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Orbitron', monospace;
}

.pricing-header p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.pricing-comparison-epic {
    margin: 3rem 0;
}

.price-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-before-epic {
    text-align: center;
    position: relative;
}

.price-before-epic .label {
    display: block;
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.price-before-epic .amount {
    font-size: 3rem;
    font-weight: 900;
    color: #ff4757;
    font-family: 'Orbitron', monospace;
    position: relative;
}

.price-slash {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 6px;
    background: #ff4757;
    transform: rotate(-20deg);
    animation: slashGrow 1.5s ease-out 1s both;
}

@keyframes slashGrow {
    0% { width: 0; left: 50%; }
    100% { width: 120%; left: -10%; }
}

.vs-divider {
    position: relative;
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Orbitron', monospace;
}

.vs-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--neon-gradient);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.5;
    animation: vsGlow 2s ease-in-out infinite alternate;
}

@keyframes vsGlow {
    0% { opacity: 0.5; transform: scale(0.8); }
    100% { opacity: 0.8; transform: scale(1.2); }
}

.price-now-epic {
    text-align: center;
    position: relative;
}

.price-now-epic .label {
    display: block;
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.price-now-epic .amount {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Orbitron', monospace;
    position: relative;
}

.price-shine {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: var(--gold-gradient);
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.4;
    animation: priceShine 3s ease-in-out infinite;
}

@keyframes priceShine {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 0.7; transform: scale(1.3); }
}

.savings-badge {
    position: absolute;
    top: -25px;
    right: -100px;
    background: var(--fire-gradient);
    color: var(--text-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    transform: rotate(20deg);
    animation: savingsBounce 2s ease-in-out infinite;
}

@keyframes savingsBounce {
    0%, 100% { transform: rotate(20deg) scale(1); }
    50% { transform: rotate(20deg) scale(1.1); }
}

/* Pricing Features */
.pricing-features {
    margin: 3rem 0;
}

.features-header {
    text-align: center;
    margin-bottom: 2rem;
}

.features-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--cyber-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: var(--transition-epic);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--neon-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.feature-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.feature-text span {
    font-size: 0.9rem;
    opacity: 0.7;
    color: var(--text-secondary);
}

/* Epic Purchase Button */
.mega-purchase {
    position: relative;
    width: 100%;
    padding: 2rem;
    border: none;
    border-radius: 80px;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-bounce);
    overflow: hidden;
    margin: 3rem 0 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-bg-epic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--fire-gradient);
    border-radius: 25px;
    z-index: 1;
}

.btn-content-epic {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--text-primary);
}

.btn-icon {
    font-size: 1.1rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-main {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Orbitron';
}

.btn-price {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 0.3rem;
}

.btn-particles-epic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.btn-glow-epic {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--fire-gradient);
    border-radius: 35px;
    filter: blur(20px);
    opacity: 0.6;
    z-index: 0;
    animation: btnGlowEpic 2s ease-in-out infinite alternate;
}

@keyframes btnGlowEpic {
    0% { opacity: 0.6; transform: scale(0.95); }
    100% { opacity: 0.9; transform: scale(1.05); }
}

.mega-purchase:hover {
    transform: translateY(-8px) scale(1.02);
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-accent);
    opacity: 0.9;
}

.guarantee-badge i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    opacity: 0.8;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--cyber-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', monospace;
}

.footer-logo .logo-icon {
    position: relative;
    margin-right: 1rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo i {
    font-size: 2rem;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 2;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    position: relative;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-epic);
    overflow: hidden;
}

.social-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neon-gradient);
    opacity: 0;
    border-radius: 50%;
    transition: var(--transition-epic);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-link:hover .social-glow {
    opacity: 0.3;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-epic);
    font-weight: 500;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.contact-info i {
    margin-right: 1rem;
    width: 20px;
    color: var(--text-accent);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-secondary);
}
.footer-section a{
    color: inherit;
    text-decoration: none;
    display: block;
}
.footer-section a:hover {
    text-decoration: underline;
}
.social-link i {
    width: 100%;
}
.social-links i:before{
    display: block;
    text-align: center;
    line-height: 48px;
    width: 100%;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .floating-card {
        width: 120px;
        height: 100px;
        padding: 1rem;
    }
    
    .center-orb {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(15, 15, 35, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 3rem;
        transition: var(--transition-epic);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mega-btn, .glass-btn {
        width: 100%;
        justify-content: center;
        padding: 1.5rem 16px;
        font-size: 17px;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .time-unit {
        min-width: 80px;
        height: 80px;
    }
    
    .time-value {
        font-size: 2.5rem;
    }
    
    .price-showcase {
        flex-direction: column;
        gap: 2rem;
    }
    
    .vs-divider {
        transform: rotate(90deg);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .center-orb {
        width: 120px;
        height: 120px;
    }
    
    .pricing-card {
        padding: 2.5rem 2rem;
    }
    .hero-visual{
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timer-container {
        padding: 2rem 1.2rem;
    }
    
    .time-unit {
        min-width: 60px;
        height: 60px;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 2rem 1.2rem;
    }
    
    .feature-category {
        padding: 2rem 1.2rem;
    }
    
    .mega-purchase {
        padding: 1.5rem 16px;
        font-size: 14px;
        border-radius: 80px;
        margin-top: 0;
    }
    
    .btn-main {
        font-size: 14px;
    }
    
    .btn-price {
        font-size: 0.9rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyber-gradient);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation Complete */
.loaded .loading-screen {
    opacity: 0;
    pointer-events: none;
}

/* Additional Epic Animations */
@keyframes epicEntrance {
    0% {
        transform: translateY(100px) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.epic-entrance {
    animation: epicEntrance 1s ease-out;
}

/* Particle Effects */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-gradient);
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 3s ease-out forwards;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}
@media screen and (max-width: 450px){
    .hero{
        display: block;
    }
    .hero-container{
        display: block;
        padding: 0px 15px;
    }
    .timer-header h3{
        font-size: 4.8vw;
    }
}
.contact-card{
    margin: 0 auto;
    margin-bottom: 100px;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border: 1px solid rgba
#ffffff1a
(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 4rem;
    overflow: hidden;
}
.contact-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cyber-gradient);
    opacity: 0.03;
    border-radius: 30px;
}
.contact-title{
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: var(--cyber-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Orbitron', monospace;
    text-align: center;
}
a.feature-item{
    color: inherit;
    text-decoration: none;
}
.contact-card .feature-item, #livechat{
   cursor: pointer;
}
section#contact{
    scroll-margin-top: 140px;
}
.tawk-bubble-container{
    display: none;
}
#footer-support:hover{
    text-decoration: underline;
    cursor: pointer;
}
@media screen and (max-width: 500px){
    #contact .feature-grid{
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
    .contact-card{
        padding: 1.5rem;
    }
}