:root {
  --primary: #0033FF;
  --secondary: #00F0FF;
  --success: #00E676;
  --background: #1a1f2b;
  --dark2: #0B1222;
  --text: #FFFFFF;
  --card-bg: #3264ca;
  --card-border: #67cfff;
  --button-bg-gradient: linear-gradient(90deg, #0000ff, #00008b);
}

html {
  height: 100%;
  background: #081638;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  color: var(--text);
  font-family: 'Inter', sans-serif;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background: transparent;
}

@media (max-width: 768px) {
    .navbar-toggler {
        right: 15px;
        top: 25px;
    }
}

.primary-bg-color {
  background: #081638;
  min-height: 100%;
  width: 100%;
}

.mc2025-container {
  position: relative;
  max-width: 1400px;
  padding: 2rem;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.mc2025-hero {
  text-align: center;
  padding: 0 1rem;
  animation: fadeIn 1s ease-out;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 2;
  background-image: url('../images/Minecraft/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 50vh;
  height: calc(100vh - 182px);
  align-items: center;
  max-height: 750px;
}

/* Add overlay to ensure text readability */
.mc2025-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(3, 32, 102, 0.8), rgba(3, 32, 102, 0.7));
  z-index: -1;
}

.mc2025-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mc2025-hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.mc2025-hero .hero-description {
  font-size: 1.5rem;
  opacity: 0.9;
  margin: 0 0 3rem;
  line-height: 1.6;
}

.mc2025-hero .hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 0;
}

.mc2025-hero .hero-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.mc2025-hero .hero-price .starting-from {
  font-size: 1.2rem;
  opacity: 0.8;
}

.mc2025-hero .hero-price .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--success);
}

.mc2025-hero .hero-price .period {
  font-size: 1.2rem;
  opacity: 0.8;
}

.mc2025-view-plans-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--button-bg-gradient);
  color: var(--text);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 139, 0.3);
}

.mc2025-view-plans-btn:hover {
  transform: translateY(3px);
  box-shadow: 0 6px 20px rgba(0, 0, 139, 0.5);
}

.mc2025-view-plans-btn i {
  transition: transform 0.3s ease;
}

.mc2025-view-plans-btn:hover i {
  transform: translateY(3px);
}

/* Features Section */
.mc2025-features-section {
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0;
  background: #1a1f2b;
  margin-bottom: 6rem;
  height: auto;
  min-height: 0;
}

.mc2025-features-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.mc2025-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  height: auto;
  min-height: 0;
}

.mc2025-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem;
  transition: all 0.3s ease;
  background: #0B1222;
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.05);
  height: auto;
  min-height: 0;
}

.mc2025-feature-item:hover {
  transform: translateY(-5px);
  border-color: #00F0FF;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.1);
}

.mc2025-feature-icon {
  font-size: 2.75rem;
  color: #00F0FF;
  margin-bottom: 0.75rem;
}

.mc2025-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.mc2025-feature-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  margin: 0;
  max-width: 200px;
}

/* Billing Toggle */
.mc2025-billing-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  scroll-margin-top: 2rem;
}

.mc2025-billing-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.mc2025-billing-toggle {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem auto 6rem;
  background: rgba(11, 18, 34, 0.9);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 2px solid rgba(0, 240, 255, 0.2);
  max-width: 800px;
  position: relative;
  animation: slideDown 0.5s ease-out;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
  backdrop-filter: blur(10px);
}

.mc2025-billing-toggle button {
  background: rgba(0, 51, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--text);
  padding: 1rem 2rem;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  overflow: visible;
  min-width: 140px;
  text-align: center;
}

.mc2025-billing-toggle button:hover {
  background: rgba(0, 51, 255, 0.2);
  border-color: rgba(0, 240, 255, 0.4);
  transform: translateY(-2px);
}

.mc2025-billing-toggle button.active {
  background: var(--button-bg-gradient);
  font-weight: 600;
  box-shadow: 0 0 20px rgba(0, 51, 255, 0.3);
}

.mc2025-tag {
  background: #FF6B4A;
  padding: 0.25rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(255, 107, 74, 0.3);
}

