
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark-bg: #0B0B13;
  --primary-accent: #1E90FF;
  --secondary-accent: #B744B8;
  --light-text: #FFFFFF;
  --muted-text: #AAAAAA;
  --success: #2ECC71;
  --error: #E74C3C;
}

body {
  font-family: 'Orbitron', sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

  /* VDS Pricing Section */
        .vds-pricing-section {
            background-color: #0B0B13;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }



        .vds-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        /* Header */
        .vds-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .vds-title {
            font-size: 2.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            color: var(--light-text);
            text-shadow: 0 0 20px rgba(30, 144, 255, 0.3);
        }

        .vds-subtitle {
            color: var(--primary-accent);
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 30px;
        }

        /* Countdown Timer Section */
        .countdown-section {
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
            border: 2px solid rgba(231, 76, 60, 0.3);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
            animation: pulseGlow 3s infinite;
        }

        .countdown-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #E74C3C, #F39C12, #E74C3C);
            background-size: 200% 100%;
            animation: gradientShift 2s ease-in-out infinite;
        }

        .countdown-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: #E74C3C;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
        }

        .countdown-subtitle {
            color: var(--muted-text);
            font-size: 1.1rem;
            margin-bottom: 25px;
        }

        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }

        .countdown-unit {
            background: rgba(0, 0, 0, 0.4);
            border: 2px solid rgba(231, 76, 60, 0.3);
            border-radius: 10px;
            padding: 15px 20px;
            min-width: 80px;
            text-align: center;
            position: relative;
            backdrop-filter: blur(10px);
        }

        .countdown-number {
            font-size: 2rem;
            font-weight: 800;
            color: #E74C3C;
            display: block;
            text-shadow: 0 0 15px rgba(231, 76, 60, 0.7);
        }

        .countdown-label {
            font-size: 0.8rem;
            color: var(--muted-text);
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
            margin-top: 5px;
        }

        .countdown-urgency {
            color: #F39C12;
            font-weight: 600;
            font-size: 0.95rem;
            animation: flash 2s infinite;
        }

        @keyframes pulseGlow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(231, 76, 60, 0.2);
            }
            50% {
                box-shadow: 0 0 30px rgba(231, 76, 60, 0.4);
            }
        }

        @keyframes gradientShift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes flash {
            0%, 50%, 100% {
                opacity: 1;
            }
            25%, 75% {
                opacity: 0.7;
            }
        }

        /* Clean Pricing Toggle */
        .pricing-toggle-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-bottom: 50px;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .toggle-button {
            padding: 15px 30px;
            background: transparent;
            color: var(--muted-text);
            border: 2px solid rgba(30, 144, 255, 0.3);
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            min-width: 140px;
            text-align: center;
            backdrop-filter: blur(5px);
        }

        .toggle-button:hover {
            border-color: var(--primary-accent);
            color: var(--light-text);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(30, 144, 255, 0.2);
        }

        .toggle-button.active {
            background: rgba(30, 144, 255, 0.1);
            border-color: var(--primary-accent);
            color: var(--primary-accent);
            box-shadow: 
                0 0 20px rgba(30, 144, 255, 0.3),
                inset 0 1px 0 rgba(30, 144, 255, 0.1);
        }

        .toggle-button.active::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(30, 144, 255, 0.05), transparent);
            border-radius: 6px;
            animation: activeShimmer 2s ease-in-out infinite;
        }

        @keyframes activeShimmer {
            0%, 100% {
                transform: translateX(-100%);
                opacity: 0;
            }
            50% {
                transform: translateX(100%);
                opacity: 1;
            }
        }

        .save-badge {
            background: linear-gradient(135deg, var(--success), #27AE60);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            animation: pulse 2s infinite;
            position: relative;
            z-index: 3;
            box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
            display: none; /* Hidden since we removed it */
        }

        /* Pricing Cards Grid */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 80px;
        }

        /* Individual Plan Card */
        .plan-card {
            background: rgba(20, 25, 35, 0.8);
            border: 2px solid rgba(30, 144, 255, 0.15);
            border-radius: 15px;
            padding: 30px 25px;
            position: relative;
            transition: all 0.4s ease;
            overflow: visible;
            backdrop-filter: blur(10px);
        }

        .plan-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .plan-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-accent);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(30, 144, 255, 0.2);
        }

        .plan-card:hover::before {
            opacity: 1;
        }

        .plan-card.popular {
            border-color: var(--primary-accent);
            background: rgba(30, 144, 255, 0.05);
            transform: scale(1.02);
        }

        .plan-card.popular::before {
            opacity: 1;
        }

        /* Discount Badge */
        .discount-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background: linear-gradient(135deg, var(--error), #C0392B);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            box-shadow: 0 3px 10px rgba(231, 76, 60, 0.4);
            z-index: 3;
        }

        .popular-badge {
            position: absolute;
            top: -10px;
            left: 20px;
            background: linear-gradient(135deg, var(--success), #27AE60);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            box-shadow: 0 3px 10px rgba(46, 204, 113, 0.4);
            z-index: 3;
        }

        /* Plan Header */
        .plan-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .plan-icon {
            font-size: 2.5rem;
            color: var(--primary-accent);
            margin-bottom: 15px;
            display: block;
        }

        .plan-name {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .plan-tagline {
            color: var(--muted-text);
            font-size: 0.9rem;
        }

        /* Pricing Display */
        .pricing-display {
            text-align: center;
            margin-bottom: 30px;
            padding: 20px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            border: 1px solid rgba(30, 144, 255, 0.1);
        }

        .original-price {
            font-size: 1.1rem;
            color: var(--muted-text);
            text-decoration: line-through;
            margin-bottom: 5px;
        }

        .current-price {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-accent);
            margin-bottom: 5px;
        }

        .price-period {
            color: var(--muted-text);
            font-size: 0.9rem;
        }

        .first-months-price {
            background: rgba(30, 144, 255, 0.1);
            color: var(--primary-accent);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 10px;
            display: inline-block;
        }

        /* Specs List */
        .specs-list {
            margin-bottom: 25px;
        }

        .spec-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.95rem;
        }

        .spec-item:last-child {
            border-bottom: none;
        }

        .spec-icon {
            color: var(--success);
            font-size: 1.1rem;
            width: 20px;
        }

        .spec-text {
            flex: 1;
            font-weight: 500;
        }

        /* Trust Element */
        .trust-element {
            text-align: center;
            background: rgba(30, 144, 255, 0.1);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 25px;
            border: 1px solid rgba(30, 144, 255, 0.2);
        }

        .trust-text {
            color: var(--primary-accent);
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* CTA Button */
        .cta-button {
            width: 100%;
            background: linear-gradient(135deg, var(--primary-accent), #0066CC);
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(30, 144, 255, 0.5);
            background: linear-gradient(135deg, #0066CC, var(--primary-accent));
        }

        /* Performance Comparison Section */
        .performance-section {
            margin-top: 60px;
            padding-top: 60px;
            border-top: 1px solid rgba(30, 144, 255, 0.1);
        }

        .performance-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .performance-title {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .performance-subtitle {
            color: var(--muted-text);
            font-size: 1.1rem;
        }

        /* Performance Bars */
        .performance-bars {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 800px;
            margin: 0 auto;
        }

        .performance-bar {
            text-align: center;
            position: relative;
        }

        .bar-container {
            height: 200px;
            display: flex;
            align-items: end;
            justify-content: center;
            margin-bottom: 20px;
            position: relative;
        }

        .bar {
            width: 60px;
            border-radius: 8px 8px 0 0;
            position: relative;
            transition: all 0.6s ease;
            animation: growBar 1.5s ease-out;
        }

        .bar.weak {
            height: 25%;
            background: linear-gradient(to top, #E74C3C, #C0392B);
            box-shadow: 0 0 20px rgba(231, 76, 60, 0.4);
        }

        .bar.good {
            height: 60%;
            background: linear-gradient(to top, #F39C12, #E67E22);
            box-shadow: 0 0 20px rgba(243, 156, 18, 0.4);
        }

        .bar.extreme {
            height: 100%;
            background: linear-gradient(to top, var(--success), #27AE60);
            box-shadow: 0 0 20px rgba(46, 204, 113, 0.4);
        }

        .bar-label {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            font-weight: 700;
            font-size: 1.1rem;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .bar-description {
            margin-bottom: 10px;
        }

        .bar-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .bar-specs {
            color: var(--muted-text);
            font-size: 0.9rem;
        }

        .bar-price {
            background: rgba(30, 30, 40, 0.6);
            padding: 8px 12px;
            border-radius: 15px;
            font-size: 0.85rem;
            border: 1px solid rgba(30, 144, 255, 0.2);
        }

        @keyframes growBar {
            from {
                height: 0;
            }
            to {
                height: var(--final-height);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .performance-bars {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .vds-title {
                font-size: 2.2rem;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .performance-bars {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .pricing-toggle-container {
                flex-direction: column;
                gap: 15px;
                max-width: 250px;
            }
            
            .toggle-button {
                width: 100%;
                min-width: auto;
                padding: 12px 20px;
            }
            
            .plan-card {
                padding: 25px 20px;
            }

            .countdown-timer {
                gap: 15px;
            }
            
            .countdown-unit {
                min-width: 70px;
                padding: 12px 15px;
            }
            
            .countdown-number {
                font-size: 1.6rem;
            }
            
            .countdown-title {
                font-size: 1.4rem;
            }
        }

        /* Sticky CTA for Mobile */
        .sticky-cta {
            display: none;
        }

        @media (max-width: 768px) {
            .sticky-cta {
                position: fixed;
                bottom: 20px;
                left: 20px;
                right: 20px;
                background: linear-gradient(135deg, var(--primary-accent), #0066CC);
                color: white;
                border: none;
                padding: 15px;
                border-radius: 10px;
                font-size: 1rem;
                font-weight: 700;
                text-transform: uppercase;
                cursor: pointer;
                z-index: 1000;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
                display: none;
            }

            .sticky-cta.show {
                display: block;
                animation: slideUp 0.3s ease;
            }
        }

        @keyframes slideUp {
            from {
                transform: translateY(100px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

/* Hero Section - Mobile First */
.dedicated-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0b0b13;
  padding: 60px 15px 40px;
}

.my-scroll-container {
  overflow-y: auto;      /* or overflow-x */
  scroll-behavior: smooth;
  /* optionally set a max-height so it scrolls */
  max-height: 400px;
}


.dedicated-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%;
  background: #0b0b13;
  background-size: 20px 20px;
  z-index: 0;
}

.hero-content {
  max-width: 1200px;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, rgba(30, 144, 255, 0.15), rgba(183, 68, 184, 0.15));
  border: 1px solid rgba(30, 144, 255, 0.3);
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.hero-accent {
  color: var(--primary-accent);
  text-shadow: 0 0 15px rgba(30, 144, 255, 0.5);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted-text);
  margin-bottom: 30px;
  line-height: 1.5;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 30px 0;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
  padding: 15px 10px;
  background: rgba(30, 144, 255, 0.1);
  border: 1px solid rgba(30, 144, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-accent);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Comparison Section - Mobile First */
.comparison-section {
  padding: 60px 15px;
  position: relative;
  background: var(--dark-bg);
}

.comparison-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b0b13;
  z-index: 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted-text);
  margin-bottom: 20px;
  line-height: 1.5;
}

.power-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
  margin: 0 auto;
  position: relative;
}

.power-line::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--primary-accent);
  border-radius: 50%;
  top: -2.5px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--primary-accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
      box-shadow: 0 0 10px var(--primary-accent);
  }
  50% {
      box-shadow: 0 0 20px var(--primary-accent), 0 0 30px var(--primary-accent);
  }
}

/* Comparison Table - Mobile First */
.comparison-wrapper {
  background: rgba(20, 20, 40, 0.4);
  border: 1px solid rgba(30, 144, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow-x: auto;
}

.comparison-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
  z-index: 1;
}

.comparison-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.comparison-table th {
  background: rgba(30, 144, 255, 0.1);
  color: var(--light-text);
  font-weight: 700;
  text-transform: uppercase;
  padding: 15px 8px;
  letter-spacing: 0.5px;
  text-align: center;
  border-bottom: 2px solid rgba(30, 144, 255, 0.3);
  position: relative;
  font-size: 0.75rem;
}

.comparison-table th:first-child {
  text-align: left;
  background: rgba(20, 20, 40, 0.8);
  padding-left: 15px;
  min-width: 120px;
}

.comparison-table th.eugamehost-col {
  background: rgba(30, 144, 255, 0.2);
  color: var(--primary-accent);
  position: relative;
  animation: highlight-glow 3s infinite alternate;
}

@keyframes highlight-glow {
  0% {
      background: rgba(30, 144, 255, 0.2);
      box-shadow: inset 0 0 15px rgba(30, 144, 255, 0.1);
  }
  100% {
      background: rgba(30, 144, 255, 0.3);
      box-shadow: inset 0 0 20px rgba(30, 144, 255, 0.2);
  }
}

.comparison-table th.eugamehost-col::after {
  content: 'BEST';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
  color: var(--dark-bg);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(30, 144, 255, 0.4);
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
      transform: translateX(-50%) translateY(0);
  }
  50% {
      transform: translateX(-50%) translateY(-2px);
  }
}

.comparison-table td {
  padding: 12px 8px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  padding-left: 15px;
  color: var(--light-text);
  font-size: 0.75rem;
}

.comparison-table tr:hover {
  background: rgba(30, 144, 255, 0.05);
}

.eugamehost-highlight {
  background: rgba(30, 144, 255, 0.1) !important;
}

.check-icon {
  color: var(--success);
  font-size: 1.1rem;
  text-shadow: 0 0 8px rgba(46, 204, 113, 0.5);
}

.cross-icon {
  color: var(--error);
  font-size: 1rem;
  text-shadow: 0 0 8px rgba(231, 76, 60, 0.5);
}

.feature-value {
  font-weight: 600;
  color: var(--light-text);
}

.eugamehost-value {
  color: var(--primary-accent) !important;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(30, 144, 255, 0.3);
}

.price-text {
  font-size: 0.7rem;
  color: var(--muted-text);
  margin-top: 2px;
  display: block;
}

/* Transformation Section - Mobile First */
.transformation-section {
  padding: 60px 15px;
  background: linear-gradient(135deg, rgba(11, 11, 19, 0.9), rgba(30, 144, 255, 0.05));
  position: relative;
  overflow: hidden;
}

.transformation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
      linear-gradient(rgba(30, 144, 255, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(30, 144, 255, 0.03) 1px, transparent 1px);
  background-size: 25px 25px;
  z-index: 0;
}

.transformation-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.transformation-header {
  text-align: center;
  margin-bottom: 50px;
}

.transformation-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.transformation-subtitle {
  font-size: 1rem;
  color: var(--muted-text);
  margin-bottom: 20px;
}

.transformation-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.step-card {
  background: rgba(30, 30, 40, 0.6);
  border: 1px solid rgba(30, 144, 255, 0.2);
  border-radius: 15px;
  padding: 25px 20px;
  position: relative;
  transition: all 0.5s ease;
  text-align: center;
}

.step-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
      var(--primary-accent), 
      var(--secondary-accent), 
      var(--primary-accent));
  background-size: 400% 400%;
  border-radius: 17px;
  z-index: -1;
  opacity: 0;
  animation: gradient-border 3s ease infinite;
}

@keyframes gradient-border {
  0%, 100% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(30, 144, 255, 0.3);
}

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--error);
}

.step-card:nth-child(2) .step-icon {
  color: var(--primary-accent);
}

.step-card:nth-child(3) .step-icon {
  color: var(--success);
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--light-text);
}

.step-description {
  color: var(--muted-text);
  line-height: 1.6;
  font-size: 0.95rem;
}

.step-highlight {
  color: var(--primary-accent);
  font-weight: 700;
}

/* Arrow connector for desktop */
.step-arrow {
  display: none;
}

/* CTA Section - Mobile First */
.cta-section {
  padding: 60px 15px;
  text-align: center;
   background: #0b0b13;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b0b13;
  background-size: 20px 20px;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-subtitle {
  font-size: 1rem;
  color: var(--muted-text);
  margin-bottom: 30px;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.cta-btn {
  padding: 15px 25px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 280px;
}

.cta-primary {
  background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
  color: white;
  box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.6);
}

.cta-secondary {
  background: transparent;
  color: var(--primary-accent);
  border: 2px solid var(--primary-accent);
}

.cta-secondary:hover {
  background: rgba(30, 144, 255, 0.1);
  transform: translateY(-3px);
}

/* Tablet Styles */
@media (min-width: 768px) {
  .dedicated-hero {
      min-height: 80vh;
      padding: 80px 20px 60px;
  }

  .hero-title {
      font-size: 2.5rem;
      letter-spacing: 2px;
  }

  .hero-subtitle {
      font-size: 1.2rem;
  }

  .hero-stats {
      grid-template-columns: repeat(4, 1fr);
      max-width: 600px;
      gap: 20px;
  }

  .stat-number {
      font-size: 2rem;
  }

  .section-title {
      font-size: 2.5rem;
  }

  .section-subtitle {
      font-size: 1.1rem;
  }

  .comparison-table {
      font-size: 0.9rem;
      min-width: 700px;
  }

  .comparison-table th,
  .comparison-table td {
      padding: 15px 10px;
  }

  .transformation-steps {
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      position: relative;
  }

  .step-arrow {
      display: block;
      position: absolute;
      top: 50%;
      font-size: 2rem;
      color: var(--primary-accent);
      z-index: 2;
  }

  .step-arrow:first-of-type {
      left: 28%;
      transform: translateY(-50%);
  }

  .step-arrow:last-of-type {
      right: 28%;
      transform: translateY(-50%);
  }

  .transformation-title {
      font-size: 2.5rem;
  }

  .cta-buttons {
      flex-direction: row;
      justify-content: center;
      gap: 20px;
  }

  .cta-btn {
      width: auto;
      min-width: 200px;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .dedicated-hero {
      padding: 100px 40px 80px;
  }

  .hero-title {
      font-size: 3.5rem;
  }

  .hero-subtitle {
      font-size: 1.3rem;
  }

  .comparison-section,
  .transformation-section,
  .cta-section {
      padding: 80px 40px;
  }

  .section-title {
      font-size: 2.8rem;
  }

  .comparison-table {
      font-size: 0.95rem;
      min-width: auto;
  }

  .comparison-table th,
  .comparison-table td {
      padding: 18px 15px;
  }

  .transformation-title {
      font-size: 2.8rem;
  }

  .step-card {
      padding: 30px 25px;
  }

  .cta-title {
      font-size: 2.5rem;
  }

  .cta-subtitle {
      font-size: 1.2rem;
  }
}

/* Large Desktop */
@media (min-width: 1440px) {
  .comparison-section::before {
      background-size: 30px 30px;
  }

  .comparison-table th,
  .comparison-table td {
      padding: 20px 20px;
  }
}
:root {
  --dedicated-server-dark-bg: #0B0B13;
  --dedicated-server-primary-accent: #1E90FF;
  --dedicated-server-secondary-accent: #8A2BE2;
  --dedicated-server-light-text: #FFFFFF;
  --dedicated-server-muted-text: #AAAAAA;
  --dedicated-server-success: #1E90FF;
  --dedicated-server-error: #E74C3C;
  --dedicated-server-minecraft-green: #44bd32;
  --dedicated-server-minecraft-brown: #CD7F32;
  --dedicated-server-performance-red: #FF4444;
  --dedicated-server-performance-yellow: #FFD700;
  --dedicated-server-performance-green: #44FF44;
}

.dedicated-server-config-wrapper {
  font-family: 'Orbitron', sans-serif;
  background-color: var(--dedicated-server-dark-bg);
  color: var(--dedicated-server-light-text);
  line-height: 1.6;
  margin: 0;
  padding: 60px 20px 80px;
  position: relative;
  overflow-x: hidden;
}

.dedicated-server-config-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
      linear-gradient(rgba(30, 144, 255, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(30, 144, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: -1;
  pointer-events: none;
}

.dedicated-server-config-page-title {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 40px;
}

.dedicated-server-config-page-title h1 {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dedicated-server-light-text);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.dedicated-server-config-page-title h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--dedicated-server-primary-accent), var(--dedicated-server-secondary-accent));
}

/* Dedicated Server Billing Period Tabs */
.dedicated-server-billing-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.dedicated-server-billing-tab {
  flex: 1;
  max-width: 180px;
  min-width: 140px;
  padding: 15px 10px;
  padding-top: 20px;
  text-align: center;
  background: rgba(30, 30, 40, 0.6);
  border: 1px solid rgba(30, 144, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}

.dedicated-server-billing-tab.active {
  background: rgba(30, 144, 255, 0.2);
  border-color: var(--dedicated-server-primary-accent);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
}

.dedicated-server-billing-tab:hover {
  transform: translateY(-2px);
  border-color: var(--dedicated-server-primary-accent);
  background: rgba(30, 144, 255, 0.15);
}

.dedicated-server-tab-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--dedicated-server-light-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 5px;
}

.dedicated-server-tab-discount {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: dedicated-server-discount-pulse 2s infinite;
}

@keyframes dedicated-server-discount-pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.6);
  }
  70% {
      box-shadow: 0 0 0 8px rgba(76, 175, 80, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

.dedicated-server-config-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1600px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.dedicated-server-config-card {
  background: rgba(30, 30, 40, 0.7);
  border: 1px solid rgba(30, 144, 255, 0.2);
  border-radius: 8px;
  padding: 25px;
  padding-top: 80px;
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.dedicated-server-config-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--dedicated-server-primary-accent);
  background: rgba(30, 40, 50, 0.8);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(30, 144, 255, 0.2);
  z-index: 5;
}

.dedicated-server-processor-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dedicated-server-primary-accent), var(--dedicated-server-secondary-accent));
  padding: 12px 18px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
}

