/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary-bg: #0a0a0a;
    --secondary-bg: #111111;
    --card-bg: #1a1a1a;
    --accent-1: #0037ff;
    --accent-2: #f80f07;
    --accent-3: #7700ff;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --border-color: #333333;
    --success: #00ff88;
    --warning: #ffaa00;
    --error: #ff3366;
    --header-height:15%;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    --gradient-secondary: linear-gradient(135deg, var(--accent-3), var(--accent-2));
    --gradient-dark: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --glow-primary: 0 0 20px rgba(0, 238, 255, 0.3);
    --glow-secondary: 0 0 20px rgba(255, 0, 170, 0.3);
    
    /* Typography */
    --font-primary: 'Oxanium', sans-serif;
    --font-secondary: 'Orbitron', sans-serif;
    --font-accent: 'Rajdhani', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Loading Screen ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    width:100%-;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--accent-1);
}
.loading-logo img{
    width: 100%;
    filter:drop-shadow(
    drop-shadow(0 0 4px rgba(17, 0, 255, 0.9))
    drop-shadow(0 0 12px rgba(255, 0, 0, 0.9)));
}

.loading-logo i {
    margin-right: 10px;
    font-size: 2.5rem;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width:100%; }
}

/* ===== Header Styles ===== */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    flex-shrink: 0;
    width: 30%;
}
.logo img {
    width: 200px; /* Slightly smaller for balance */
    height: auto;
    display: block;
}

.logo a {
    display: flex;
    align-items: center;
    width: 100%;
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-primary);
}

.gear-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 5px;
}

.logo i {
    color: var(--accent-1);
    margin-right: 10px;
    font-size: 1.8rem;
}

/* Navigation */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-lg);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin-bottom: 0.5rem;
    list-style-type: none;
}
.dropdown-menu li:last-child {
    margin-bottom: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
    background: rgba(0, 238, 255, 0.1);
    color: var(--accent-1);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.action-btn {
    position: relative;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.action-btn:hover {
    color: var(--accent-1);
}

.action-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-2);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-dropdown {
    position: relative;
}

.user-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.user-btn:hover {
    color: var(--accent-1);
}

.user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-lg);
}

.user-dropdown:hover .user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 4px;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}

.user-menu-item:hover {
    background: rgba(0, 238, 255, 0.1);
    color: var(--accent-1);
}

.admin-link {
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
}


/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    /*overflow: hidden;*/
    padding-top: 8%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}
.hero-slide img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: blur(1px); */
    z-index: 1;
}
.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--primary-bg);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-line.accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-bg);
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 50px rgba(0, 238, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-1);
    color: var(--accent-1);
    box-shadow: var(--glow-primary);
}

.btn-outline {
    background: transparent;
    color: var(--accent-1);
    border: 2px solid var(--accent-1);
}

.btn-outline:hover {
    background: var(--accent-1);
    color: var(--primary-bg);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-1);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-product {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.floating-product img {
    max-width: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: var(--gradient-primary);
    border-radius: 30px;
    filter: blur(40px);
    opacity: 0.3;
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.1); }
}




/* Hero Slider Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
    pointer-events: none;
}

.slider-nav-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.slider-nav-btn:hover {
    background: var(--accent-1);
    color: var(--primary-bg);
    border-color: var(--accent-1);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

.hero-slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--text-secondary);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-dot.active {
    background: var(--accent-1);
    border-color: var(--accent-1);
    transform: scale(1.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: var(--border-color);
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}


/* ================= Responsive Breakpoints ================= */

/* Narrow screens (tablet) */
/* Tablets */
@media (max-width: 992px) {
  .hero {
      min-height: 550px;
      height: auto;
      padding: 80px 0;
  }

  .hero-slide .container {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
      justify-content: center;
  }

  .hero-visual {
      order: -1; /* image first */
      display: flex;
  }

  .floating-product img {
      max-width: 350px;
  }
}

/* Phones */
@media (max-width: 600px) {
  .hero {
      min-height: 520px;
      padding: 60px 0;
  }

  .floating-product img {
      max-width: 260px;
  }

  .hero-title {
      font-size: 2rem;
      line-height: 1.2;
  }

  .hero-description {
      font-size: 0.9rem;
  }

  .hero-actions {
      flex-direction: column;
      width: 100%;
  }

  .btn {
      width: 100%;
      justify-content: center;
  }
}



