:root {
  --primary-color: rgba(255, 255, 255, 0.15);
  --secondary-color: #000000;
  --text-color: #ffffff;
  --light-text-color: #4e4d4d;
  --border-color: #001f9a;
  --spacing: 24px;
  --border-radius: 8px;

  --neon-blue: #ff0000;
  --deep-space: #010b19;
  --neon-purple: #bc13fe;
  --electric-glow: rgba(255, 243, 255, 0.5);
  --wave-color: rgba(0, 243, 255, 0.1);
}




.cyber-section {
  background-color: var(--deep-space);
  min-height: 100vh;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}


.electric-card {
  background: rgba(1, 11, 25, 0.8);
  border-radius: 8px;
  border: 1px solid var(--neon-blue);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
  backdrop-filter: blur(10px);

  max-width: 70%;
  margin: 0 auto;
  padding: 2rem;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem;
  position: relative;
  z-index: 1;
}

.electric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: var(--neon-blue);
  animation: electricSlide 3s linear infinite;
}

@keyframes electricSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

.cyber-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  position: relative;
  stroke: var(--neon-blue);
  filter: drop-shadow(0 0 5px var(--electric-glow));
}

.cyber-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--neon-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px var(--electric-glow);
  font-family: 'Arial', sans-serif;
}

.cyber-content {
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.cyber-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.cyber-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  border-left: 2px solid var(--neon-blue);
}

.cyber-list li::before {
  content: '>';
  position: absolute;
  left: 0.5rem;
  color: var(--neon-blue);
  font-family: monospace;
}

.scanner-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--neon-blue) 50%, 
    transparent 100%
  );
  top: 0;
  animation: scan 3s linear infinite;
}

@keyframes scan {
  0% { transform: translateY(0); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

.glitch-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--neon-blue);
  opacity: 0;
  mix-blend-mode: overlay;
  animation: glitch 4s linear infinite;
}

@keyframes glitch {
  0% { opacity: 0; }
  1% { opacity: 0.1; }
  2% { opacity: 0; }
  90% { opacity: 0; }
  91% { opacity: 0.1; }
  92% { opacity: 0; }
  100% { opacity: 0; }
}

@media (max-width: 768px) {
  .electric-card {
    padding: 1.5rem;
  }
  
  .cyber-title {
    font-size: 1.5rem;
  }
  
  .cyber-content {
    font-size: 1rem;
  }
}

a {
  color: var(--neon-blue);
  text-decoration: none;
  position: relative;
  font-weight: bold;
}

a:hover {
  text-shadow: 0 0 8px var(--electric-glow);
}

@media screen and (max-width: 768px) {
  .cards-container {
      flex-direction: column;
      padding: 10px;
  }

  .electric-card {
      margin: 10px;
      min-width: calc(100% - 20px);
      width: calc(100% - 20px);
      box-sizing: border-box;
  }

  .cyber-content {
      font-size: 14px;
      line-height: 1.5;
  }
}

@media screen and (max-width: 480px) {
  .cards-container {
      padding: 5px;
  }

  .electric-card {
      margin: 5px;
      padding: 15px;
      min-width: calc(100% - 10px);
      width: calc(100% - 10px);
  }

  .cyber-title {
      font-size: 18px;
  }
} 




.coupon-container {
  margin: 10px 0;
}

.coupon-input {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 80%;
  max-width: 200px;
  margin: 5px 0;
  font-size: 14px;
}

.coupon-input:focus {
  border-color: #4A90E2;
  outline: none;
}

.coupon-message {
  font-size: 0.9em;
  margin: 5px 0;
  min-height: 20px;
}

.coupon-message.success {
  color: #28a745;
}

.coupon-message.error {
  color: #dc3545;
}

.price-breakdown {
  margin: 15px 0;
  padding: 10px;
  background: var(--secondary-color);
  border-radius: 4px;
  text-align: left;
}

.price-line {
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
  font-size: 0.9em;
}

.final-price {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-weight: bold;
}

.hidden {
  display: none;
}

.pricing-details {
  margin: 15px 0;
}

header {
  background-color: var(--secondary-color);
  box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 2px 6px 2px rgba(60,64,67,0.15);
  padding: 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 0 20px;
}