.dedicated-server-processor-badge img {
  width: 64px;
  height: 64px;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  padding: 12px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  filter: brightness(1.3) drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
  transition: all 0.3s ease;
}

.dedicated-server-config-card:hover .dedicated-server-processor-badge img {
  transform: translateX(-50%) scale(1.1);
  filter: brightness(1.5) drop-shadow(0 0 15px rgba(30, 144, 255, 0.6));
  border-color: var(--dedicated-server-primary-accent);
}

.dedicated-server-location {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
}

.dedicated-server-location::before {
  content: " ";
  margin-right: 10px;
  font-size: 18px;
}

.dedicated-server-status {
  color: #4caf50;
  font-size: 12px;
  margin-left: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dedicated-server-cpu-model {
  margin: 0 0 15px 0;
  font-size: 1.1em;
  font-weight: 600;
  text-align: center;
  color: var(--dedicated-server-primary-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dedicated-server-performance-section {
  margin-bottom: 25px;
  background: rgba(20, 20, 30, 0.8);
  border: 1px solid rgba(30, 144, 255, 0.2);
  border-radius: 8px;
  padding: 20px;
}

.dedicated-server-performance-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dedicated-server-light-text);
  margin-bottom: 15px;
  text-align: center;
}

.dedicated-server-performance-item {
  margin-bottom: 15px;
}

.dedicated-server-performance-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--dedicated-server-muted-text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dedicated-server-performance-value {
  font-weight: 700;
  color: var(--dedicated-server-light-text);
}

.dedicated-server-performance-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.dedicated-server-performance-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.8s ease-in-out;
  position: relative;
  overflow: hidden;
}

.dedicated-server-performance-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: dedicated-server-shimmer 2s infinite;
}

@keyframes dedicated-server-shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.dedicated-server-performance-low {
  background: linear-gradient(90deg, var(--dedicated-server-performance-red), #FF6666);
}

.dedicated-server-performance-medium {
  background: linear-gradient(90deg, var(--dedicated-server-performance-red), var(--dedicated-server-performance-yellow));
}

.dedicated-server-performance-high {
  background: linear-gradient(90deg, var(--dedicated-server-performance-yellow), var(--dedicated-server-performance-green));
}

.dedicated-server-performance-excellent {
  background: linear-gradient(90deg, var(--dedicated-server-performance-green), #66FF66);
}

.dedicated-server-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.dedicated-server-spec-item {
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(30, 144, 255, 0.1);
  border-radius: 6px;
  padding: 15px 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.dedicated-server-config-card:hover .dedicated-server-spec-item {
  border-color: rgba(30, 144, 255, 0.3);
  background: rgba(30, 144, 255, 0.1);
}

.dedicated-server-spec-label {
  font-size: 11px;
  color: var(--dedicated-server-muted-text);
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-align: center;
}

.dedicated-server-spec-label::before {
  margin-right: 0;
  margin-bottom: 8px;
  font-size: 28px;
  display: block;
  line-height: 1;
}



.dedicated-server-spec-value {
  font-weight: 700;
  font-size: 14px;
  color: var(--dedicated-server-light-text);
  margin-bottom: 3px;
}

.dedicated-server-spec-detail {
  font-size: 10px;
  color: var(--dedicated-server-muted-text);
  opacity: 0.8;
}

.dedicated-server-pricing-section {
  margin-bottom: 20px;
  text-align: center;
}

.dedicated-server-original-price {
  display: none;
  font-size: 1.2rem;
  color: var(--dedicated-server-muted-text);
  text-decoration: line-through;
  margin-bottom: 5px;
}

.dedicated-server-original-price.visible {
  display: block;
}

.dedicated-server-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dedicated-server-primary-accent);
  margin-bottom: 5px;
  text-shadow: 0 0 10px rgba(30, 144, 255, 0.3);
}

.dedicated-server-price-detail {
  font-size: 12px;
  color: var(--dedicated-server-muted-text);
  margin-bottom: 15px;
  font-weight: 500;
}

.dedicated-server-configure-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--dedicated-server-primary-accent), var(--dedicated-server-secondary-accent));
  border: none;
  color: white;
  padding: 15px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.dedicated-server-configure-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;
}

.dedicated-server-configure-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.5);
}

.dedicated-server-configure-btn:hover::before {
  left: 100%;
}

