/* ==================== Global Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Color Palette */
    --primary-dark: #0F172A;
    --primary-light: #E0F7FF;
    --primary: #38BDF8; /* main cyan-blue */
    --secondary: #0EA5E9; /* darker blue */
    --accent: #60A5FA; /* light blue */
    --white: #FFFFFF;
    --sky-light: #E0F7FF;
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --text-secondary: rgba(255,255,255,0.7);

    /* Backwards compatibility for existing classes */
    --blue-neon: var(--primary);
    --blue-neon-light: var(--accent);
    --cyan-neon: var(--secondary);
    --cyan-neon-light: #22D3EE;
    --purple-neon: #8B5CF6;
    --pink-neon: #EC4899;
    --green-neon: #10B981;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-dark);
    color: var(--white);
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Particle background removed; using static image instead */
#particle-background {
    display: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
    }
}

@keyframes floatLeaves {
    0% {
        transform: translateY(0px) rotateZ(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotateZ(360deg);
        opacity: 0;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 16px rgba(56, 189, 248, 0.8));
    }
}

@keyframes float-clouds {
    0% { transform: translateX(-10%) translateY(0px); }
    50% { transform: translateX(10%) translateY(12px); }
    100% { transform: translateX(-10%) translateY(0px); }
}

/* Floating clouds animation */
.floating-cloud {
    position: absolute;
    opacity: 0.08;
    pointer-events: none;
}

.floating-cloud.cloud-1 {
    top: 10%;
    left: -5%;
    font-size: 120px;
    animation: float-clouds 30s ease-in-out infinite;
    animation-delay: 0s;
}

.floating-cloud.cloud-2 {
    top: 20%;
    right: 5%;
    font-size: 100px;
    animation: float-clouds 25s ease-in-out infinite;
    animation-delay: 5s;
}

.floating-cloud.cloud-3 {
    bottom: 20%;
    left: 10%;
    font-size: 140px;
    animation: float-clouds 35s ease-in-out infinite;
    animation-delay: 2s;
}

/* ==================== Cloud Background ==================== */
.cloud-bg {
    display: none;
}

/* Cloud Panel - Premium Glass Card Style */
.cloud-panel {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(14, 165, 233, 0.04));
    color: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
}

.cloud-panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 50px rgba(56, 189, 248, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
}

.logo-floating {
    animation: floatLogo 6s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.5));
}

@keyframes floatLogo {
    0% { 
        transform: translateY(0px) scale(1); 
        filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.4));
    }
    50% { 
        transform: translateY(-15px) scale(1.05) rotate(-1deg); 
        filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.8));
    }
    100% { 
        transform: translateY(0px) scale(1); 
        filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.4));
    }
}


/* ==================== Loading Screen ==================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 0.5s ease-in-out 2.5s forwards;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--glass-border);
    border-top-color: var(--blue-neon);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        pointer-events: none;
    }
}

/* ==================== Navigation ==================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, filter 0.3s ease;
    font-family: 'Outfit', 'Poppins', sans-serif;
}

.logo-image {
    height: 45px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.3));
}

.logo-text:hover {
    transform: scale(1.05);
}

.logo-text:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.6));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-item a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

.nav-item a:hover {
    color: var(--primary);
}

.nav-item a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--green-neon);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 4px var(--green-neon); }
    50% { opacity: 0.7; box-shadow: 0 0 8px var(--green-neon); }
}

.store-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(56, 189, 248, 0.6);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
    padding: 4rem 2rem 6rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.75));
    z-index: 1;
    backdrop-filter: blur(2px);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/background.webp') center center / cover no-repeat;
    opacity: 1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    animation: slideInUp 1s ease;
    animation-fill-mode: both;
}

.logo-image {
    height: 100px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    animation: floatLogo 6s ease-in-out infinite;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 0 30px rgba(56, 189, 248, 0.6), 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    line-height: 1.2;
    font-family: 'Outfit', 'Poppins', sans-serif;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2.5rem 0 2rem;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 50px rgba(56, 189, 248, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.btn-secondary:hover {
    background: rgba(56, 189, 248, 0.15);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 40px rgba(56, 189, 248, 0.6);
    border-color: var(--accent);
}

.hero-stats {
    display: none;
}

.stat-item {
    text-align: center;
}

.stat-item .value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-item .label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==================== IP Display ==================== */
.ip-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideInUp 1s ease 0.2s both;
}