/* Products Section */
.mc2025-section {
  text-align: center;
  margin-bottom: 6rem;
}

.mc2025-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mc2025-section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.mc2025-plan-slider {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 1;
  height: auto;
  min-height: 0;
}

.mc2025-plan-card {
  background: #0B1222;
  border: 2px solid rgba(103, 207, 255, 0.2);
  border-radius: 1.25rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 380px;
  opacity: 1 !important;
  margin-top: 50px;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.05);
  position: relative;
  z-index: 2;
  height: auto;
  min-height: 0;
}

.mc2025-plan-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.1);
}

.mc2025-plan-icon {
  width: 150px;
  height: 150px;
  margin: -110px auto 1.5rem;
  position: relative;
  z-index: 2;
}

.mc2025-plan-icon .icon-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.mc2025-plan-icon .icon-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mc2025-plan-card h3 {
  font-size: 1.75rem;
  margin: 1rem 0;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.mc2025-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: center;
}

.mc2025-features li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.mc2025-features li::before {
  content: "✓";
  color: var(--success);
  font-weight: bold;
}

.mc2025-features li strong {
  color: var(--text);
  font-weight: 600;
}

.mc2025-price-tag {
  background: #00E676;
  color: var(--text);
  padding: 5px 20px;
  border-radius: 100px;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  position: relative;
  gap: 4px;
  width: fit-content;
}
.mc2025-price-tag .old-price {
  font-size: 0.85em;
  color: #b71c1c;
  text-decoration: line-through;
  font-weight: 700;
  opacity: 0.7;
  text-align: left;
  vertical-align: middle;
}

.mc2025-hero .hero-price .old-price {
  font-size: 1.5em;
  color: #b71c1c;
  text-decoration: line-through;
  font-weight: 700;
  opacity: 0.7;
  text-align: left;
  vertical-align: middle;
}
.mc2025-price-tag .price {
  font-weight: 600;
  font-size: 1.2em;
}

.mc2025-price-tag .period {
  font-size: 0.9em;
}

.discount-badge {
  position: absolute;
  top: -19px;
  right: 15px;
  background: linear-gradient(135deg, #ff6a00, #ff3d00);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s ease;
}


.mc2025-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--button-bg-gradient);
  color: var(--text);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mc2025-order-btn:hover {
  background: var(--secondary);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 240, 255, 0.4);
  text-decoration: none;
}

/* Remove all Slick-related styles since we're not using them */
.slick-slide,
.slick-current,
.slick-prev,
.slick-next,
.slick-dots {
  display: none;
}

/* Update Swiper navigation styles */
.swiper-button-prev,
.swiper-button-next {
  color: var(--text);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 1;
}

.swiper-pagination-bullet {
  background: var(--text);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--secondary);
  opacity: 1;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .mc2025-container {
    padding: 1rem;
  }
  
  .mc2025-hero h1 {
    font-size: 2.5rem;
  }
  
  .mc2025-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .mc2025-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .mc2025-container {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .mc2025-container {
    padding: 1rem;
    position: relative;
    display: block;
  }

  .mc2025-hero {
    padding: 0 1rem;
    min-height: 40vh;
    height: calc(100vh - 136px);
  }
  
  .mc2025-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .mc2025-hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .mc2025-hero .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .mc2025-features-title,
  .mc2025-billing-title,
  .mc2025-section-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .mc2025-section-subtitle,
  .mc2025-billing-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 2rem;
  }

  .mc2025-billing-toggle {
    padding: 1.5rem;
    gap: 1rem;
    flex-direction: column;
  }

  .mc2025-billing-toggle button {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .mc2025-plan-card {
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
  }

  .mc2025-plan-icon {
    width: 100px;
    height: 100px;
    margin: -70px auto 1rem;
  }

  .mc2025-plan-card h3 {
    font-size: 1.5rem;
  }

  .mc2025-features li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
  }

  .mc2025-price-tag {
    padding: 5px 12px;
    margin: 1rem 0;
    width: auto;
  }

  .mc2025-price-tag .price {
    font-size: 1.1em;
  }

  .mc2025-price-tag .period {
    font-size: 0.85em;
  }

  .mc2025-order-btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }

  .mc2025-plan-selector {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    border-radius: 0;
    padding: 1rem;
    z-index: 100;
  }

  .mc2025-plan-slider {
    padding-top: 2rem;
  }

  .plan-tag {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
  }

  .faq-question h3 {
    font-size: 1rem;
    text-align: left;
  }

  .faq-answer p {
    font-size: 0.9rem;
    text-align: left;
  }

  .control-panel-preview {
    margin-bottom: 2rem;
  }

  .panel-feature,
  .support-channel,
  .modpack-card {
    padding: 1.5rem;
  }

  .info-box {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .mc2025-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mc2025-container {
    padding: 0.5rem;
    position: relative;
    display: block;
    visibility: visible;
    opacity: 1;
  }
  
  .mc2025-plan-slider {
    padding-top: 2rem;
    display: block;
  }
  
  .mc2025-plan-card {
    padding: 1rem;
    margin: 1.5rem 0;
  }
  
  .mc2025-section {
    margin-bottom: 3rem;
    display: block;
  }
}