.navbar_button {
  background: transparent;
  border: none;
  padding: 8px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  touch-action: manipulation;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.navbar_button:hover {
  opacity: 0.8;
  background: transparent;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .navbar_button {
      padding: 12px;  /* Larger touch target for mobile */
      font-size: 14px;
  }
}

/* Prevent text selection on touch devices */
@media (hover: none) {
  .navbar_button {
      -webkit-touch-callout: none;
  }
}

/* Remove focus outline for non-keyboard users */
.navbar_button:focus:not(:focus-visible) {
  outline: none;
}

/* Maintain accessibility for keyboard users */
.navbar_button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: block;
  text-decoration: none;
}

.logo img {
  height: 34px;
  width: auto;
  margin-right: 10px;
}

/* .hero {
  position: relative;
  height: 80vh;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url('images/heroback.png'), url('images/hero.png');
  background-size: cover, cover;
  background-position: center, center;
  background-attachment: fixed, fixed;
  z-index: 100;
}

.hero-logo {
  position: relative;
  z-index: 1000;
  max-width: 800px;
  width: 80%;
  height: auto;
  margin: 0 auto;
  display: block;
  text-align: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-buttons {
  position: absolute;  /* Changed back to absolute */
  bottom: 15%;        /* Consistent 15% from bottom */
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  min-width: 180px;
}

@media screen and (max-width: 768px) {
  .hero-buttons {
      bottom: 15%;    /* Maintain 15% from bottom */
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding: 0 20px;
  }

  .hero-btn {
      width: 100%;
      max-width: 300px;
      min-width: unset;
      padding: 12px 20px;
      font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .hero-buttons {
      bottom: 15%;    /* Maintain 15% from bottom */
      padding: 0 15px;
  }

  .hero-btn {
      max-width: 250px;
  }
}

.hero-btn.btn-primary {
  background: rgba(1, 1, 35, 0.5);
  color: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #010123(255, 255, 255, 0.2);

}

.hero-btn.btn-secondary {
  background: rgba(1, 1, 35, 0.5);
  color: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(0, 243, 255, 0.4);
}

.hero-btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
} */

.solodome-link {
  color: var(--neon-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.solodome-link:hover {
  color: #fff;
  text-decoration: underline;
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-icon {
  margin-left: 8px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* .hero-btn:hover .btn-icon {
  transform: translateX(4px);
} */

/* Add shimmer effect for primary button */
/* .hero-btn.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
      45deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent
  );
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
} */

@keyframes shimmer {
  0% {
      transform: translateX(-100%) rotate(45deg);
  }
  100% {
      transform: translateX(100%) rotate(45deg);
  }
}

/* .hero-content {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  text-align: center;
} */

h1 sup {
  font-size: 0.5em;
  vertical-align: super;
}

.subscribe-btn {
  display: block;
  width: 200px;
  margin: 20px auto;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s;
}

.subscribe-container {
  position: absolute;
  left: 50%;
  bottom: 25%;
  transform: translateX(-50%);
  z-index: 2;
  width: auto;
  color: white;

}

#subscribeBtn {
  display: block;
  width: 200px;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s;
  position: relative;
  z-index: 2;
  
}

/* Mobile adjustments */
/* @media screen and (max-width: 768px) {
  .subscribe-container {
      width: 100%;
      padding: -20px 20px;
      box-sizing: border-box;
  }
  
  #subscribeBtn {
      width: 80%;
      max-width: 200px;
      margin: 20px auto;
  }
} */


.main-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--secondary-color);
  color: white;
  transition: transform 0.3s ease-out;
}

.nav-hidden {
  transform: translateY(-100%);
}

.hidden {
  display: none;
}

.main-header nav {
  color: white;
}

.main-header .btn {
  color: white;
}

.main-header .btn-primary {
  background-color: var(--secondary-color);
}

.main-header .btn-link {
  color: #b3b3ff;
}
.lock-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: white;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  padding: 5px;
  z-index: 10;
}

.app-item.locked .app-thumbnail {
  opacity: 1.0;
}

main {
  padding: var(--spacing) 0;
}



/* App Store Grid Layout */
.app-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #000000;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 20px 0;
}

/* App Card Styling */
.app-card {
  background: rgba(1, 11, 25, 0.8);
  border-radius: 8px;
  border: 1px solid var(--neon-blue);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: var(--neon-blue);
  animation: electricSlide 3s linear infinite;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 243, 255, 0.3);
}