.dedicated-server-xeon .dedicated-server-processor-badge {
  background: linear-gradient(135deg, var(--dedicated-server-primary-accent), #0066cc);
}

.dedicated-server-core .dedicated-server-processor-badge {
  background: linear-gradient(135deg, #0066cc, var(--dedicated-server-secondary-accent));
}

.dedicated-server-ryzen .dedicated-server-processor-badge {
  background: linear-gradient(135deg, #ED1C24, #FF6B35);
}

.dedicated-server-popular-tag {
  position: absolute;
  top: -15px;
  right: 15px;
  z-index: 10;
}

.dedicated-server-popular-text {
  background: linear-gradient(135deg, #FF3A6E, #FF5C4D);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  white-space: nowrap;
  animation: dedicated-server-pulse 2s infinite;
}

@keyframes dedicated-server-pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(255, 58, 110, 0.6);
  }
  70% {
      box-shadow: 0 0 0 8px rgba(255, 58, 110, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(255, 58, 110, 0);
  }
}

/* Responsive design */
@media (max-width: 1400px) {
  .dedicated-server-config-container {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .dedicated-server-config-container {
      grid-template-columns: 1fr;
      gap: 15px;
  }
  
  .dedicated-server-config-page-title h1 {
      font-size: 2rem;
  }

  .dedicated-server-billing-tabs {
      gap: 8px;
  }

  .dedicated-server-billing-tab {
      max-width: 160px;
      min-width: 120px;
      padding: 12px 8px;
      padding-top: 18px;
  }

  .dedicated-server-tab-text {
      font-size: 12px;
  }

  .dedicated-server-tab-discount {
      font-size: 10px;
      padding: 3px 8px;
  }
}

@media (max-width: 768px) {
  .dedicated-server-config-container {
      grid-template-columns: 1fr;
      padding: 0 10px;
  }
  
  .dedicated-server-config-card {
      padding: 20px;
      padding-top: 70px;
  }
  
  .dedicated-server-config-page-title h1 {
      font-size: 1.8rem;
  }
  
  .dedicated-server-price {
      font-size: 1.8rem;
  }

  .dedicated-server-billing-tabs {
      flex-wrap: wrap;
      gap: 10px;
  }

  .dedicated-server-billing-tab {
      flex: 1 0 45%;
      max-width: none;
      min-width: 140px;
  }

  .dedicated-server-processor-badge img {
      width: 48px;
      height: 48px;
      top: -40px;
  }
}

@media (max-width: 580px) {
  .dedicated-server-config-wrapper {
      padding: 10px;
  }
  
  .dedicated-server-specs {
      grid-template-columns: 1fr;
      gap: 10px;
  }
  
  .dedicated-server-spec-item {
      padding: 10px;
  }

  .dedicated-server-billing-tab {
      flex: 1 0 100%;
      margin-bottom: 5px;
  }
}

.dedicated-server-config-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--dedicated-server-primary-accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dedicated-server-config-card:hover::before {
  opacity: 1;
}

.dedicated-server-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.dedicated-server-particle {
  position: absolute;
  background: var(--dedicated-server-primary-accent);
  border-radius: 50%;
  opacity: 0.1;
  animation: dedicated-server-float 15s linear infinite;
}

.dedicated-server-particle:nth-child(1) { left: 10%; width: 2px; height: 2px; animation-delay: 0s; }
.dedicated-server-particle:nth-child(2) { left: 20%; width: 3px; height: 3px; animation-delay: 2s; }
.dedicated-server-particle:nth-child(3) { left: 30%; width: 1px; height: 1px; animation-delay: 4s; }
.dedicated-server-particle:nth-child(4) { left: 40%; width: 2px; height: 2px; animation-delay: 6s; }
.dedicated-server-particle:nth-child(5) { left: 50%; width: 3px; height: 3px; animation-delay: 8s; }
.dedicated-server-particle:nth-child(6) { left: 60%; width: 2px; height: 2px; animation-delay: 10s; }
.dedicated-server-particle:nth-child(7) { left: 70%; width: 1px; height: 1px; animation-delay: 12s; }
.dedicated-server-particle:nth-child(8) { left: 80%; width: 2px; height: 2px; animation-delay: 14s; }
.dedicated-server-particle:nth-child(9) { left: 90%; width: 3px; height: 3px; animation-delay: 16s; }

@keyframes dedicated-server-float {
  0% {
      transform: translateY(100vh) rotate(0deg);
  }
  100% {
      transform: translateY(-100px) rotate(360deg);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* Main Carousel Container */
.gc-carousel-section {
  position: relative;
  padding: 80px 0;
  background-color: var(--gc-dark-bg);
  overflow: hidden;
}

/* Cyber Grid Background */
.gc-carousel-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
      linear-gradient(rgba(30, 144, 255, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(30, 144, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
}

.gc-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

/* Header */
.gc-carousel-header {
  text-align: center;
  margin-bottom: 50px;
}

.gc-carousel-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: var(--gc-light-text);
  text-shadow: 0 0 20px rgba(30, 144, 255, 0.5);
}

.gc-carousel-subtitle {
  color: var(--gc-primary-accent);
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.gc-power-line {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gc-primary-accent), transparent);
  margin: 0 auto 20px;
  position: relative;
}

.gc-power-line::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--gc-primary-accent);
  border-radius: 50%;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px var(--gc-primary-accent);
  animation: gc-power-pulse 2s infinite;
}

@keyframes gc-power-pulse {
  0%, 100% {
      box-shadow: 0 0 15px var(--gc-primary-accent);
  }
  50% {
      box-shadow: 0 0 25px var(--gc-primary-accent), 0 0 35px var(--gc-primary-accent);
  }
}

.gc-carousel-description {
  color: var(--gc-muted-text);
  font-size: 1rem;
}

/* Carousel Wrapper */
.gc-carousel-wrapper {
  position: relative;
  background: rgba(20, 20, 40, 0.4);
  border: 1px solid rgba(30, 144, 255, 0.2);
  border-radius: 15px;
  padding: 40px 0;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.gc-carousel-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gc-primary-accent), var(--gc-secondary-accent));
}

/* Game Cards Track */
.gc-games-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 24px;
  padding: 0 80px;
}

.gc-game-card {
  flex: 0 0 calc(25% - 18px);
  border: 2px solid rgba(30, 144, 255, 0.2);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
  position: relative;
  height: 450px;
  background: #000;
}

.gc-game-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
      var(--gc-primary-accent), 
      var(--gc-secondary-accent), 
      var(--gc-primary-accent), 
      var(--gc-secondary-accent));
  background-size: 400% 400%;
  border-radius: 17px;
  z-index: -1;
  opacity: 0;
  animation: gc-gradient-border 3s ease infinite;
}

.gc-game-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
      rgba(30, 144, 255, 0.15) 0%, 
      transparent 30%, 
      transparent 70%, 
      rgba(138, 43, 226, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 10;
  pointer-events: none;
}

@keyframes gc-gradient-border {
  0%, 100% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
}

.gc-game-card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 
      0 25px 50px rgba(0, 0, 0, 0.5),
      0 0 40px rgba(30, 144, 255, 0.5),
      0 0 80px rgba(30, 144, 255, 0.3);
  z-index: 20;
}

.gc-game-card:hover::before {
  opacity: 1;
}

.gc-game-card:hover::after {
  opacity: 1;
}

.gc-game-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gc-game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.7) contrast(1.1);
}

.gc-game-card:hover .gc-game-image {
  transform: scale(1.08);
  filter: brightness(0.9) contrast(1.2) saturate(1.3);
}

.gc-game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, 
      rgba(0, 0, 0, 0.1) 0%, 
      rgba(0, 0, 0, 0.3) 50%, 
      rgba(0, 0, 0, 0.85) 100%);
  z-index: 5;
  transition: background 0.5s ease;
}

.gc-game-card:hover .gc-game-overlay {
  background: linear-gradient(to bottom, 
      rgba(30, 144, 255, 0.1) 0%, 
      rgba(0, 0, 0, 0.2) 50%, 
      rgba(0, 0, 0, 0.9) 100%);
}

.gc-game-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px 24px 24px;
  text-align: center;
  z-index: 10;
  transform: translateY(0);
  transition: transform 0.5s ease;
  background: linear-gradient(to top, 
      rgba(0, 0, 0, 0.95) 0%, 
      rgba(0, 0, 0, 0.8) 60%, 
      transparent 100%);
}



.gc-game-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gc-light-text);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(30, 144, 255, 0.8), 0 2px 4px rgba(0, 0, 0, 0.8);
  opacity: 0.9;
  transition: all 0.3s ease;
}