@media (max-width: 480px) {
  .mc2025-container {
    padding: 0.5rem;
  }
  
  .mc2025-plan-selector {
    padding: 0.75rem;
  }
}

.swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  opacity: 1 !important;
  transform: none !important;
}

/* Add ID to budget plans section */
#budget-plans {
  scroll-margin-top: 2rem;
}

/* Add styles for navbar to ensure it's above hero */
.navbar, 
.toolbar,
header {
  position: relative;
  z-index: 5;
  height: auto !important;
}


/* Remove old FAQ section styles */
.mc2025-section:has(.mc2025-faq-container),
.mc2025-features-section:has(.mc2025-faq-container) {
    display: none;
}

/* FAQ styles using features section structure */
.mc2025-features-section:has(.mc2025-faq-container) {
    background: #1a1f2b;
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0;
    margin-bottom: 6rem;
}

/* Control Panel Section */
.control-panel-section {
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0;

  margin-bottom: 6rem;
}

.control-panel-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 0 1rem;
}

.control-panel-main {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.control-panel-preview {
  background: #0B1222;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.2);
  transition: all 0.3s ease;
}

.control-panel-preview:hover {
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.15);
}

.control-panel-preview img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.control-panel-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0;
}

.panel-feature {
  background: #0B1222;
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.panel-feature:hover {
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
  transform: translateY(-5px);
}

.panel-feature i {
  font-size: 2rem;
  color: #00F0FF;
  margin-bottom: 1rem;
}

.panel-feature h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.panel-feature p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .control-panel-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc2025-container {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .mc2025-container {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .control-panel-features {
    grid-template-columns: 1fr;
  }
}

/* Support Section */
.support-section {
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0;
    margin-bottom: 6rem;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.support-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 0;
}

.support-channel {
    background: #0B1222;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.support-channel:hover {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
    transform: translateY(-5px);
}

.channel-icon {
    font-size: 2.5rem;
    color: #00F0FF;
    margin-bottom: 1.5rem;
}

.support-channel h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.support-channel p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.channel-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex-grow: 1;
}

.channel-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.channel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--button-bg-gradient);
    color: var(--text);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    font-size: 0.95rem;
    width: 100%;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.channel-btn i {
    font-size: 1rem;
    margin-right: 0.25rem;
}

.channel-btn:hover {
    background: var(--secondary);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.4);
    text-decoration: none;
}

/* Modpack Section */
.modpack-section {
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0;
    background: var(--background);
}

.modpack-container {
    max-width: 1200px;
    margin: 0 auto;
}