.ip-display {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
    letter-spacing: 1px;
}

.copy-ip-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.copy-ip-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 40px rgba(56, 189, 248, 0.6);
}

/* ==================== Glassmorphism Cards ==================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.2), transparent);
    transition: left 0.5s ease;
}

.glass-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.glass-card:hover::before {
    left: 100%;
}

/* ==================== Featured Products Section ==================== */
.section {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
    font-family: 'Outfit', 'Poppins', sans-serif;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.2rem;
    font-weight: 400;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    position: relative;
    height: 100%;
}

.rank-card {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(14, 165, 233, 0.04));
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.rank-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.25), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.rank-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 0 50px rgba(56, 189, 248, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.rank-card:hover::before {
    opacity: 1;
    top: -30%;
    right: -30%;
}

.rank-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.rank-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', 'Poppins', sans-serif;
}

.rank-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.rank-price {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rank-features {
    flex: 1;
    text-align: left;
    margin-bottom: 1.5rem;
}

.rank-features li {
    list-style: none;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

.rank-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.buy-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.buy-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 40px rgba(56, 189, 248, 0.6);
}

/* ==================== Features Section ==================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(14, 165, 233, 0.04));
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-family: 'Outfit', 'Poppins', sans-serif;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==================== Stats Section ==================== */
.stats-section {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(14, 165, 233, 0.04));
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 3.5rem 2rem;
    margin: 3rem 0;
    backdrop-filter: blur(10px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 0 35px rgba(56, 189, 248, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
    font-family: 'Outfit', 'Poppins', sans-serif;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 500;
}

/* ==================== Testimonials Section ==================== */
.testimonials-container {
    position: relative;
    overflow: hidden;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.testimonial-name {
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.testimonial-rank {
    color: var(--primary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.testimonial-review {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-style: italic;
}

.testimonial-rating {
    color: #FDB022;
}

/* ==================== Crate Cards ==================== */
.crate-card {
    position: relative;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(14, 165, 233, 0.04));
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.crate-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    animation: shine 3s infinite;
}

.crate-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 0 50px rgba(56, 189, 248, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.crate-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: spin-slow 4s linear infinite;
}

.crate-card:hover .crate-icon {
    animation: spin-fast 1s linear infinite;
}

.crate-rarity {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rarity-common {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--green-neon);
    color: var(--green-neon);
}

.rarity-rare {
    background: rgba(56, 189, 248, 0.2);
    border-color: var(--primary);
    color: var(--primary);
}

.rarity-epic {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--purple-neon);
    color: var(--purple-neon);
}

.rarity-mythic {
    background: rgba(236, 72, 153, 0.2);
    border-color: var(--pink-neon);
    color: var(--pink-neon);
}

.crate-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', 'Poppins', sans-serif;
}

.crate-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.crate-price {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.crate-rewards {
    flex: 1;
    text-align: left;
    margin-bottom: 1.5rem;
}

.crate-rewards li {
    list-style: none;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

.crate-rewards li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

@keyframes spin-slow {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

@keyframes spin-fast {
    from { transform: rotateY(0deg) scale(1.1); }
    to { transform: rotateY(360deg) scale(1.1); }
}

@keyframes shine {
    0% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(100%); }
}

/* ==================== Animations ==================== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(50px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==================== Scroll Animations ==================== */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

/* ==================== Footer ==================== */
.footer {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(14, 165, 233, 0.05));
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    margin-top: 5rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .logo-image {
        height: 80px;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        position: absolute;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.95);
        top: 70px;
        left: 0;
        right: 0;
        padding: 1rem;
        border-bottom: 1px solid var(--glass-border);
        gap: 0.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .ip-section {
        flex-direction: column;
    }

    .ip-display,
    .copy-ip-btn {
        width: 100%;
        text-align: center;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }

    .section {
        padding: 2.5rem 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-right {
        gap: 1rem;
    }

    .nav-status {
        display: none;
    }

    .store-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0.8rem 1rem;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .logo-image {
        height: 60px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        gap: 0.8rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .rank-price {
        font-size: 2rem;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-box {
        padding: 1rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .feature-icon,
    .rank-icon,
    .crate-icon {
        font-size: 2.5rem;
    }

    .rank-name,
    .crate-name {
        font-size: 1.5rem;
    }

    .ip-display {
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
    }

    .copy-ip-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
}