.gc-game-price {
  color: var(--gc-muted-text);
  font-size: 1rem;
  margin-bottom: 18px;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.gc-price {
  color: var(--gc-primary-accent);
  font-weight: 800;
  font-size: 1.3rem;
  text-shadow: 0 0 15px rgba(30, 144, 255, 0.8);
}

.gc-learn-more-btn {
  background: var(--gc-primary-accent);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.gc-learn-more-btn:hover {
  transform: translateY(-2px);
  background: #0c7bd9;
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.4);
}

/* Navigation Controls */
.gc-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 144, 255, 0.1);
  border: 2px solid rgba(30, 144, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gc-primary-accent);
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.gc-carousel-nav:hover {
  background: rgba(30, 144, 255, 0.2);
  border-color: var(--gc-primary-accent);
  box-shadow: 0 0 20px rgba(30, 144, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.gc-carousel-nav.gc-prev {
  left: 15px;
}

.gc-carousel-nav.gc-next {
  right: 15px;
}

/* Indicators */
.gc-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.gc-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(30, 144, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.gc-indicator.gc-active {
  background: var(--gc-primary-accent);
  box-shadow: 0 0 15px rgba(30, 144, 255, 0.7);
  transform: scale(1.3);
}

.gc-indicator:hover {
  background: rgba(30, 144, 255, 0.6);
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1400px) {
  .gc-game-card {
      flex: 0 0 calc(33.333% - 16px);
      height: 420px;
  }
}

@media (max-width: 1200px) {
  .gc-container {
      max-width: 1200px;
      padding: 0 20px;
  }
  
  .gc-game-card {
      flex: 0 0 calc(33.333% - 16px);
      height: 400px;
  }
  
  .gc-games-track {
      padding: 0 60px;
      gap: 20px;
  }
}

@media (max-width: 992px) {
  .gc-game-card {
      flex: 0 0 calc(50% - 12px);
      height: 380px;
  }
  
  .gc-carousel-title {
      font-size: 2rem;
  }
  
  .gc-games-track {
      padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .gc-carousel-section {
      padding: 60px 0;
  }
  
  .gc-carousel-title {
      font-size: 1.8rem;
  }
  
  .gc-carousel-subtitle {
      font-size: 1rem;
      letter-spacing: 2px;
  }
  
  .gc-game-card {
      height: 360px;
  }
}

@media (max-width: 580px) {
  .gc-game-card {
      flex: 0 0 calc(100% - 20px);
      height: 400px;
  }
  
  .gc-games-track {
      padding: 0 20px;
  }
  
  .gc-carousel-nav {
      width: 45px;
      height: 45px;
      font-size: 1rem;
  }
}
   
   /* Unique namespace to prevent conflicts - gbh = game-banner-header */
   :root {
    --gbh-dark-bg: #0B0B13;
    --gbh-primary-accent: #1E90FF;
    --gbh-secondary-accent: #B744B8;
    --gbh-light-text: #FFFFFF;
    --gbh-muted-text: #AAAAAA;
    --gbh-success: #1E90FF;
    --gbh-error: #E74C3C;
  }

  /* Reset within scope */
  .gbh-carousel-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .gbh-carousel-wrapper {
    font-family: 'Orbitron', sans-serif;
    color: var(--gbh-light-text);
    line-height: 1.6;
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .gbh-carousel-container {
    position: relative;
    height: 100vh;
    max-height: 800px; /* Added max-height for larger screens */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Allow full height on smaller screens */
  @media (max-width: 768px) {
    .gbh-carousel-container {
      height: 100vh;
      max-height: none;
    }
  }

  .gbh-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }

  .gbh-carousel-slide.gbh-active {
    opacity: 1;
    z-index: 2;
  }

  .gbh-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
  }

  .gbh-carousel-video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
  }

  .gbh-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(10, 40, 10, 0.72),
        rgba(30, 30, 50, 0.78),
        rgba(10, 40, 10, 0.72));
    z-index: -1;
  }

  .gbh-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
      linear-gradient(rgba(30, 144, 255, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(30, 144, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
  }

  .gbh-digital-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .gbh-particle {
    position: absolute;
    background-color: var(--gbh-primary-accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: gbh-float-up var(--duration, 15s) linear infinite;
    animation-delay: var(--delay, 0s);
    left: var(--left, 50%);
    width: var(--size, 3px);
    height: var(--size, 3px);
  }

  .gbh-line-glow {
    position: absolute;
    width: 1px;
    height: var(--height, 100px);
    background: linear-gradient(to top, 
                                rgba(30, 144, 255, 0), 
                                rgba(30, 144, 255, 0.7), 
                                rgba(30, 144, 255, 0));
    left: var(--left, 50%);
    bottom: -50px;
    animation: gbh-rise var(--duration, 15s) linear infinite;
    animation-delay: var(--delay, 0s);
    opacity: var(--opacity, 0.5);
  }

  @keyframes gbh-float-up {
    0% {
      transform: translateY(100vh) scale(0);
      opacity: 0;
    }
    10% {
      opacity: var(--opacity, 0.3);
    }
    90% {
      opacity: var(--opacity, 0.3);
    }
    100% {
      transform: translateY(-100px) scale(var(--scale, 1));
      opacity: 0;
    }
  }

  @keyframes gbh-rise {
    0% {
      transform: translateY(100vh);
    }
    100% {
      transform: translateY(-100vh);
    }
  }

  .gbh-carousel-content {
    text-align: center;
    width: 90%;
    max-width: 1000px;
    padding: 20px;
    position: relative;
    z-index: 3;
  }

  /* Trustpilot badge container */
  .gbh-trust-badge {
    display: inline-flex;
    background: linear-gradient(90deg, rgba(30, 144, 255, 0.08), rgba(138, 43, 226, 0.08));
    padding: 10px 15px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(30, 144, 255, 0.2);
    align-items: center;
    justify-content: center;
  }

  .gbh-trustpilot-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .gbh-trustpilot-logo {
    max-height: 30px;
    width: auto;
  }

  .gbh-trustpilot-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.95rem;
    color: var(--gbh-muted-text);
  }

  .gbh-stars {
    color: gold;
    letter-spacing: 1px;
    font-size: 1.1rem;
  }

  .gbh-rating {
    font-weight: 500;
  }

  .gbh-rating-highlight {
    color: var(--gbh-primary-accent);
    font-weight: 700;
  }

  .gbh-carousel-subtitle {
    color: var(--gbh-primary-accent);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
  }

  .gbh-carousel-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
  }

  .gbh-carousel-title .gbh-accent {
    color: var(--gbh-primary-accent);
  }

  .gbh-carousel-title .gbh-purple-accent {
    color: var(--gbh-secondary-accent);
  }

  .gbh-carousel-description {
    max-width: 700px;
    margin: 0 auto 20px;
    color: var(--gbh-muted-text);
    font-size: 1rem;
  }

  /* Partner Logos Section */
  .gbh-partner-logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 25px auto;
    max-width: 800px;
  }

  .gbh-partner-logo-wrapper {
    position: relative;
  }

  .gbh-partner-logo {
    width: 120px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(30, 144, 255, 0.2);
    transition: all 0.3s ease;
  }

  .gbh-partner-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: brightness(0.9);
    transition: all 0.3s ease;
  }

  .gbh-partner-logo::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(125deg, 
                                var(--gbh-primary-accent), 
                                transparent 40%, 
                                var(--gbh-secondary-accent) 80%, 
                                transparent 90%);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease, transform 1.2s ease;
  }

  .gbh-partner-logo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
                               rgba(30, 144, 255, 0.1),
                               rgba(138, 43, 226, 0) 30%,
                               rgba(138, 43, 226, 0) 70%,
                               rgba(30, 144, 255, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
  }

  .gbh-partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(30, 144, 255, 0.25);
    border-color: var(--gbh-primary-accent);
  }

  .gbh-partner-logo:hover img {
    filter: brightness(1.2);
    position: relative;
    z-index: 2;
  }

  .gbh-partner-logo:hover::before {
    opacity: 0.6;
    transform: scale(1.1);
  }
  
  .gbh-partner-logo:hover::after {
    opacity: 1;
    animation: gbh-shine 2s infinite;
  }
  
  @keyframes gbh-shine {
    0% {
      background-position: -100% 0;
    }
    100% {
      background-position: 200% 0;
    }
  }

  .gbh-cta-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
  }

  .gbh-cta-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 180px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    height: 45px;
  }

  .gbh-primary-btn {
    background: var(--gbh-primary-accent);
    color: var(--gbh-light-text);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
    border: none;
  }

  .gbh-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.5);
    background: linear-gradient(90deg, var(--gbh-primary-accent), var(--gbh-secondary-accent));
  }

  .gbh-secondary-btn {
    background-color: transparent;
    color: var(--gbh-primary-accent);
    border: 2px solid var(--gbh-primary-accent);
  }

  .gbh-secondary-btn:hover {
    background-color: rgba(30, 144, 255, 0.1);
    transform: translateY(-3px);
  }

  .gbh-carousel-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
  }

  .gbh-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .gbh-carousel-dot.gbh-active {
    background-color: var(--gbh-primary-accent);
    transform: scale(1.2);
  }

  .gbh-carousel-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    transform: translateY(-50%);
  }

  .gbh-carousel-arrow {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gbh-light-text);
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }

  .gbh-carousel-arrow:hover {
    background-color: var(--gbh-primary-accent);
  }

  /* Mobile-first responsive design */
  /* Base styles are already mobile-first */
  
  /* Tablet styles */
  @media (min-width: 768px) {
    .gbh-carousel-title {
      font-size: 3rem;
    }
    
    .gbh-carousel-subtitle {
      font-size: 1.3rem;
    }
    
    .gbh-carousel-description {
      font-size: 1.1rem;
    }
    
    .gbh-cta-btn {
      padding: 12px 30px;
      font-size: 1rem;
    }
    
    .gbh-carousel-arrows {
      padding: 0 30px;
    }
    
    .gbh-carousel-arrow {
      width: 45px;
      height: 45px;
      font-size: 1.3rem;
    }
    
    .gbh-partner-logo {
      width: 140px;
      height: 70px;
    }
  }
  
  /* Desktop styles */
  @media (min-width: 992px) {
    .gbh-carousel-title {
      font-size: 3.5rem;
    }
    
    .gbh-carousel-subtitle {
      font-size: 1.5rem;
    }
    
    .gbh-carousel-description {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }
    
    .gbh-trust-badge {
      padding: 15px 20px;
    }
    
    .gbh-trustpilot-logo {
      max-height: 35px;
    }
    
    .gbh-partner-logo {
      width: 160px;
      height: 80px;
    }
  }
  
  /* Smaller mobile devices */
  @media (max-width: 480px) {
    .gbh-carousel-title {
      font-size: 2rem;
    }
    
    .gbh-carousel-subtitle {
      font-size: 1rem;
      letter-spacing: 2px;
    }
    
    .gbh-carousel-description {
      font-size: 0.9rem;
    }
    
    .gbh-cta-group {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    
    .gbh-cta-btn {
      min-width: 220px;
    }
    
    .gbh-carousel-nav {
      bottom: 20px;
    }
    
    .gbh-carousel-dot {
      width: 10px;
      height: 10px;
    }
    
    .gbh-carousel-arrow {
      width: 35px;
      height: 35px;
      font-size: 1rem;
    }
    
    .gbh-trustpilot-wrapper {
      flex-direction: column;
      gap: 8px;
    }
    
    .gbh-trust-badge {
      padding: 10px;
    }
    
    .gbh-partner-logos-container {
      gap: 10px;
    }
    
    .gbh-partner-logo {
      width: 90px;
      height: 45px;
    }
  }

  
/* Base styles from existing site */
:root {
  --dark-bg: #0B0B13;
  --primary-accent: #1E90FF;
  --secondary-accent: #B744B8;
  --light-text: #FFFFFF;
  --muted-text: #AAAAAA;
  --success: #1E90FF;
  --error: #E74C3C;
  --minecraft-green: #44bd32;
  --minecraft-brown: #CD7F32;
}


@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Orbitron:wght@400;500;700&display=swap');

body {
  font-family: 'Orbitron', sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: sans-serif;

  font-weight: 400;
}

.nav-link,
.mc-cta-button,
.mc-card-title {
  font-family: sans-serif;

  font-weight: 700;
  margin-bottom: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  overflow: visible !important;
}

/* Minecraft Hero Section */
.mc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  overflow: hidden;
  padding: 100px 20px 60px;
  z-index: 1;
}

/* Video Background */
.mc-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.mc-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  overflow: hidden;
}

.mc-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

/* Dark Overlay with Minecraft-themed gradient */
.mc-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(10, 40, 10, 0.72),
      rgba(30, 30, 50, 0.78),
      rgba(10, 40, 10, 0.72));
  z-index: -2;
}

/* Grid Background */
.minecraft-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(68, 189, 50, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 189, 50, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: -1;
}

/* Hero Content */
.mc-hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 20px;
}

/* Trustpilot Badge (adapted for Minecraft) */
.mc-trust-badge {
  display: inline-flex;
  background: linear-gradient(90deg, rgba(68, 189, 50, 0.08), rgba(138, 43, 226, 0.08));
  padding: 15px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(68, 189, 50, 0.2);
}

.mc-trustpilot {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mc-trustpilot-logo {
  margin: 0;
  display: flex;
  align-items: center;
}

.mc-trustpilot-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.95rem;
  color: var(--muted-text);
  margin: 0;
}

.mc-stars {
  color: gold;
  letter-spacing: 1px;
}

.mc-rating {
  font-weight: 500;
}

.mc-highlight {
  color: var(--minecraft-green);
  font-weight: 700;
}

@media (max-width: 768px) {
  .trustpilot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }

  .trustpilot-logo {
    margin-bottom: 10px;
  }
}


/* Main Headline */
.mc-headline {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-weight: 800;
}

.mc-accent {
  color: var(--minecraft-green);
  position: relative;
  display: inline-block;
}

.mc-accent::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--minecraft-green), transparent);
}

/* Subheadline */
.mc-subheadline {
  font-size: 1.5rem;
  color: var(--light-text);
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

/* Feature Statement */
.mc-feature-statement {
  margin-bottom: 25px;
}

.mc-feature-statement p {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light-text);
  letter-spacing: 1px;
}

.mc-highlight-negative {
  color: var(--minecraft-green);
  font-weight: 900;
  padding: 0 5px;
  position: relative;
  text-decoration: underline;
}

.mc-highlight-negative::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(68, 189, 50, 0.1);
  transform: skewX(-10deg);
  z-index: -1;
}

/* Core Benefits */
.mc-core-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 35px 0;
}

.mc-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 50, 30, 0.4);
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid rgba(68, 189, 50, 0.1);
}

.mc-checkmark {
  color: var(--success);
  font-size: 2.0rem;
}

.mc-benefit-text {
  font-weight: 600;
  color: var(--light-text);
  font-size: 1.4rem;
}

/* CTA Buttons */
.mc-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.mc-cta {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
}

.mc-cta-primary {
  background: #1E90FF;
  color: #fff;
  box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
}


.mc-cta-primary span {
  position: relative;
  z-index: 1;
}

.mc-cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--secondary-accent), var(--minecraft-green));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mc-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(68, 189, 50, 0.5);
}

.mc-cta-primary:hover::before {
  opacity: 1;
}

.mc-cta-secondary {
  background-color: transparent;
  color: var(--minecraft-green);
  border: 2px solid var(--minecraft-green);
}

.mc-cta-secondary:hover {
  background-color: rgba(68, 189, 50, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(68, 189, 50, 0.1);
}

/* Minecraft Block Animation */
.mc-blocks-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.mc-block {
  position: absolute;
  width: 30px;
  height: 30px;
  opacity: 0.2;
  background-size: cover;
  animation: blockFloat 15s linear infinite;
}

.mc-block1 {
  background-color: #8A5C36;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.mc-block2 {
  background-color: #6B6B6B;
  top: 25%;
  left: 15%;
  animation-delay: 2s;
}

.mc-block3 {
  background-color: #4B692F;
  top: 15%;
  right: 10%;
  animation-delay: 4s;
}

.mc-block4 {
  background-color: #D4A35F;
  bottom: 20%;
  left: 20%;
  animation-delay: 6s;
}

.mc-block5 {
  background-color: #4B2400;
  bottom: 10%;
  right: 15%;
  animation-delay: 8s;
}

@keyframes blockFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
  }
}

/* Pricing Section */
.mc-pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  margin-top: 15px;
}

.mc-tab {
  flex: 1;
  max-width: 150px;
  padding: 10px;
  padding-top: 15px;
  text-align: center;
  background: rgba(30, 30, 40, 0.6);
  border: 1px solid rgba(14, 119, 188, 0.2);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: sans-serif;
  font-weight: 600;
  position: relative;
  overflow: visible;
}

.mc-tab.active {
  background: rgba(14, 119, 188, 0.2);
  border-color: var(--minecraft-green);
}

.mc-tab:hover {
  transform: translateY(-2px);
  border-color: var(--minecraft-green);
}

/* Discount tag for tabs */
.mc-discount {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--minecraft-green);
  color: var(--dark-bg);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
  letter-spacing: 0.5px;
}

/* Server Types */
.mc-server-section {
  margin-bottom: 40px;
}

.mc-server-type {
  font-family: sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mc-server-highlight {
  color: var(--minecraft-green);
}

.mc-server-description {
  color: var(--muted-text);
  margin-bottom: 20px;
}

/* Server Plans Grid */
.mc-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

/* Plan Card */
.mc-plan-card {
  background: rgba(30, 30, 40, 0.6);
  border: 1px solid rgba(14, 119, 188, 0.2);
  border-radius: 8px;
  padding: 20px;
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
}

.mc-plan-card:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: var(--minecraft-green);
  background: rgba(30, 40, 30, 0.7);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

/* Minecraft Icon with Hover Effect */
.mc-plan-icon {
  width: 80px;
  /* Increased from 64px */
  height: 80px;
  /* Increased from 64px */
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
  position: relative;
}

.mc-plan-card:hover .mc-plan-icon {
  transform: rotate(15deg) scale(1.2);
}

.mc-plan-icon img {
  width: 100%;
  height: 100%;
  transition: filter 0.3s ease;
}

.mc-plan-card:hover .mc-plan-icon img {
  filter: drop-shadow(0 0 8px rgba(14, 119, 188, 0.5));
}

.mc-plan-title {
  font-family: sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  display: block;
  width: 100%;
}

/* Plan Specs - 2x2 Grid */
.mc-plan-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}

.mc-plan-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: rgba(20, 20, 30, 0.4);
  padding: 10px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  border: 1px solid rgba(14, 119, 188, 0.1);
}