.app-card-content {
  padding: 20px;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.app-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--neon-blue);
  text-shadow: 0 0 10px #87010180;
}

.app-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.app-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 243, 255, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.app-button:hover {
  background: rgba(0, 243, 255, 0.2);
  border-color: rgba(0, 243, 255, 0.3);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.launch-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--neon-blue);
}

.app-list {
  background-color: var(--deep-space);
  padding: 2rem;
}

/* Keep the existing animation */
@keyframes electricSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .app-grid {
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 16px;
      padding: 16px 0;
  }

  .app-card-content {
      padding: 16px;
  }

  .app-title {
      font-size: 1.1rem;
  }

  .app-description {
      font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .app-list {
      padding: 12px;
  }

  .app-grid {
      grid-template-columns: 1fr;
      gap: 12px;
  }
}

.app-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #ffffff;
}

.app-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

/* App Button */
.app-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 243, 255, 0.1);
  border: 1px solid rgba(0, 243, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.app-button:hover {
  background: rgba(0, 243, 255, 0.2);
  border-color: rgba(0, 243, 255, 0.3);
}

.launch-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #00f3ff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .app-grid {
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 16px;
      padding: 16px 0;
  }

  .app-card-content {
      padding: 16px;
  }

  .app-title {
      font-size: 1.1rem;
  }

  .app-description {
      font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .app-list {
      padding: 12px;
  }

  .app-grid {
      grid-template-columns: 1fr;
      gap: 12px;
  }
}

@media (min-width: 768px) {
  .article-card {
      flex-direction: row;
      align-items: center;
  }

  .article-thumbnail {
      width: 40%;
      height: 250px;
  }

  .article-content {
      width: 60%;
      padding: 30px;
  }

  .article-content h3 {
      font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .article-grid {
      max-width: 1100px;
  }

  .article-thumbnail {
      width: 35%;
      height: 300px;
  }

  .article-content {
      width: 65%;
      padding: 40px;
  }

  .article-content h3 {
      font-size: 2.2rem;
  }

  .article-content p {
      font-size: 1.1rem;
  }
}



@media (min-width: 768px) {
  .article-grid {
      grid-template-columns: repeat(12, 1fr);
  }
  .article-card:first-child {
      grid-column: span 8;
      grid-row: span 0.5;
  }
  .article-card:not(:first-child) {
      grid-column: span 4;
  }
  .article-card:first-child .article-thumbnail {
      height: 300px;
  }
}

@media (min-width: 1024px) {
  .article-card:first-child {
      grid-row: span 2;
  }
  .article-card:first-child .article-thumbnail {
      height: 400px;
  }
}

.centered-image-section {
  text-align: center;
  padding: 10px 0 0 0;  /* Reduced padding */
  background-color: #000000;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;  /* Removed bottom margin */
}

.feature-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  width: 100%;
  margin-top: 0;  /* Added to ensure no top gap */
}

.feature-image-wrapper {
  background-color: #000000;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  margin-top: 0;  /* Added to ensure no top gap */
}

.container {
  padding-top: 0;  /* Changed from 100px to 0 */
}

.image-container {
  margin-bottom: 20px;  /* Reduced from 60px */
}

.feature-image {
  max-width: 1000px;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.feature-text-wrapper {
  width: 100%;
  background: var(--secondary-color);
  padding: 20px 0;
  backdrop-filter: blur(10px);
}

.feature-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.feature-text h2 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 2em;
}

.feature-text p {
  color: #ffffff;
  line-height: 1.6;
  font-size: 1.1em;
}


.info-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 1rem;
  background-color: var(--secondary-color);
  
  

}

.info-card {
  background-color: #ffffff;
  border-radius: 0.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 188, 212, 0.1);
  
  
}

.info-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 188, 212, 0.15);
}

.info-card-header {
  background-color: var(--primary-color);
  background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: #313131;
  padding: 1rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.info-card-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
}

.info-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.75rem;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.5;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.info-card h2 {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #313131;
}

.info-card-content {
  padding: 1.75rem;
  text-align: left;
}

.info-card p, 
.info-card ul {
  color: #020e78;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.info-card ul {
  list-style-type: none;
  padding: 0;
}