/* ===== Promotional Banners ===== */
.promo-banners {
    padding: var(--section-padding);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(12px); /* For Safari */
    background: rgba(255, 255, 255, 0.05); /* Light tint, adjust for dark mode */
    border-radius: 12px;
}


.banner-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}


/* ===== Categories Section ===== */
.categories-section {
    padding: 6rem 0 3rem;
    margin-top: 5%;
    margin-bottom: -5%;
}


.categories-swiper-container {
    position: relative;
    margin-top: 2rem;
}

.categories-swiper .swiper-slide {
    width: auto;
    display: flex;
    justify-content: center;
}

/* Card Wrapper */
.category-card {
    width: 260px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 12px;
    border-radius: 14px;
    transition: 0.3s;
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
}

/* Image Container */
.category-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Image Style */
.category-image img {
    width: 90%;
    height: auto;
    object-fit: contain;
    transition: 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

/* Category Glow */
.category-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,255,255,0.25) 0%, transparent 70%);
    filter: blur(25px);
    opacity: 0;
    transition: 0.3s ease-in-out;
    z-index: -1;
}

.category-card:hover .category-glow {
    opacity: 0.5;
}

/* Swiper Navigation Arrows */
.categories-prev, 
.categories-next {
    color: white;
    font-size: 22px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.categories-prev:hover, 
.categories-next:hover {
    background: rgba(255,255,255,0.3);
}

/* ===== Responsive Breakpoints ===== */
@media (max-width: 1024px) {
    .category-card { width: 230px; }
    .category-image { height: 150px; }
}

@media (max-width: 768px) {
    .category-card { width: 200px; }
    .category-image { height: 140px; }
}

@media (max-width: 576px) {
    .categories-section {
        padding-top: 4rem;
    }

    .category-card { 
        width: 160px;
        padding: 8px;
    }

    .category-image { height: 120px; }

    .category-image img {
        width: 85%;
    }

    .categories-prev, .categories-next {
        display: none; /* hide arrows on small screen */
    }
}

@media (max-width: 400px) {
    .category-card { width: 140px; }
    .category-image { height: 110px; }
}
    /* ===== End Categories Swiper Styles ===== */


.banner-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.banner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.banner-card.large {
    grid-row: span 2;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    flex: 1;
}

.banner-card h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-card h4 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.banner-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--primary-bg);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
}

.banner-btn:hover {
    transform: translateX(5px);
    box-shadow: var(--glow-primary);
}

.banner-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-card.large .banner-image {
    width: 60%;
}

.banner-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    filter: blur(20px);
    z-index: 1;
}

/* ===== Gaming Stats ===== */
.gaming-stats {
    padding: var(--section-padding);
    background: var(--primary-bg);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-1);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-bg);
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-1);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Newsletter ===== */
.newsletter-section {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.newsletter-content {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.newsletter-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: 1;
}

.newsletter-text {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.newsletter-text h3 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.newsletter-form {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    background: var(--primary-bg);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    transition: all var(--transition-fast);
}

.input-group:focus-within {
    border-color: var(--accent-1);
    box-shadow: var(--glow-primary);
}

.input-group input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-family: var(--font-primary);
}

.input-group input::placeholder {
    color: var(--text-muted);
}

.input-group button {
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--primary-bg);
    border: none;
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.input-group button:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-primary);
}





/* --- Login/Register Form Styles --- */
.login-register-section {
    padding: 4rem 1rem; /* Added horizontal padding */
    background: var(--primary-bg);
    margin-top:5%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--header-height)); /* Full height minus header */
    box-sizing: border-box; /* Include padding in height */
}

.form-container {
    width: 100%;
    max-width: 450px;
    background: var(--secondary-bg);
    padding: 2rem; /* Adjusted padding */
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), var(--glow-primary);
}

.form-container h1 {
    font-family: var(--font-secondary);
    text-align: center;
    font-size: 2rem;
    margin-top: 0; /* Removed top margin */
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 5px;
}