.mc-plan-card:hover .mc-plan-spec {
  background-color: rgba(14, 119, 188, 0.1);
  border-color: rgba(14, 119, 188, 0.2);
}

.mc-plan-spec span:first-child {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 0.2rem;
}

.mc-spec-value {
  font-weight: 700;
  color: var(--light-text);
  font-size: 1rem;
}

/* Tags & Badges */
.mc-popular-tag {
  position: absolute;
  top: -15px;
  right: 15px;
  z-index: 6;
  overflow: visible;
}

.mc-popular-text {
  background: linear-gradient(135deg, var(--minecraft-green), var(--secondary-accent));
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 3;
  white-space: nowrap;
  animation: pulse 2s infinite;
}

.mc-discount-tag {
  background-color: rgba(14, 119, 188, 0.2);
  color: var(--minecraft-green);
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  margin-top: 5px;
}

/* Pricing */
.mc-pricing-container {
  margin-bottom: 1rem;
  text-align: center;
}

.mc-original-price {
  text-decoration: line-through;
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.mc-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--minecraft-green);
}

.mc-price-period {
  font-size: 0.9rem;
  color: #888;
  font-weight: normal;
}

/* CTA Button */
.mc-plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--minecraft-green);
  color: white;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  gap: 0.5rem;
  width: 100%;
  font-family: sans-serif;
}

.mc-plan-cta:hover {
  background-color: var(--secondary-accent);
  transform: translateY(-2px);
}

.mc-plan-cta:active {
  transform: translateY(0);
}

/* Sold Out Button */
.mc-plan-cta.sold-out {
  background-color: #9E9E9E;
  cursor: not-allowed;
}

.mc-plan-cta.sold-out:hover {
  background-color: #9E9E9E;
  transform: none;
}

/* Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(14, 119, 188, 0.6);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(14, 119, 188, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(14, 119, 188, 0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .mc-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .mc-pricing-tabs {
    flex-wrap: wrap;
  }

  .mc-tab {
    flex: 1 0 40%;
  }
}

@media (max-width: 580px) {
  .mc-plans-grid {
    grid-template-columns: 1fr;
  }
}

/* Reviews Carousel Styles */
.mc-reviews-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}



.minecraft-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(68, 189, 50, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 189, 50, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: -1;
}

.mc-reviews-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.mc-reviews-title {
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--light-text);
}

.mc-reviews-subtitle {
  font-size: 1.2rem;
  color: var(--minecraft-green);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mc-rating-large {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--light-text);
}

.mc-stars-container {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.mc-star {
  color: gold;
  font-size: 1.5rem;
}

.mc-star-half {
  position: relative;
  color: gold;
  font-size: 1.5rem;
}

.mc-star-half::after {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: gold;
}

.mc-star-half::before {
  content: "☆";
  color: gold;
}

.mc-reviews-count {
  color: var(--muted-text);
  font-size: 1rem;
  margin-top: 5px;
}

.mc-reviews-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.mc-reviews-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.mc-review-card {
  flex: 0 0 calc(33.333% - 20px);
  background: rgba(20, 30, 20, 0.7);
  border: 1px solid rgba(68, 189, 50, 0.15);
  padding: 25px;
  margin: 0 10px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 280px;
}

.mc-review-card:hover {
  transform: translateY(-5px);
  border-color: var(--minecraft-green);
  box-shadow: 0 8px 25px rgba(68, 189, 50, 0.2);
}

.mc-review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--minecraft-green), var(--secondary-accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mc-review-card:hover::before {
  opacity: 1;
}

.mc-review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.mc-review-stars {
  display: flex;
  gap: 2px;
  margin-right: 10px;
}

.mc-review-stars .mc-star {
  font-size: 1rem;
}

.mc-reviewer {
  font-size: 0.9rem;
  color: var(--light-text);
  font-weight: 700;
}

.mc-review-date {
  font-size: 0.8rem;
  color: var(--muted-text);
  margin-left: auto;
}

.mc-review-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--minecraft-green);
}

.mc-review-content {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mc-trustpilot-logo {
  width: 100px;
  margin-top: 15px;
  margin-bottom: 15px;
  /* ← Add this */
  opacity: 1.0;
}

.mc-slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}

.mc-nav-arrow {
  width: 45px;
  height: 45px;
  background: rgba(68, 189, 50, 0.1);
  border: 1px solid rgba(68, 189, 50, 0.3);
  color: var(--minecraft-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.mc-nav-arrow:hover {
  background: rgba(68, 189, 50, 0.2);
  transform: scale(1.05);
}

.mc-nav-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.mc-nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mc-nav-dot.active {
  background: var(--minecraft-green);
  transform: scale(1.2);
}

/* Responsive styles */
@media (max-width: 992px) {
  .mc-review-card {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 767px) {
  .mc-reviews-title {
    font-size: 2.2rem;
  }

  .mc-review-card {
    flex: 0 0 calc(100% - 20px);
  }

  .mc-reviews-section {
    padding: 40px 0;
  }
}



:root {
  --dark-bg: #0B0B13;
  --primary-accent: #1E90FF;
  --secondary-accent: #B744B8;
  --light-text: #FFFFFF;
  --muted-text: #AAAAAA;
  --success: #2ECC71;
  --error: #E74C3C;
  --minecraft-green: #1E90FF;
  --minecraft-brown: #CD7F32;
}

body {
  font-family: sans-serif;

  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  overflow: visible !important;
}

/* Easter Sale Section */
.mc-easter-sale {
  background: linear-gradient(135deg, rgba(30, 30, 80, 0.9), rgba(10, 40, 10, 0.9));
  border-radius: 8px;
  padding: 25px;
  position: relative;
  overflow: hidden;
}

.mc-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(68, 189, 50, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 189, 50, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
}

.mc-sale-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mc-sale-info {
  flex: 2;
}

.mc-sale-title {
  font-family: sans-serif;

  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}

.mc-sale-description {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.mc-sale-timer {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.mc-timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 10px;
  min-width: 60px;
}

.mc-timer-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.mc-timer-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--muted-text);
}

/* Pricing Tabs - UPDATED */
.mc-pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  /* Added to make room for discount tags */
}

.mc-tab {
  flex: 1;
  max-width: 150px;
  padding: 10px;
  padding-top: 15px;
  /* Add more top padding to accommodate the discount label */
  text-align: center;
  background: rgba(30, 30, 40, 0.6);
  border: 1px solid rgba(68, 189, 50, 0.2);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: sans-serif;

  font-weight: 600;
  position: relative;
  overflow: visible;
  /* Changed from hidden to visible */
}

.mc-tab.active {
  background: rgba(68, 189, 50, 0.2);
  border-color: var(--minecraft-green);
}

.mc-tab:hover {
  transform: translateY(-2px);
  border-color: var(--minecraft-green);
}

/* Redesigned discount tag for tabs */
.mc-discount {
  position: absolute;
  top: -13px;
  /* Positioned above the tab */
  left: 50%;
  /* Center horizontally */
  transform: translateX(-50%);
  /* Center alignment fix */
  background: var(--minecraft-green);
  color: var(--dark-bg);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
  /* Ensure it doesn't wrap */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
  letter-spacing: 0.5px;
}

/* Server Types */
.mc-server-section {
  margin-bottom: 40px;
}

.mc-server-type {
  font-family: sans-serif;

  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mc-server-highlight {
  color: var(--minecraft-green);
}

.mc-server-description {
  color: var(--muted-text);
  margin-bottom: 20px;
}

/* Server Plans */
.mc-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.mc-plan-card {
  background: rgba(30, 30, 40, 0.6);
  border: 1px solid rgba(68, 189, 50, 0.2);
  border-radius: 8px;
  padding: 20px;
  position: relative;
  overflow: visible;
  /* Changed from hidden to visible */
  transition: all 0.3s ease;
}

.mc-plan-card:hover {
  transform: translateY(-5px);
  border-color: var(--minecraft-green);
  background: rgba(30, 40, 30, 0.7);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.mc-plan-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.mc-plan-title {
  font-family: sans-serif;

  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mc-plan-specs {
  margin-bottom: 15px;
}

.mc-plan-spec {
  font-size: 0.9rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
}

.mc-plan-spec:last-child {
  border-bottom: none;
}

.mc-spec-value {
  font-weight: 700;
  color: var(--light-text);
}

.mc-pricing-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 15px 0;
}

.mc-original-price {
  font-size: 0.9rem;
  color: var(--muted-text);
  text-decoration: line-through;
}

.mc-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--minecraft-green);
}

.mc-price-period {
  font-size: 0.8rem;
  color: var(--muted-text);
  font-weight: 400;
}

.mc-discount-tag {
  background: rgba(68, 189, 50, 0.2);
  color: var(--minecraft-green);
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.mc-plan-cta {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background-color: var(--minecraft-green);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: sans-serif;

  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mc-plan-cta:hover {
  background-color: var(--secondary-accent);
}

/* Redesigned Popular tag */
.mc-popular-tag {
  position: absolute;
  top: -15px;
  right: 15px;
  z-index: 2;
  overflow: visible;
}

.mc-popular-text {
  background: linear-gradient(135deg, var(--minecraft-green), var(--secondary-accent));
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 3;
  white-space: nowrap;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(68, 189, 50, 0.6);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(68, 189, 50, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(68, 189, 50, 0);
  }
}

/* Features */
.mc-features {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.mc-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 50, 30, 0.4);
  padding: 8px 15px;
  border-radius: 20px;
  border: 1px solid rgba(68, 189, 50, 0.1);
}

.mc-feature-icon {
  color: var(--success);
  font-size: 1rem;
}

.mc-feature-text {
  font-size: 0.9rem;
  color: var(--muted-text);
}

/* Special Offer */
.mc-special-offer {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(68, 189, 50, 0.2));
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 8px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mc-offer-text {
  font-family: sans-serif;

  font-size: 1.2rem;
  font-weight: 700;
}

.mc-offer-highlight {
  color: var(--minecraft-green);
}

.mc-offer-cta {
  background-color: var(--secondary-accent);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: sans-serif;

}

.mc-offer-cta:hover {
  background-color: var(--minecraft-green);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .mc-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mc-sale-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .mc-sale-timer {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .mc-pricing-tabs {
    flex-wrap: wrap;
  }

  .mc-tab {
    flex: 1 0 40%;
  }

  .mc-special-offer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 580px) {
  .mc-plans-grid {
    grid-template-columns: 1fr;
  }

  .mc-features {
    flex-direction: column;
    align-items: center;
  }
}

:root {
  --dark-bg: #0B0B13;
  --primary-accent: #1E90FF;
  --secondary-accent: #B744B8;
  --light-text: #FFFFFF;
  --muted-text: #AAAAAA;
  --success: #2ECC71;
  --error: #E74C3C;
  --minecraft-green: #1E90FF;
  --minecraft-brown: #CD7F32;
}

body {
  font-family: sans-serif;

  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: visible !important;
}

/* Easter Sale Section */
.mc-easter-sale {
  background: linear-gradient(135deg, rgba(30, 30, 80, 0.9), rgba(10, 40, 10, 0.9));
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.mc-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(68, 189, 50, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 189, 50, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
}

.mc-sale-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mc-sale-info {
  flex: 2;
}

.mc-sale-title {
  font-family: sans-serif;

  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}

.mc-sale-description {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.mc-sale-timer {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.mc-timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 10px;
  min-width: 60px;
}

.mc-timer-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.mc-timer-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--muted-text);
}

/* Pricing Tabs - UPDATED */
.mc-pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  margin-top: 15px;
  /* Added to make room for discount tags */
}

.mc-tab {
  flex: 1;
  max-width: 150px;
  padding: 10px;
  padding-top: 15px;
  /* Add more top padding to accommodate the discount label */
  text-align: center;
  background: rgba(30, 30, 40, 0.6);
  border: 1px solid rgba(68, 189, 50, 0.2);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: sans-serif;

  font-weight: 600;
  position: relative;
  overflow: visible;
  /* Changed from hidden to visible */
}

.mc-tab.active {
  background: rgba(68, 189, 50, 0.2);
  border-color: var(--minecraft-green);
}

.mc-tab:hover {
  transform: translateY(-2px);
  border-color: var(--minecraft-green);
}

/* Redesigned discount tag for tabs */
.mc-discount {
  position: absolute;
  top: -13px;
  /* Positioned above the tab */
  left: 50%;
  /* Center horizontally */
  transform: translateX(-50%);
  /* Center alignment fix */
  background: var(--minecraft-green);
  color: var(--dark-bg);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
  /* Ensure it doesn't wrap */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
  letter-spacing: 0.5px;
}

/* Server Types */
.mc-server-section {
  margin-bottom: 40px;
}

.mc-server-type {
  font-family: sans-serif;

  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mc-server-highlight {
  color: var(--minecraft-green);
}

.mc-server-description {
  color: var(--muted-text);
  margin-bottom: 20px;
}

/* Server Plans */
.mc-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.mc-plan-card {
  background: rgba(30, 30, 40, 0.6);
  border: 1px solid rgba(68, 189, 50, 0.2);
  border-radius: 8px;
  padding: 20px;
  position: relative;
  overflow: visible;
  /* Changed from hidden to visible */
  transition: all 0.3s ease;
}

.mc-plan-card:hover {
  transform: translateY(-5px);
  border-color: var(--minecraft-green);
  background: rgba(30, 40, 30, 0.7);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.mc-plan-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.mc-plan-title {
  font-family: sans-serif;

  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mc-plan-specs {
  margin-bottom: 15px;
}

.mc-plan-spec {
  font-size: 0.9rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
}

.mc-plan-spec:last-child {
  border-bottom: none;
}

.mc-spec-value {
  font-weight: 700;
  color: var(--light-text);
}

.mc-pricing-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 15px 0;
}

.mc-original-price {
  font-size: 0.9rem;
  color: var(--muted-text);
  text-decoration: line-through;
}

.mc-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--minecraft-green);
}

.mc-price-period {
  font-size: 0.8rem;
  color: var(--muted-text);
  font-weight: 400;
}

.mc-discount-tag {
  background: rgba(68, 189, 50, 0.2);
  color: var(--minecraft-green);
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.mc-plan-cta {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background-color: var(--minecraft-green);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: sans-serif;

  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mc-plan-cta:hover {
  background-color: var(--secondary-accent);
}

/* Redesigned Popular tag */
.mc-popular-tag {
  position: absolute;
  top: -15px;
  right: 15px;
  z-index: 2;
  overflow: visible;
}

.mc-popular-text {
  background: linear-gradient(135deg, var(--minecraft-green), var(--secondary-accent));
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 3;
  white-space: nowrap;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(68, 189, 50, 0.6);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(68, 189, 50, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(68, 189, 50, 0);
  }
}

/* Features */
.mc-features {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.mc-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 50, 30, 0.4);
  padding: 8px 15px;
  border-radius: 20px;
  border: 1px solid rgba(68, 189, 50, 0.1);
}

.mc-feature-icon {
  color: var(--success);
  font-size: 1rem;
}

.mc-feature-text {
  font-size: 0.9rem;
  color: var(--muted-text);
}

/* Special Offer */
.mc-special-offer {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(68, 189, 50, 0.2));
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 8px;
  padding: 15px 25px;
  margin-top: 30px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mc-offer-text {
  font-family: sans-serif;

  font-size: 1.2rem;
  font-weight: 700;
}

.mc-offer-highlight {
  color: var(--minecraft-green);
}

.mc-offer-cta {
  background-color: var(--secondary-accent);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: sans-serif;

}

.mc-offer-cta:hover {
  background-color: var(--minecraft-green);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .mc-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mc-sale-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .mc-sale-timer {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .mc-pricing-tabs {
    flex-wrap: wrap;
  }

  .mc-tab {
    flex: 1 0 40%;
  }

  .mc-special-offer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 580px) {
  .mc-plans-grid {
    grid-template-columns: 1fr;
  }

  .mc-features {
    flex-direction: column;
    align-items: center;
  }
}

/* OS Support Section Styles */
.os-support-section {
  padding: 80px 0;
  margin-top: 80px;
  margin-bottom: 0;
  background-color: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.os-support-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.05), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.05), transparent 40%);
  z-index: 1;
}

.os-support-container {
  position: relative;
  max-width: 1200px;
  /* Increased from 1100px */
  margin: 0 auto;
  z-index: 2;
  padding: 0 20px;
  text-align: center;
}

.os-title {
  font-size: 2rem;
  /* Reduced from 2.5rem */
  color: var(--light-text);
  margin-bottom: 15px;
  /* Reduced from 20px */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  padding-bottom: 30px;
  /* Add padding under the title */
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.power-line {
  width: 100px;
  /* Reduced from 120px */
  height: 3px;
  /* Reduced from 4px */
  background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
  margin: 0 auto 30px;
  /* Reduced bottom margin from 50px */
  position: relative;
}

.power-line::after {
  content: '';
  position: absolute;
  width: 8px;
  /* Reduced from 10px */
  height: 8px;
  /* Reduced from 10px */
  background-color: var(--primary-accent);
  border-radius: 50%;
  top: -2.5px;
  /* Adjusted from -3px */
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px 2px var(--primary-accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 10px 2px var(--primary-accent);
  }

  50% {
    box-shadow: 0 0 20px 5px var(--primary-accent);
  }

  100% {
    box-shadow: 0 0 10px 2px var(--primary-accent);
  }
}

.os-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* Reduced from auto-fill */
  gap: 15px;
  /* Reduced from 25px */
  margin-bottom: 30px;
  /* Reduced from 50px */
}

.os-badge {
  background: rgba(20, 20, 40, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 8px;
  /* Reduced from 10px */
  padding: 12px 8px;
  /* Reduced from 20px 15px */
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.os-badge:hover {
  transform: translateY(-3px);
  /* Reduced from -5px */
  box-shadow: 0 8px 20px rgba(0, 0, 255, 0.3);
  /* Reduced from 10px 25px */
  border-color: var(--primary-accent);
  background: rgba(20, 20, 40, 0.8);
}

.os-icon {
  width: 40px;
  /* Reduced from 60px */
  height: 40px;
  /* Reduced from 60px */
  margin-bottom: 8px;
  /* Reduced from 15px */
  position: relative;
}

.os-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 3px rgba(0, 255, 255, 0.3));
  /* Reduced from 5px */
  transition: all 0.3s ease;
}

.os-badge:hover .os-icon img {
  filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.6));
  /* Reduced from 8px */
  transform: scale(1.03);
  /* Reduced from 1.05 */
}