.info-card li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

.info-card li:last-child {
  margin-bottom: 0;
}

.info-card li:before {
  content: '✦';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .info-section {
      padding: 2rem 1rem;
      gap: 1.5rem;
  }
  
  .info-card {
      max-width: 100%;
  }
  
  .info-card-header {
      padding: 1.25rem 1rem;
  }
  
  .info-icon {
      width: 40px;
      height: 40px;
  }
  
  .info-card-content {
      padding: 1.25rem;
  }
  
  .info-card h2 {
      font-size: 1.25rem;
  }
}

@media (hover: hover) {
  .info-card:hover .info-icon {
      transform: scale(1.1);
      transition: transform 0.3s ease;
  }
}

#planSection {
  padding: 40px 0;
}

#planSection.hidden {
  display: none;
}

#planSection .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#planSection .plans {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

#planSection .plan {
  background: #000000;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  padding: 30px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

#planSection .plan.featured {
  position: relative;
  padding-bottom: 60px;
}

#planSection .plan.featured::before {
  content: 'Solodome Audio';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #181818;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: bold;
}

#planSection h3 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

#planSection p {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

#planSection .price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  margin: 5px 0;
}

#planSection .coupon-container {
  margin: 20px 0;
}

#planSection .coupon-input {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

#planSection .coupon-message {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #fff;
}

#planSection .coupon-message.success {
  color: #28a745;
}

#planSection .coupon-message.error {
  color: #dc3545;
}

#planSection .price-breakdown {
  margin: 20px 0;
  font-size: 0.9rem;
  color: #fff;
}

#planSection .price-breakdown.hidden {
  display: none;
}

#planSection .price-line {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}

#planSection .final-price {
  font-weight: bold;
}

#planSection .subscribe-container {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
}

#planSection .select-plan-btn {
  display: inline-block;
  width: 90%; /* This helps center the button with consistent margins */
  max-width: 300px;
  padding: 10px 5px;
  background: var(--border-color);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

#planSection .select-plan-btn:hover {
  opacity: 0.9;
}

.plan-choice {
  min-height: 200px; /* Adjust based on your content */
  margin: 20px 0;
  padding: 20px 0;
  scroll-margin-top: 60px;
}

@media (max-height: 600px) {
  .plan-choice {
      margin: 10px 0;
      padding: 10px 0;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #planSection .plans {
      flex-direction: column;
  }
  
  #planSection .plan {
      max-width: 100%;
  }
  
  #planSection h3 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #fff;
  }
  
  #planSection p {
      color: #fff;
      font-size: 1.2rem;
      margin-bottom: 20px;
  }
  
  #planSection .price {
      font-size: 1.8rem;
  }
}

.sponsor-section {
  padding: 1rem;
  text-align: center;
  background: #000000;
}


.sponsor-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
  background: #010123;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--neon-blue);
}

.sponsor-header {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.sponsor-logo {
  max-width: 600px;
  height: auto;
  margin: 1rem auto;
}

.sponsor-description {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
  margin: 1rem 0;
}

.sponsor-link {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #001567;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.sponsor-link:hover {
  background-color: #0020a0;
}


.btn-secondary,
.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: .3rem 3rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.btn-secondary:hover,
.btn-primary:hover {
  background-color: #0808a2;
}

.btn-primary {
  background-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #0808a2;
}


.features {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
}

.features li {
  margin-bottom: 10px;
  color: #666;
}

.select-plan-btn {
  display: block;
  width: 200px;
  margin: 20px auto;
  padding: 12px 5px;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s;
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.auth-section {
  max-width: 400px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.auth-section h2 {
  margin-bottom: 20px;
  color: #2c3e50;
}

.auth-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1em;
}

.auth-form button {
  width: 100%;
  background-color: #3498db;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 1em;
  font-weight: bold;
}

.auth-form button:hover {
  background-color: #2980b9;
}



/* Adjusted wave container positioning */
.wave-container {
  position: absolute;
  
  width: 100%;
  height: 60%;
  top: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;  /* Reduced from original */
}

/* Adjusted image caption positioning */
.image-caption {
  color: #ffffff;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem !important;
  padding: 20px 15px 30px 15px;  /* Reduced top padding from 60px to 20px */
  -webkit-text-size-adjust: none;
}

/* Media query adjustments */
@media screen and (max-width: 768px) {
  .image-caption {
      padding: 20px 15px 30px 15px;  /* Consistent padding on mobile */
      font-size: 1.1rem !important;
      line-height: 1.3;
  }
}

@media screen and (max-width: 480px) {
  .image-caption {
      padding: 15px 15px 30px 15px;  /* Slightly reduced padding on smaller screens */
  }
}

.container {
  padding-top: 100px;
}

.centered-image-section {
  position: relative;
  width: 100%;
}



.centered-image-section {
  position: relative;
  width: 100%;
}

.wave-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #0a0a2a;
}

#waveform {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.container {
  position: relative;
  z-index: 2;
}


