:root {
    --primary-blue: #0066ff;
    --dark-blue: #001a4d;
    --light-blue: #00d4ff;
    --cyan: #00fff2;
    --purple: #6B4CE6;
    --dark-bg: #0a0e1a;
    --card-bg: #111827;
    --text-light: #e5e7eb;
    --text-gray: #9ca3af;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    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, #0a0e1a 0%, #001a4d 50%, #0a0e1a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--light-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--light-blue);
    animation: particleFloat 4s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 0.5s; }
.particle:nth-child(3) { left: 30%; animation-delay: 1s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1.5s; }
.particle:nth-child(5) { left: 50%; animation-delay: 2s; }
.particle:nth-child(6) { left: 60%; animation-delay: 0.3s; }
.particle:nth-child(7) { left: 70%; animation-delay: 0.8s; }
.particle:nth-child(8) { left: 80%; animation-delay: 1.3s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1.8s; }
.particle:nth-child(10) { left: 15%; animation-delay: 2.5s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

.loading-content {
    text-align: center;
    z-index: 1;
}

.loading-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: logoGlow 2s ease-in-out infinite;
    margin-bottom: 0.5rem;
}

.loading-subtitle {
    color: var(--light-blue);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.loading-spinner-container {
    margin: 2rem 0;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 212, 255, 0.1);
    border-top: 4px solid var(--light-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--light-blue);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.loading-progress {
    width: 300px;
    height: 4px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    margin: 2rem auto 1rem;
    overflow: hidden;
}

.loading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--light-blue), var(--primary-blue), var(--purple));
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

.loading-percentage {
    color: var(--light-blue);
    font-size: 1rem;
    font-weight: 600;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(0, 212, 255, 1));
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   BACKGROUND ANIMATION
   ============================================ */

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0e1a 0%, #001a4d 50%, #0a0e1a 100%);
    overflow: hidden;
}

.bg-animation::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(107, 76, 230, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

/* ============================================
   HEADER
   ============================================ */

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 1rem 5%;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--light-blue), var(--primary-blue));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover {
    color: var(--light-blue);
}

nav ul li a:hover::before {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, var(--light-blue), var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple));
    color: white;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--light-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: rgba(0, 102, 255, 0.1);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(0, 26, 77, 0.6));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1rem;
}

/* ============================================
   STORE SECTION
   ============================================ */

.store-section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.9rem 2rem;
    background: rgba(17, 24, 39, 0.6);
    border: 2px solid rgba(0, 102, 255, 0.3);
    color: var(--text-light);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.category-btn:hover, .category-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple));
    border-color: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

/* ============================================
   PRODUCTS GRID
   ============================================ */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* Custom Order Centered Style */
.custom-order-centered {
    max-width: 450px;
    width: 100%;
}

/* When products grid is in flex mode (Custom only) */
.products-grid[style*="display: flex"] {
    min-height: 400px;
    padding: 2rem 0;
}

.product-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(0, 26, 77, 0.4));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--light-blue);
    box-shadow: 0 25px 70px rgba(0, 102, 255, 0.4);
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.15);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--light-blue);
}

.product-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-tnd {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--light-blue);
}

.price-usd {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.btn-buy {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
}

.btn-buy:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
}

.btn-buy i {
    font-size: 1.1rem;
}

/* ============================================
   PURCHASE MODAL
   ============================================ */

.purchase-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(15px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.purchase-modal.active {
    opacity: 1;
    display: flex;
}

.purchase-content {
    background: linear-gradient(135deg, #0a0e1a 0%, #001a4d 100%);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    max-width: 550px;
    width: 90%;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 102, 255, 0.3), 0 0 100px rgba(0, 212, 255, 0.2);
    animation: modalSlideIn 0.4s ease-out;
    text-align: center;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-step {
    animation: fadeIn 0.3s ease;
}

.modal-step.hidden {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-purchase {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.close-purchase:hover {
    color: var(--light-blue);
    background: rgba(0, 212, 255, 0.1);
    transform: rotate(90deg);
    border-color: var(--light-blue);
}

.purchase-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--light-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.purchase-description {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.9;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
}

.payment-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 102, 255, 0.15);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--light-blue);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
}

.payment-method:hover .payment-icon {
    background: rgba(0, 102, 255, 0.25);
    border-color: var(--light-blue);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

.payment-name {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Input Group */
.input-group {
    margin: 2rem 0;
}

.discord-input {
    width: 100%;
    padding: 1.2rem;
    background: rgba(17, 24, 39, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.discord-input:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.input-hint {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 0.8rem;
    text-align: left;
    line-height: 1.5;
}

.input-hint i {
    color: var(--light-blue);
    margin-right: 0.3rem;
}

/* Button Group */
.button-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-back, .btn-verify {
    flex: 1;
    padding: 1.2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-back {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--light-blue);
    transform: translateY(-2px);
}

.btn-verify {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple));
    color: white;
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
}

.btn-verify:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.btn-verify:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success Animation */
.success-animation {
    margin-bottom: 1.5rem;
}

.success-animation i {
    font-size: 5rem;
    color: #00ff88;
    animation: successPulse 1s ease;
}

@keyframes successPulse {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

/* Ticket Details */
.ticket-details {
    margin: 2rem 0;
}

.ticket-info-box {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-label i {
    color: var(--light-blue);
}

.info-value {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Discord Link Button */
.discord-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    border: none;
    cursor: pointer;
}

.discord-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
    background: linear-gradient(135deg, #00fff2 0%, #0066ff 100%);
}

.discord-link i {
    font-size: 1.4rem;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: rgba(17, 24, 39, 0.8);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 3rem 5%;
    text-align: center;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.socials a {
    width: 50px;
    height: 50px;
    background: rgba(0, 102, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-blue);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.socials a:hover {
    background: rgba(0, 102, 255, 0.2);
    border-color: var(--light-blue);
    transform: translateY(-5px);
}

footer p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 4rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 3%;
    }

    nav ul {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 6rem 5% 3rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .payment-methods {
        gap: 1rem;
    }

    .button-group {
        flex-direction: column;
    }

    .purchase-content {
        padding: 2.5rem 1.5rem;
    }

    .purchase-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .payment-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .discord-link {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .loading-title {
        font-size: 3rem;
    }

    .loading-progress {
        width: 250px;
    }

    nav ul {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .category-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.hidden {
    display: none !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
}

/* Selection Color */
::selection {
    background: rgba(0, 212, 255, 0.3);
    color: var(--text-light);
}

::-moz-selection {
    background: rgba(0, 212, 255, 0.3);
    color: var(--text-light);
}