.form-group {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"] {
    width: 100%;
    padding: 0.8rem 1rem;
    box-sizing: border-box; /* Ensure padding doesn't break width */
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: var(--primary-bg);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(0, 55, 255, 0.25);
}

.form-submit-btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 6px;
    background: var(--gradient-primary);
    color: #fff;
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
    filter: brightness(1.1);
}

.form-switch-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-switch-link a {
    color: var(--accent-1);
    font-weight: 600;
    text-decoration: none;
}
.form-switch-link a:hover {
    text-decoration: underline;
}

/* Error/Success Messages */
.form-message {
    padding: 0.8rem 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
    font-size: 0.9rem;
}
.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid var(--danger);
    color: var(--danger);
}
.form-message.success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}


/* --- NEW: Google Sign-in Button Styles --- */
.google-signin-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-secondary);
    margin: 1.5rem 0;
    font-size: 0.8rem;
    font-weight: 500;
}
.google-signin-divider::before,
.google-signin-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}
.google-signin-divider:not(:empty)::before {
    margin-right: .5em;
}
.google-signin-divider:not(:empty)::after {
    margin-left: .5em;
}

.google-signin-btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: #fff; /* Google's recommended background */
    color: #333; /* Google's recommended text color */
    font-family: var(--font-primary); /* Use 'Inter' or your main font */
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem; /* Space between icon and text */
    text-decoration: none; /* Make it look like a button even if it's an <a> */
}
.google-signin-btn:hover {
    background: #f1f1f1;
    border-color: #ccc;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.google-signin-btn img {
    width: 20px; /* Google icon size */
    height: 20px;
}
/* --- End Google Button Styles --- */





/* ===== Footer ===== */
.footer {
    background: var(--primary-bg);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}
.footer-logo-img {
    width: 160px; /* adjust size as needed */
    height: auto;
    object-fit: contain;
}

.footer-logo i {
    color: var(--accent-1);
    margin-right: 10px;
    font-size: 1.8rem;
}

.footer-map iframe{
    border-radius: 20px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-1);
    color: var(--primary-bg);
    border-color: var(--accent-1);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-1);
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.contact-item i {
    color: var(--accent-1);
    width: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .banner-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .banner-card.large {
        grid-column: span 2;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 1rem 0;
    }
    


    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-bg);
        transition: left var(--transition-fast);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
        background-color: #000;
    }
    
    .nav-links {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0.5rem 0 0 1rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-slide .container {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 50px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-visual {
        margin-top: 2rem;
    }
    
    .floating-product img {
        max-width: 300px;
    }
    
    .banner-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-card.large {
        grid-column: span 1;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .newsletter-content {
        padding: 2rem;
    }
    
    .newsletter-text h3 {
        font-size: 2rem;
    }
    
    .input-group {
        flex-direction: column;
        border-radius: 25px;
    }
    
    .input-group input {
        padding: 1rem;
    }
    
    .input-group button {
        padding: 1rem;
        border-radius: 0 0 25px 25px;
    }
}
/* Explore Section Layout */
.explore-section {
    padding: 100px 0;
    position: relative;
}

/* Explore Grid */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    padding: 20px;
    width: 100%;
    max-width: 1300px;
    margin-inline: auto;
}

/* Explore Items */
.explore-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(15, 15, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px;
    backdrop-filter: blur(8px);
    transition: all 0.35s ease;
}

/* Hover Effects */
.explore-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 25px rgba(0, 255, 170, 0.25);
}

/* Image Area */
.explore-item-image {
    width: 100%;
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    box-shadow: inset 0 0 40px rgba(0, 255, 170, 0.15);
}

.explore-item-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/* Content */
.explore-item-content {
    padding-top: 18px;
    text-align: left;
}

.explore-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}


.explore-item-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    color: #ddd;
}

/* Neon glow on hover */
.explore-item:hover .explore-item-image {
    box-shadow: 0 0 22px rgba(0, 255, 170, 0.6);
    filter: brightness(1.1);
}

/* Tablet */
@media (max-width: 992px) {
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.4rem;
    }
}

/* Mobile */
/* Mobile */
@media (max-width: 576px) {
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .explore-item-image {
        height: 150px;
    }

    .explore-item-title {
        font-size: 1rem;
    }

    .explore-item-desc {
        font-size: 0.8rem;
    }
}