.solodome-link {
  color: #00a6ff;
  text-decoration: none;
}

.solodome-link:hover {
  text-decoration: underline;
}



.container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

.content-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-container {
  margin-bottom: 60px;
}


.button-container {
  margin-top: auto;
  padding-top: 60px;
  
}

.full-width-divider {
  width: 100vw;
  height: 2px;
  background-color: #2a71f4;
  margin: 20px 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}


form {
  display: flex;
  flex-direction: column;
}

input {
  margin-bottom: 16px;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
}

button {
  background-color: var(--primary-color);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #185abc;
}

footer {
  padding: 20px 0;
  background-color: #06061e;
}

footer .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

footer p {
  margin: 0;
  text-align: center;
  color: #f4f4f4;
}

.footer-links {
  margin-left: 15px;
}

.footer-links a {
  color: #f4f4f4;
  text-decoration: none;
  margin-left: 10px;
  font-size: 0.9em;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Media Queries */
@media (max-width: 1200px) {
  .container {
      max-width: 100%;
      padding: 0 20px;
  }

  .info-section {
      max-width: 100%;
      padding: 50px var(--spacing);
  }
}

@media (max-width: 992px) {
  .article-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  .info-section {
      flex-direction: column;
      align-items: center;
  }
  .plans {
      flex-direction: column;
      align-items: center;
  }
  .plan {
      width: 100%;
      max-width: 400px;
  }
}

@media (max-width: 768px) {
/* 
  .container {
      padding: 0 15px;
  }

  .hero {
      height: 60vh;
  }

  .hero-content {
      bottom: 20%;
  } */



  .wave-container {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 30px;
  }
  


  .container {
      padding-top: -20px;
  }
  .wave-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 200%;
      height: 100%;
  }

  .sponsor-logo {
      max-width: 300px;
      height: auto;
      margin: 1rem auto;
  }

  nav {
      height: 40px;
  }



  .logo img {
      height: 30px;
  }

  .nav-links a {
      margin-left: 10px;
      font-size: 0.8rem;
  }

  .launch-btn {
      padding: 15px 20px;
      font-size: 0.9rem;
  }

  .article-grid {
      grid-template-columns: 1fr;
  }

  .article-card:nth-child(1),
  .article-card:nth-child(2),
  .article-card:nth-child(3) {
      grid-column: span 1;
  }

  .article-card:nth-child(1) .article-thumbnail {
      height: 250px;
  }

  .info-card {
      max-width: 100%;
  }

  .auth-section {
      max-width: 90%;
      margin: 20px auto;
      padding: 20px;
  }

  .auth-section h2 {
      font-size: 1.8em;
  }

  .auth-form button {
      font-size: 0.9em;
  }

  footer .container {
      flex-direction: column;
  }

  .footer-links {
      margin-left: 0;
      margin-top: 10px;
  }
}

@media (max-width: 480px) {
  /* .hero {
      height: 50vh;
  }

  .hero-content {
      bottom: 25%;
  } */

  .wave-container {
      padding-top: 20px;
  }
/* 
  .image-caption {
      margin-bottom: 50px;
      font-size: 1rem;
  } */

  /* .subscribe-container {
      bottom: 20%;
  } */

  nav {
      padding: 0 10px;
  }

  .logo img {
      height: 25px;
  }

  .nav-links a {
      font-size: 0.4rem;
      margin-left: 8px;
  }
  
  .nav-buttons .btn {
      font-size: 12px;
      padding: 8px 12px;
  }

  .launch-btn {
      padding: 10px 20px;
      font-size: 0.9rem;
  }

  .info-section {
      padding: 40px 10px;
  }

  .info-card {
      padding: 15px;
  }

  .info-card h2 {
      font-size: 1.4rem;
  }

  .info-icon {
      width: 50px;
      height: 50px;
  }


  .plan {
      padding: 20px;
      min-width: 240px;
  }

  .plan h3 {
      font-size: 1.4em;
  }

  .plan .price {
      font-size: 2.5em;
  }

  .select-plan-btn {
      font-size: 1.2em;
      padding: 10px 16px;
  }

  .auth-section {
      padding: 15px;
  }

  .auth-section h2 {
      font-size: 1.6em;
  }

  .auth-form button {
      font-size: 0.85em;
  }
}