.os-name {
  color: var(--light-text);
  font-weight: 600;
  font-size: 0.9rem;
  /* Reduced from 1.1rem */
  transition: color 0.3s ease;
}

.os-badge:hover .os-name {
  color: var(--primary-accent);
}

/* Media Queries */
@media (max-width: 991px) {
  .os-grid {
    grid-template-columns: repeat(4, 1fr);
    /* Keep more columns on tablets */
    gap: 12px;
    /* Reduced from 20px */
  }

  .os-title {
    font-size: 1.8rem;
    /* Reduced from 2.2rem */
  }
}

@media (max-width: 767px) {
  .os-support-section {
    padding: 40px 0;
    /* Reduced padding */
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
  }

  .os-title {
    font-size: 2rem;
  }

  .os-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
  }

  .os-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

  .os-name {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .os-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
  }

  .os-title {
    font-size: 1.8rem;
  }

  .os-badge {
    padding: 15px 10px;
  }

  .os-icon {
    width: 45px;
    height: 45px;
  }

  .os-name {
    font-size: 0.9rem;
  }
}

/* This section ensures styles don't leak */
.eugamehost-exclusive-features {
  font-family: 'Rajdhani', sans-serif, 'Nunito Sans', sans-serif;
  background: linear-gradient(to right, rgba(18, 18, 18, 0.95), rgba(138, 43, 226, 0.15), rgba(18, 18, 18, 0.95)), url('/api/placeholder/1600/800') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  margin-top: 0px;
  margin-bottom: 0;
  padding: 80px 0 120px;
  /* Added bottom padding to account for image overflow */
  color: var(--light-text);
  /* These properties ensure contained layout */
  width: 100%;
  box-sizing: border-box;
}

.eugamehost-exclusive-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
}

.eugamehost-features-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.eugamehost-features-image {
  position: absolute;
  left: 0;
  bottom: -80px;
  width: 35%;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
  display: none;
  /* Fixed values to prevent layout breaking */
  max-width: 400px;
  pointer-events: none;
  /* Prevents interaction issues */
}

.eugamehost-section-title {
  text-align: center;
  margin-bottom: 50px;
}

.eugamehost-section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--light-text);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.eugamehost-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-left: 0;
  /* Ensures grid stays inside container */
  position: relative;
  z-index: 1;
}

.eugamehost-feature-item {
  background-color: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.eugamehost-feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-accent), var(--secondary-accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.eugamehost-feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.3);
}

.eugamehost-feature-item:hover::before {
  opacity: 1;
}

.eugamehost-feature-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(138, 43, 226, 0.15));
  border-radius: 50%;
  margin-right: 15px;
  color: var(--primary-accent);
  flex-shrink: 0;
  font-size: 16px;
  position: relative;
}

.eugamehost-feature-icon::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 255, 0.3);
  z-index: -1;
}

.eugamehost-feature-text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--light-text);
}

/* Fixed clearfix to prevent layout issues */
.eugamehost-clearfix {
  clear: both;
  width: 100%;
  height: 1px;
  content: "";
  display: table;
}

@media (min-width: 768px) {
  .eugamehost-features-image {
    display: block;
  }

  .eugamehost-features-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 30%;
  }

  .eugamehost-feature-item {
    padding: 15px 25px;
  }

  .eugamehost-feature-text {
    font-size: 1.1rem;
  }
}

@media (min-width: 992px) {
  .eugamehost-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Custom animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 255, 0);
  }
}

.vps-feature-statement {
  margin-bottom: 25px;
}

.vps-feature-statement p {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light-text);
  letter-spacing: 1px;
}

.highlight-negative {
  color: var(--primary-accent);
  font-weight: 900;
  padding: 0 5px;
  position: relative;
  text-decoration: underline;
}

.highlight-negative::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 255, 255, 0.1);
  transform: skewX(-10deg);
  z-index: -1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Main Footer Styles */
footer {
  background-color: var(--footer-bg);
  color: var(--light-text);
  padding: 60px 0 30px;
  position: relative;
  border-top: 1px solid var(--footer-border);
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.03), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.03), transparent 40%);
  z-index: 0;
  pointer-events: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
}

.footer-column h3 {
  font-family: sans-serif;

  font-size: 1.2rem;
  color: var(--primary-accent);
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-accent), transparent);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--muted-text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-accent);
  transform: translateX(3px);
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-accent);
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: 100%;
}

/* Footer Bottom Styles */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--muted-text);
  margin-bottom: 10px;
}

.footer-bottom a {
  color: var(--muted-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--primary-accent);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--light-text);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-accent);
  color: var(--darker-bg);
  transform: translateY(-3px);
}

/* Newsletter Form (if needed) */
.newsletter-form {
  display: flex;
  margin-top: 15px;
  max-width: 300px;
}

.newsletter-input {
  flex-grow: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 4px 0 0 4px;
  color: var(--light-text);
  font-family: 'Roboto', sans-serif;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary-accent);
}

.newsletter-btn {
  background-color: var(--primary-accent);
  color: var(--darker-bg);
  border: none;
  padding: 0 15px;
  border-radius: 0 4px 4px 0;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
  background-color: #00CCFF;
}

/* Payment Methods (if needed) */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.payment-methods img {
  height: 30px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.payment-methods img:hover {
  opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .footer-content {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-column h3 {
    margin-bottom: 15px;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-bottom {
    padding-top: 20px;
  }
}

/* FAQ Section */
.faq {
  padding: 60px 0;
  background: #0B0B13;
  /* Changed to plain black */
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-title h2 {
  font-size: 2rem;
  display: inline-block;
  color: var(--light-text);
  ext-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
}

.faq-container {
  max-width: 1200px;
  /* Changed from 800px */
  margin: 0 auto;
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.faq-column {
  flex: 1;
  max-width: calc(50% - 15px);
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(18, 18, 18, 0.7);
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 255, 255, 0.1);
}

.faq-question {
  background-color: rgba(30, 30, 30, 0.8);
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  position: relative;
}

.faq-question::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-accent), var(--secondary-accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(40, 40, 40, 0.8);
}

.faq-question:hover::before {
  opacity: 1;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--light-text);
  margin: 0;
  font-family: 'Rajdhani', sans-serif;
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background-color: rgba(25, 25, 25, 0.7);
}

.faq-answer p {
  color: var(--muted-text);
  margin: 0;
  padding: 20px 0 50px;
  /* top padding + extra bottom spacing */
  line-height: 1.6;
}


/* Active State Styles */
.faq-item.active .faq-question {
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
  background-color: rgba(40, 40, 40, 0.9);
}

/* Add these media queries for mobile responsiveness */
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
    gap: 15px;
  }

  .faq-column {
    max-width: 100%;
  }

  .faq-question h3 {
    font-size: 1rem;
    /* Slightly smaller font on mobile */
  }

  .section-title h2 {
    font-size: 1.6rem;
    /* Smaller heading on mobile */
  }
}

/* Minecraft Features Section Styles */
.mc-features-section {
  position: relative;
  padding: 80px 0;
  margin-bottom: 0;
  background-color: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.mc-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(68, 189, 50, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 189, 50, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
}

.mc-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.mc-feature-card {
  background: rgba(30, 40, 50, 0.7);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}




.mc-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  font-size: 24px;
  color: var(--minecraft-green);
  box-shadow: 0 0 15px rgba(68, 189, 50, 0.2);
  transition: all 0.6s ease;
}

.mc-feature-card:hover .mc-feature-icon {
  transform: scale(1.1);
  animation: iconGlow 3s infinite;
}

.mc-feature-content {
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.mc-feature-heading {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--light-text);
}

.mc-feature-description {
  color: var(--muted-text);
  font-size: 1rem;
  line-height: 1.6;
}

/* Media Queries */
@media (max-width: 992px) {
  .mc-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .os-title {
    font-size: 2.2rem;
  }

  .mc-accent {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .mc-features-section {
    padding: 60px 20px;
  }

  .os-title {
    font-size: 1.8rem;
  }

  .mc-accent {
    font-size: 2rem;
  }

  .power-line {
    width: 150px;
    margin-bottom: 40px;
  }

  .mc-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mc-feature-heading {
    font-size: 1.2rem;
  }

  .mc-feature-description {
    font-size: 0.95rem;
  }

  .mc-feature-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* Enhanced Glow Animation for Icons on Hover */
@keyframes iconGlow {
  0% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
  }

  50% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  }

  100% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.nav-link,
.nav-cta {
  font-family: sans-serif;

  font-weight: 700;
}

/* Header Styles */

.badge-container .official-partner,
.badge-container .steam-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px; /* space between icon and text */
  font-weight: 600;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 20px;
  background-color: #1c1c1e; /* dark background */
  color: #fff;
  line-height: 1;
  vertical-align: middle;
}