/* ===== Video Showcase Section ===== */
.video-showcase {
    width: 100%;
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-content {
    width: 100%;
    position: relative;
    z-index: 2;
}

.video-player-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    /* background: var(--card-bg); */
    border: 1px solid var(--border-color);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 700px;
    background: #000;
    overflow: hidden;
}

.gaming-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Add these styles to your existing CSS */

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 238, 255, 0.2) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 1;
    cursor: none; /* Hide default cursor when over video */
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Hide overlay by default when video is playing, show on hover */
.video-wrapper:hover .video-overlay:not(.hidden) {
    opacity: 1;
}

/* Play button styles for hover effect */
.play-button.hover-mode {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease-out;
    pointer-events: none; /* Allow clicks to pass through to video */
    z-index: 10;
}

/* Hide play button initially in hover mode */
.play-button.hover-mode {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}

/* Show play button on video wrapper hover */
.video-wrapper:hover .play-button.hover-mode {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Play button glow effect on hover */
.video-wrapper:hover .play-button {
    box-shadow: 
        0 15px 40px rgba(0, 238, 255, 0.6),
        0 0 30px rgba(255, 0, 170, 0.5),
        0 0 60px rgba(0, 238, 255, 0.3);
}

/* Video title animation on hover */
.video-wrapper:hover .video-title {
    transform: translateY(-10px);
}

.video-title {
    transition: transform 0.3s ease;
}

/* Custom cursor for video area */
.video-wrapper {
    cursor: none;
}

.video-wrapper:hover {
    cursor: none;
}

.video-title h3 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-title p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    opacity: 0.9;
}

/* Video Controls */
.video-controls {
    background: var(--card-bg);
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
}

.control-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.control-btn {
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.control-btn:hover {
    background: var(--accent-1);
    color: var(--primary-bg);
    border-color: var(--accent-1);
    transform: scale(1.1);
}

.progress-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.1s ease;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}






/* Video Features */
.video-features {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.video-feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.video-feature:hover {
    transform: translateY(-5px);
    border-color: var(--accent-1);
    box-shadow: var(--glow-primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-bg);
    flex-shrink: 0;
}

.feature-content h4 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Fullscreen styles */
.video-wrapper:-webkit-full-screen {
    width: 100%;
    height: 100%;
}

.video-wrapper:-ms-fullscreen {
    width: 100%;
    height: 100%;
}

.video-wrapper:fullscreen {
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-wrapper {
        height: 400px;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-button i {
        font-size: 1.8rem;
    }
    
    .video-title h3 {
        font-size: 2rem;
    }
    
    .video-title p {
        font-size: 1.1rem;
    }
    
    .video-controls {
        padding: 1rem;
    }
    
    .control-group {
        gap: 1rem;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .video-feature {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .feature-content h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .video-wrapper {
        height: 300px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
    
    .video-title h3 {
        font-size: 1.8rem;
    }
    
    .video-title p {
        font-size: 1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .control-group {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .progress-container {
        order: 3;
        flex-basis: 100%;
        margin-top: 1rem;
    }
}

/* Logo section */

.logo-section {
  padding: 50px 0;
  text-align: center;
}

.logo-section .section-title {
  font-size: 30px;
  margin-bottom: 25px;
  color: #fff;
}

.logo-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slider img {
  width: 150px;
  height: auto;
  opacity: 0.8;
  transition: 0.3s ease;
  filter: grayscale(100%);
}

.logo-slider img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Navigation buttons */
.logo-prev, .logo-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  color: #fff;
  padding: 8px 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  transition: .3s;
}

.logo-prev:hover, .logo-next:hover {
  background: #f0a500;
  color: #000;
}

.logo-prev { left: 0; }
.logo-next { right: 0; }



/* --- NEW: Floating WhatsApp Button Styles --- */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999; /* High, but below modals (which are 10000+) */
    
    background-color: #25D366; /* Official WhatsApp Green */
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    font-size: 2rem; /* Icon size */
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    color: #FFF;
    text-decoration: none;
}

/* Responsive: Hide on very small screens or move it */
@media (max-width: 480px) {
    .whatsapp-floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        left: 15px;
    }
}
/* --- END NEW --- */