.modpack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.modpack-card {
    background: #0B1222;
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modpack-card:hover {
    border-color: rgba(0, 240, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.modpack-icon {
    font-size: 2.5rem;
    color: #00F0FF;
    margin-bottom: 1.5rem;
}

.modpack-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.modpack-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modpack-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.modpack-features li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.modpack-info {
    margin-top: 3rem;
}

.info-box {
    background: rgba(0, 240, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.info-box i {
    font-size: 1.5rem;
    color: #00F0FF;
}

.info-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .modpack-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .modpack-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    background: #1a1f2b;
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.faq-item {
    background: #0B1222;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
}

.faq-question i {
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* Updated responsive design rules */
@media (max-width: 1200px) {
  .control-panel-features,
  .support-channels,
  .modpack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .control-panel-features,
  .support-channels,
  .modpack-grid {
    grid-template-columns: 1fr;
  }

  .control-panel-section,
  .support-section,
  .modpack-section,
  .faq-section {
    padding: 4rem 1rem;
  }
}

.faq-section .mc2025-features-title {
    margin-bottom: 0.5rem;
}

.faq-section .mc2025-section-subtitle {
    margin-bottom: 3rem;
}

.control-panel-section .mc2025-features-title {
    margin-bottom: 1rem;
}

.control-panel-section .mc2025-section-subtitle {
    margin-bottom: 4rem;
}

.support-section .mc2025-features-title {
    margin-bottom: 1rem;
}

.support-section .mc2025-section-subtitle {
    margin-bottom: 4rem;
}

.modpack-section .mc2025-features-title {
    margin-bottom: 1rem;
}

.modpack-section .mc2025-section-subtitle {
    margin-bottom: 4rem;
}

@media (max-width: 992px) {
    .mc2025-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .mc2025-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Plan Selector */
.mc2025-plan-selector {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto;
  background: rgba(11, 18, 34, 0.9);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  border: 2px solid rgba(0, 240, 255, 0.2);
  max-width: 600px;
  position: relative;
  animation: slideDown 0.5s ease-out;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.mc2025-plan-selector button {
  flex: 1;
  background: rgba(0, 51, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--text);
  padding: 1.25rem 1rem 0.75rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  overflow: visible;
  min-width: 130px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  outline: none;
}

.mc2025-plan-selector button:focus {
  outline: none;
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.2);
}

.mc2025-plan-selector button i {
  font-size: 1.5rem;
  color: #00F0FF;
  margin-bottom: 0.25rem;
  transition: all 0.3s ease;
}

.mc2025-plan-selector button:hover {
  background: rgba(0, 51, 255, 0.2);
  border-color: rgba(0, 240, 255, 0.4);
  transform: translateY(-2px);
}

.mc2025-plan-selector button:hover i {
  transform: scale(1.1);
  color: #fff;
}

.mc2025-plan-selector button.active {
  background: var(--button-bg-gradient);
  font-weight: 600;
  box-shadow: 0 0 20px rgba(0, 51, 255, 0.3);
}

.mc2025-plan-selector button.active i {
  color: #fff;
}

.plan-tag {
  background: #00F0FF;
  padding: 0.2rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  position: absolute;
  top: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 240, 255, 0.3);
}

@media (max-width: 768px) {
  .mc2025-plan-selector {
    padding: 1rem;
    gap: 0.75rem;
    flex-direction: column;
    max-width: 300px;
  }

  .mc2025-plan-selector button {
    width: 100%;
    padding: 1rem 0.75rem;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
  }

  .mc2025-plan-selector button i {
    margin-bottom: 0;
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .footer > .container > .row {
    gap: 15px;
  }
}

@media (max-width: 992px) {
   .footer > .container > .row {
    text-align: center;
  }
} 

.navbar-dark {
  padding: 20px 50px !important;
}


@media (max-width: 1200px) {
    .support-channels {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .support-channels {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 577px) and (max-width: 1200px) {
  .support-channel:nth-child(3) {
    grid-column: 1 / -1;
    margin: auto auto;
    width: calc((100% - 2rem) / 2);
  }
}

#fullpage-overlay{
  display: block !important;
}

/* Global button styles */
button {
  outline: none !important;
}

button:focus {
  outline: none !important;
}

button:focus-visible {
  outline: none !important;
}


.cpu-badge {
  display: inline-block;
  background: linear-gradient(90deg, #00f, #00d9ff);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 9999px;
  margin-top: 4px;
}

.cpu-badge-ryzen9 {
  display: inline-block;
  background: linear-gradient(90deg, #ff006a, #ff9800); /* reddish to orange */
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 9999px;
  margin-top: 4px;
}