.badge-container .official-partner i,
.badge-container .steam-badge i {
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}


/* Reset and variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* used when the nav is open and called by JS to prevent scrolling */
.no-scroll {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}

:root {
  --dark-bg: #121218;
  --header-bg: rgba(10, 10, 18, 0.95);
  --primary: #1E90FF;
  --secondary: #B744B8;
  --text: #FFFFFF;
  --text-muted: #AAAAAA;
  --border: rgba(30, 144, 255, 0.2);
  --shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  --header-height: 70px;
  --vh: 1vh;

  .fullscreen-section {
    height: calc(var(--vh, 1vh) * 100);
  }

  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 150vh;
  }

  /* Header Styles */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
  }

  .header-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Logo */
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    position: relative;
    z-index: 1001;
    min-width: 150px;
  }

  .logo-accent {
    color: var(--primary);
  }

  /* Main Navigation - Using horizontal tabs for main categories */
  .main-nav {
    height: 100%;
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
  }

  .nav-tabs {
    display: flex;
    list-style: none;
    height: 100%;
    margin: 0 auto;
  }

  .nav-tab {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .tab-link {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
  }

  .tab-link:hover {
    color: var(--text);
  }

  /* Indicator line for tabs */
  .tab-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s;
  }

  .tab-link:hover::after,
  .nav-tab:hover .tab-link::after {
    transform: scaleX(1);
  }

  /* Drop indicator */
  .dropdown-icon {
    font-size: 0.7rem;
    margin-left: 5px;
    opacity: 0.7;
    transition: transform 0.3s;
  }

  .nav-tab:hover .dropdown-icon {
    transform: rotate(180deg);
    opacity: 1;
  }

  /* Simple dropdown for non-mega menus */
  .simple-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--header-bg);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .view-all-container {
    padding: 10px 15px;
    border-top: 1px solid var(--border);
  }

  .view-all-games {
    display: block;
    background: #1E90FF;
    /* changed from gradient to solid blue */
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    text-align: center;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .view-all-games:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.4);
    /* updated to match new blue */
  }

  .nav-tab:hover .simple-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-list {
    list-style: none;
    padding: 10px 0;
  }

  .dropdown-item {
    display: block;
    padding: 8px 20px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
  }

  .dropdown-item:hover {
    background: rgba(30, 144, 255, 0.1);
    color: var(--text);
    padding-left: 25px;
  }

  /* Login button */
  .login-btn {
    background: #1E90FF;
    /* Dodger Blue */
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    min-width: 150px;
    justify-content: center;
  }

  .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
  }

  .login-icon {
    margin-right: 8px;
    font-size: 0.9rem;
  }

  /* Mobile Toggle */
  .mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
  }

  /* Mobile Navigation */
  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--header-bg);
    z-index: 998;
    padding: 80px 20px 20px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s;
  }

  /* Mobile View All Games button */
  .mobile-view-all-container {
    padding: 10px 5px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-view-all-games {
    display: block;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    text-align: center;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .mobile-nav.active {
    transform: translateX(0);
  }

  .mobile-nav-list {
    list-style: none;
  }

  .mobile-nav-item {
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
  }

  .mobile-nav-link.active {
    color: var(--text);
  }

  .mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s;
    background: rgba(0, 0, 0, 0.1);
  }

  .mobile-dropdown.active {
    max-height: 1000px;
  }

  .mobile-category {
    padding: 10px 15px;
    margin-bottom: 5px;
  }

  .mobile-category-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
  }

  .mobile-category-list {
    list-style: none;
  }

  .mobile-category-item {
    margin-bottom: 8px;
  }

  .mobile-category-link {
    display: block;
    padding: 8px 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }

  .mobile-login {
    margin-top: 20px;
    text-align: center;
  }

  .mobile-login-btn {
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
  }

  /* Responsive styles */
  @media (max-width: 1024px) {
    .main-nav {
      display: none;
    }

    .mobile-toggle {
      display: block;
    }
  }

  @media (max-width: 768px) {
    .header-container {
      padding: 0 15px;
    }

    .mobile-nav {
      padding: 70px 15px 15px;
    }
  }

  @media (max-width: 576px) {
    .logo {
      font-size: 1.3rem;
    }

    .mobile-nav-link {
      padding: 12px 8px;
      font-size: 0.95rem;
    }

    .mobile-category-link {
      padding: 6px 8px;
      font-size: 0.85rem;
    }
  }

  html {
    scroll-behavior: smooth;
  }

  /* Comparison Section Styles */
  .comparison-section {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    margin-bottom: 0;
    background-color: #0B0B13;
    overflow: hidden;
  }

  .comparison-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0B0B13;
    z-index: 1;
  }

  .cyber-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
  }

  .cyber-particle {
    position: absolute;
    background-color: #00DDFF;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(0, 221, 255, 0.7);
    opacity: 0;
    animation: float-up var(--duration, 15s) linear infinite;
    animation-delay: var(--delay, 0s);
    left: var(--left, 50%);
    width: var(--size, 3px);
    height: var(--size, 3px);
  }

  .cyber-line {
    position: absolute;
    width: 1px;
    height: var(--height, 100px);
    background: linear-gradient(to top, rgba(0, 221, 255, 0), rgba(0, 221, 255, 0.7), rgba(0, 221, 255, 0));
    left: var(--left, 50%);
    bottom: -50px;
    animation: rise var(--duration, 15s) linear infinite;
    animation-delay: var(--delay, 0s);
    opacity: var(--opacity, 0.5);
  }

  .cyber-pulse {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 221, 255, 0.3);
    /* new: adds glow color */
    box-shadow: 0 0 30px 10px rgba(0, 221, 255, 0.4);
    /* new: outer glow */
    left: var(--left, 50%);
    top: var(--top, 50%);
    transform: translate(-50%, -50%);
    animation: pulse-out var(--duration, 4s) ease-out infinite;
    animation-delay: var(--delay, 0s);
    z-index: 2;
  }

  @keyframes float-up {
    0% {
      transform: translateY(100vh) scale(0);
      opacity: 0;
    }

    10% {
      opacity: var(--opacity, 0.7);
    }

    90% {
      opacity: var(--opacity, 0.7);
    }

    100% {
      transform: translateY(-100px) scale(var(--scale, 1));
      opacity: 0;
    }
  }

  @keyframes rise {
    0% {
      transform: translateY(100vh);
    }

    100% {
      transform: translateY(-100vh);
    }
  }

  @keyframes pulse-out {
    0% {
      width: 0px;
      height: 0px;
      opacity: 0.7;
    }

    100% {
      width: var(--max-size, 100px);
      height: var(--max-size, 100px);
      opacity: 0;
    }
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
  }

  .comparison-intro {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
  }

  .comparison-intro-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(0, 221, 255, 0.5);
    animation: pulse 3s infinite;
  }

  .comparison-intro-subtitle {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
  }

  .comparison-intro-subtitle::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 221, 255, 0) 0%, rgba(0, 221, 255, 1) 50%, rgba(0, 221, 255, 0) 100%);
  }

  .comparison-intro-subtitle .accent {
    color: #00DDFF;
    position: relative;
    display: inline-block;
    animation: glow 2s infinite alternate;
  }

  .comparison-intro-subtitle .accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #00DDFF;
    box-shadow: 0 0 10px 1px rgba(0, 221, 255, 0.7);
  }

  .comparison-intro p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
  }

  .badge-3d {
    position: absolute;
    top: -30px;
    right: 0;
    background: linear-gradient(45deg, #FF3A6E 0%, #FF5C4D 100%);
    color: white;
    font-size: 14px;
    font-weight: 800;
    padding: 8px 15px;
    border-radius: 8px;
    transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(255, 58, 110, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: float 3s ease-in-out infinite;
    z-index: 10;
  }

  @keyframes float {

    0%,
    100% {
      transform: rotate(15deg) translateY(0);
    }

    50% {
      transform: rotate(15deg) translateY(-10px);
    }
  }

  @keyframes pulse {

    0%,
    100% {
      text-shadow: 0 0 15px rgba(0, 221, 255, 0.5);
    }

    50% {
      text-shadow: 0 0 25px rgba(0, 221, 255, 0.8);
    }
  }

  @keyframes glow {
    0% {
      text-shadow: 0 0 5px rgba(0, 221, 255, 0.5);
    }

    100% {
      text-shadow: 0 0 20px rgba(0, 221, 255, 0.9), 0 0 30px rgba(0, 221, 255, 0.3);
    }
  }

  .comparison-table-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 221, 255, 0.2), 0 0 100px rgba(0, 33, 88, 0.3);
    backdrop-filter: blur(5px);
    background: rgba(16, 16, 30, 0.7);
    position: relative;
    transition: all 0.5s ease;
  }

  .comparison-table-container:hover {
    box-shadow: 0 0 60px rgba(0, 221, 255, 0.3), 0 0 120px rgba(0, 33, 88, 0.4);
  }

  .comparison-table-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00DDFF 0%, #0057FF 100%);
    z-index: 2;
  }

  .comparison-table-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(0, 221, 255, 0.05) 0%,
        rgba(16, 16, 30, 0) 50%,
        rgba(0, 221, 255, 0.05) 100%);
    z-index: -1;
  }

  .comparison-table {
    width: 100%;
    border-collapse: collapse;
  }

  .comparison-table th {
    background-color: rgba(0, 221, 255, 0.1);
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 25px 15px;
    letter-spacing: 1px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 221, 255, 0.3);
    position: relative;
  }

  .comparison-table th:first-child {
    text-align: left;
    background-color: rgba(16, 16, 30, 0.9);
    border-radius: 10px 0 0 0;
    padding-left: 25px;
  }

  .comparison-table th.our-host {
    background-color: rgba(0, 221, 255, 0.15);
    color: #00DDFF;
    position: relative;
    animation: highlight-column 3s infinite alternate;
  }

  @keyframes highlight-column {
    0% {
      background-color: rgba(0, 221, 255, 0.15);
    }

    100% {
      background-color: rgba(0, 221, 255, 0.25);
    }
  }

  .comparison-table th.our-host::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #00DDFF 0%, #0057FF 100%);
    color: #0B0B13;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(0, 221, 255, 0.5);
  }

  .comparison-table td {
    padding: 20px 15px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 15px;
    transition: all 0.3s ease;
  }

  .comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: white;
    padding-left: 25px;
  }

  .comparison-table tr {
    position: relative;
    transition: all 0.3s ease;
    background-color: rgba(16, 16, 30, 0.7);
  }

  .comparison-table tr:nth-child(even) {
    background-color: rgba(16, 16, 30, 0.5);
  }

  .comparison-table tr:hover {
    background-color: rgba(0, 221, 255, 0.08);
  }

  .comparison-table tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
  }

  .comparison-table .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00DDFF;
    font-size: 26px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 221, 255, 0.7);
    position: relative;
    transition: transform 0.3s ease;
  }

  .comparison-table tr:hover .check {
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(0, 221, 255, 1);
  }

  .comparison-table .x-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FF3A6E;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 58, 110, 0.5);
    position: relative;
  }

  .highlight-col {
    background-color: rgba(0, 221, 255, 0.05) !important;
  }

  .comparison-cta {
    text-align: center;
    margin-bottom: 0;
    padding-top: 60px;
    position: relative;
  }

  .comparison-cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(90deg, #00DDFF 0%, #0057FF 100%);
    color: #0B0B13;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 221, 255, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: button-pulse 3s infinite;
  }

  @keyframes button-pulse {

    0%,
    100% {
      box-shadow: 0 0 30px rgba(0, 221, 255, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.2);
    }

    50% {
      box-shadow: 0 0 40px rgba(0, 221, 255, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.3);
    }
  }

  .comparison-cta-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
    z-index: 1;
  }

  .comparison-cta-primary span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .comparison-cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 221, 255, 0.7), inset 0 0 10px rgba(255, 255, 255, 0.3);
  }

  .cta-icon {
    font-size: 20px;
  }

  .feature-highlight {
    position: relative;
  }

  .feature-highlight::after {
    content: 'EXCLUSIVE';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    font-size: 10px;
    font-weight: 700;
    color: #FF3A6E;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .comparison-table tr:hover .feature-highlight::after {
    opacity: 1;
  }

  @keyframes shine {
    0% {
      left: -100%;
    }

    20%,
    100% {
      left: 100%;
    }
  }

  .host-medal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #00DDFF 0%, #0057FF 100%);
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 221, 255, 0.5);
    z-index: 10;
  }

  .host-medal-icon {
    font-size: 18px;
    color: #FFFFFF;
  }

  .host-medal-text {
    font-size: 14px;
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
    .comparison-intro-title {
      font-size: 34px;
    }

    .comparison-intro-subtitle {
      font-size: 26px;
    }

    .comparison-table th,
    .comparison-table td {
      padding: 15px 10px;
      font-size: 14px;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
      padding-left: 15px;
    }

    .badge-3d {
      display: none;
    }

    .host-medal {
      top: -40px;
      padding: 5px 12px;
    }

    .host-medal-icon {
      font-size: 14px;
    }

    .host-medal-text {
      font-size: 12px;
    }

    .feature-highlight::after {
      display: none;
    }
  }

  @media (max-width: 576px) {
    .comparison-section {
      margin-top: 20px;
      /* Reduce spacing between the two comparison sections */
      padding-top: 60px;
      /* Reduce top padding if needed */
    }

    .comparison-intro-title {
      font-size: 28px;
    }

    .comparison-intro-subtitle {
      font-size: 20px;
    }

    .comparison-table th,
    .comparison-table td {
      padding: 12px 5px;
      font-size: 12px;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
      padding-left: 10px;
    }

    .comparison-table .check {
      font-size: 20px;
    }

    .comparison-table .x-mark {
      font-size: 16px;
    }

    .comparison-table th.our-host::after {
      display: none;
    }

    .comparison-table-container {
      transform: none;
    }

    .comparison-cta-primary {
      padding: 14px 25px;
      font-size: 14px;
    }

    .host-medal {
      position: relative;
      top: 0;
      left: auto;
      transform: none;
      margin: 0 auto 20px;
      display: inline-flex;
    }
  }

  /* Hero Section */
  .rust-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    overflow: hidden;
    padding: 160px 20px 40px;
    z-index: 1;
  }

  .rust-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .rust-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -3;
  }

  .rust-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
  }

  /* Background overlay */
  .rust-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(10, 15, 30, 0.85),
        rgba(20, 24, 36, 0.9));
    z-index: -2;
  }

  /* Grid Background */
  .grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
      linear-gradient(rgba(14, 119, 188, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(14, 119, 188, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
  }

  /* Upper Hero Content */
  .rust-upper-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
  }

  /* Hero Content */
  .rust-hero-content {
    width: 55%;
    z-index: 2;
  }

  /* Hero Image */
  .rust-hero-image {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
  }

  .rust-hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(14, 119, 188, 0.5));
  }

  .image-and-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* aligns image and buttons to the right */
    gap: 20px;
  }

  .rust-cta-inline {
    justify-content: flex-end;
  }


  /* Simple solution: Hide the hero image on mobile devices */
  @media (max-width: 992px) {
    .rust-hero-image {
      display: none;
      /* Completely hide the image container on mobile */
    }

    /* Make the hero content take full width when image is hidden */
    .rust-hero-content {
      width: 100%;
      text-align: center;
    }

    /* Center features on mobile */
    .features {
      justify-content: center;
    }
  }

  /* Keep the desktop experience unchanged */
  @media (min-width: 993px) {
    .rust-hero-image {
      width: 50%;
      display: flex;
      justify-content: flex-end;
      z-index: 2;
    }

    .rust-hero-content {
      width: 55%;
      z-index: 2;
    }
  }

  /* Trustpilot Badge */
  .badge-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
  }

  @media (max-width: 768px) {
    .badge-container {
      justify-content: center;
      align-items: center;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
  }

  .official-partner {
    display: inline-flex;
    background: #1E90FF;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
  }

  .steam-badge {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    align-items: center;
  }

  .trustpilot {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
  }

  .stars {
    display: flex;
    align-items: center;
  }

  .star {
    color: #00b67a;
    font-size: 18px;
    margin-right: 2px;
  }

  .rating-text {
    font-size: 0.9rem;
    color: var(--muted-text);
  }

  .rating-text .highlight {
    color: var(--primary-accent);
    font-weight: 700;
  }

  .trustpilot-logo {
    height: 50px;
    margin-left: 10px;
  }

  .reviews-highlight {
    color: var(--primary-accent);
    font-weight: 700;
  }




  /* Main Headline */
  .headline {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 800;
    text-transform: uppercase;
  }

  /* Subheadline */
  .subheadline {
    font-size: 1.2rem;
    color: var(--muted-text);
    margin-bottom: 25px;
    font-weight: 300;
  }

  .accent {
    color: var(--primary-accent);
  }

  /* Features */
  .features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;
  }

  .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 119, 188, 0.1);
    padding: 8px 15px;
    border-radius: 25px;
    border: 1px solid rgba(14, 119, 188, 0.2);
  }

  .feature-icon {
    color: var(--primary-accent);
    font-size: 1rem;
  }

  .feature-text {
    font-weight: 600;
    color: var(--light-text);
    font-size: 0.9rem;
  }

  /* Pricing Section */
  .pricing-section {
    width: 100%;
    z-index: 2;
  }

  .pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .pricing-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }

  .tab {
    padding: 10px 20px;
    background: rgba(30, 30, 40, 0.4);
    border: 1px solid rgba(14, 119, 188, 0.2);
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    position: relative;
    min-width: 90px;
  }

  .tab.active {
    background: rgba(14, 119, 188, 0.2);
    border-color: var(--primary-accent);
  }

  .discount-tag {
    position: absolute;
    top: -12px;
    right: -10px;
    background: #E74C3C;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 3px;
  }

  /* Plan Cards */
  .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .plan-card {
    background: rgba(30, 30, 40, 0.6);
    border: 1px solid rgba(14, 119, 188, 0.2);
    border-radius: 8px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 340px;
  }

  .plan-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-accent);
    background: rgba(30, 40, 50, 0.7);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .popular-tag {
    position: absolute;
    top: -15px;
    right: 15px;
    z-index: 6;
  }

  .popular-text {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 3;
    white-space: nowrap;
    animation: pulse 2s infinite;
  }

  .plan-type {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .plan-icon {
    color: var(--primary-accent);
    font-size: 1.2rem;
  }

  /* Updated Plan Specs */
  .plan-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
  }

  .spec {
    background: rgba(14, 119, 188, 0.1);
    border: 1px solid rgba(14, 119, 188, 0.15);
    border-radius: 6px;
    padding: 12px 8px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .plan-card:hover .spec {
    border-color: rgba(14, 119, 188, 0.3);
    background: rgba(14, 119, 188, 0.15);
  }

  .spec-label {
    font-size: 0.7rem;
    color: var(--muted-text);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
  }

  .spec-value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--light-text);
  }

  .plan-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-accent);
    margin: 15px 0;
    text-align: center;
  }

  .price-period {
    font-size: 0.9rem;
    color: var(--muted-text);
    font-weight: normal;
  }

  .cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background-color: var(--primary-accent);
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: auto;
  }

  .cta-button:hover {
    background-color: #0e5f96;
    transform: translateY(-2px);
  }

  .customize-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background-color: rgba(14, 119, 188, 0.2);
    color: var(--primary-accent);
    border: 1px solid var(--primary-accent);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: auto;
  }

  .customize-btn:hover {
    background-color: rgba(14, 119, 188, 0.3);
    transform: translateY(-2px);
  }

  /* Default: hidden on all screens */
  .sticky-order-btn {
    display: none;
  }

  .sticky-order-btn {
    display: none;
  }

  @media (max-width: 768px) {
    .sticky-order-btn {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 9999;
      display: none;
      background-color: #1E90FF;
      color: #fff;
      padding: 14px 28px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 1rem;
      text-align: center;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      border: none;
      transition: background 0.3s ease, transform 0.3s ease;
      white-space: nowrap;
    }

    .sticky-order-btn i {
      margin-right: 8px;
      font-size: 1.1rem;
    }

    .sticky-order-btn:hover {
      background-color: #0c6bab;
      transform: translateX(-50%) scale(1.03);
    }

    .sticky-order-btn.show {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
  }

  @media (max-width: 992px) {
    .features {
      display: none;
    }
  }

  /* Only show on mobile + if scrolled */
  @media (max-width: 768px) {
    .sticky-order-btn {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 9999;
      max-width: 90%;
      width: auto;
      display: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .sticky-order-btn.show {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
  }

  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(14, 119, 188, 0.6);
    }

    70% {
      box-shadow: 0 0 0 8px rgba(14, 119, 188, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(14, 119, 188, 0);
    }
  }

  /* Responsive */
  @media (max-width: 992px) {
    .rust-upper-hero {
      flex-direction: column;
    }

    .rust-hero-content,
    .rust-hero-image {
      width: 100%;
    }

    .rust-hero-image {
      width: 100%;
      min-height: 350px;
      /* Slightly smaller for mobile */
      justify-content: center;
      margin-bottom: 30px;
    }

    .rust-hero-image img {
      max-width: 80%;
    }

    .headline {
      font-size: 2.8rem;
      text-align: center;
    }

    .subheadline {
      text-align: center;
    }

    .features {
      justify-content: center;
    }

    .pricing-title {
      text-align: center;
    }

    .pricing-tabs {
      justify-content: center;
    }
  }

  @media (max-width: 768px) {
    .plans-grid {
      grid-template-columns: repeat(1, 1fr);
    }

    .headline {
      font-size: 2.2rem;
    }

    .pricing-tabs {
      flex-wrap: wrap;
    }

    .tab {
      flex: 1 0 40%;
      min-width: unset;
    }

    .rust-hero {
      padding-top: 100px;
      min-height: auto;
    }

    .plan-specs {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .spec {
      padding: 8px 5px;
    }

    .spec-value {
      font-size: 0.9rem;
    }
  }

  /* Rust Features Section */
  .rust-features {
    padding: 20px 0 80px 0; /* Top: 20px, Right: 0, Bottom: 80px, Left: 0 */
    background-color: #0B0B13;
    position: relative;
    overflow: hidden;
  }

  .features-grid {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  /* Video container - improved styling */
  .video-container {
    flex: 1;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(14, 119, 188, 0.3);
    background-color: transparent;
    /* Remove black background */
  }

  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    /* Remove black background */
    border: none;
  }

  .image-container {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #1E90FF;
    box-shadow:
      0 0 15px rgba(30, 144, 255, 0.6),
      /* outer glow */
      0 0 30px rgba(30, 144, 255, 0.4),
      /* larger soft glow */
      0 10px 30px rgba(0, 0, 0, 0.3);
    /* original shadow */
    max-width: 100%;
    max-height: 90vh;
    transition: box-shadow 0.3s ease;
  }

  .image-container:hover {
    box-shadow:
      0 0 25px rgba(30, 144, 255, 0.8),
      0 0 40px rgba(30, 144, 255, 0.6),
      0 15px 40px rgba(0, 0, 0, 0.4);
  }

  .image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }


  .features-content {
    flex: 1;
    padding: 20px;
  }

  .features-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--light-text);
  }

  .features-text {
    font-size: 1.1rem;
    color: var(--muted-text);
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .accent {
    color: var(--primary-accent);
    font-weight: 700;
  }

  /* Alternate layout - image on right, text on left */
  .rust-features-alt .features-grid {
    flex-direction: row-reverse;
    /* Changed to row-reverse for correct layout */
  }

  /* Responsive styles */
  @media (max-width: 992px) {

    .features-grid,
    .rust-features-alt .features-grid {
      flex-direction: column;
    }

    .video-container,
    .image-container,
    .features-content {
      width: 100%;
    }

    .video-container,
    .image-container {
      margin-bottom: 30px;
    }

    /* For mobile, we want image/video first, then text */
    .rust-features-alt .features-grid {
      flex-direction: column-reverse;
    }
  }

  /* Simple HTML-based YouTube embed solution */
  .simple-video-embed {
    flex: 1;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(14, 119, 188, 0.3);
  }

  .simple-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  /* Trust Banner Below Pricing */
  .pricing-trust-banner {
    display: flex;
    justify-content: center;
    margin: 40px 0 20px;
    padding: 20px;
    background: rgba(30, 30, 40, 0.4);
    border: 1px solid rgba(14, 119, 188, 0.2);
    border-radius: 8px;
  }

  .pricing-trustpilot-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .pricing-trustpilot-img {
    height: 50px;
  }

  .pricing-review-text {
    font-size: 0.9rem;
    color: var(--muted-text);
    margin: 0;
  }

  .pricing-review-highlight {
    color: var(--primary-accent);
    font-weight: 700;
  }

  /* Trust Banner Below Pricing - Improved Version */
  .pricing-trust-banner {
    display: flex;
    justify-content: center;
    margin: 40px 0 20px;
    padding: 20px;
    background: rgba(30, 30, 40, 0.4);
    border: 1px solid rgba(14, 119, 188, 0.2);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .pricing-trustpilot-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
  }

  .rating-group {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .pricing-trustpilot-img {
    height: 30px;
    width: auto;
  }

  .pricing-trustpilot-logo {
    height: 50px;
    width: auto;
  }

  .logo-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(14, 119, 188, 0), rgba(14, 119, 188, 0.3), rgba(14, 119, 188, 0));
    display: block;
  }

  .pricing-review-text {
    font-size: 0.9rem;
    color: var(--muted-text);
    line-height: 1.4;
  }

  .pricing-review-highlight {
    color: var(--primary-accent);
    font-weight: 700;
    font-size: 1.1rem;
  }

  /* Mobile optimizations */
  @media (max-width: 600px) {
    .pricing-trustpilot-container {
      flex-direction: column;
      gap: 20px;
    }

    .logo-divider {
      width: 80px;
      height: 1px;
      background: linear-gradient(to right, rgba(14, 119, 188, 0), rgba(14, 119, 188, 0.3), rgba(14, 119, 188, 0));
    }

    .rating-group {
      flex-direction: column;
      text-align: center;
    }

    .pricing-review-text {
      text-align: center;
    }
  }