.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 8px;
}

.modal-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.btn-danger {
  background-color: #dc3545;
  color: white;
}

.btn-danger:hover {
  background-color: #c82333;
}
/* Optional: Style for the cancel button in the nav */
#cancelSubscriptionBtn {
  background-color: #dc3545;
  color: white;
  border: none;
}

#cancelSubscriptionBtn:hover {
  background-color: #c82333;
}


/* Ensure all content stays within viewport */
* {
  max-width: 100%;
  box-sizing: border-box;
}

/* For images and other media */
img, video, iframe {
  max-width: 100%;
  height: auto;
}


@media screen and (max-width: 768px) {
  /* Header/Navigation improvements */
  nav {
      height: 40px;
      padding: 0 10px;
  }
  
  .logo img {
      height: 25px;
  }
  
  .nav-links {
      gap: 8px;
  }

  .nav-links .btn {
      padding: 8px 12px;
      font-size: 0.9rem;
  }

  /* Hero section adjustments */
  /* .hero {
      height: 60vh;
  }



  .hero-btn {
      min-width: auto;
      width: calc(50% - 10px);
      padding: 12px 16px;
      font-size: 0.9rem;
  } */


  /* Electric cards responsiveness */
  .electric-card {
      margin: 10px;
      min-width: calc(100% - 20px);
      padding: 1.5rem;
  }

  .cyber-title {
      font-size: 1.5rem;
  }

  .cyber-content {
      font-size: 0.95rem;
  }

  /* Plan section adjustments */
  #planSection .plan {
      padding: 20px;
  }

  #planSection h3 {
      font-size: 1.8rem;
  }

  #planSection .select-plan-btn {
      width: 90%;
      font-size: 1.1rem;
  }

  /* Sponsor section */
  .sponsor-logo {
      max-width: 80%;
  }

  /* Article grid improvements */
  .article-card {
      flex-direction: column;
  }

  .article-thumbnail {
      width: 100%;
      height: 200px;
  }

  .article-content {
      width: 100%;
      padding: 20px;
  }

  .article-content h3 {
      font-size: 1.4rem;
  }
  /* .hero-content {
      bottom: 3%;  
  }

  .hero-buttons {
      bottom: 3%;   
      flex-direction: column;
      align-items: center;
      gap: 5px;
      padding: 0 20px;
  } */
}



@media screen and (max-width: 480px) {

  /* Tighter spacing for smallest screens */
  .nav-links {
      gap: 5px;
  }

  .nav-links .btn {
      padding: 6px 10px;
      font-size: 0.8rem;
  }

  /* Hero adjustments */
  /* .hero {
      height: 50vh;
  }

  .hero-btn {
      width: 100%;
      margin: 5px 15px;
  } */

  /* Cards and content */
  .electric-card {
      margin: 5px;
      padding: 15px;
  }

  .cyber-title {
      font-size: 1.3rem;
  }

  /* Plan section */
  #planSection h3 {
      font-size: 1.5rem;
  }

  /* Article adjustments */
  .article-content {
      padding: 15px;
  }

  .article-content h3 {
      font-size: 1.2rem;
  }

  /* Modal improvements */
  .modal-content {
      width: 95%;
      margin: 10% auto;
      padding: 15px;
  }

  /* Forms */
  .auth-form input,
  .coupon-input {
      font-size: 16px; /* Prevents iOS zoom on focus */
  }
}



/* Ensure proper stacking for waves */
.wave-container {
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
}

/* Improve form element touch targets */
input[type="text"],
input[type="email"],
input[type="password"],
button {
  min-height: 44px; /* iOS minimum touch target size */
}