/* Keep only base styles and common components here */
:root {
  --gold-500: #c0a062;
  --gold-600: #a78845;
  --dark-primary: #f8f8f8;
  --dark-secondary: #ffffff;
  --gray-100: #333333;
  --gray-400: #555555;
  --gray-800: #e0e0e0;
  --blue-500: #3b82f6;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-primary);
  color: var(--gray-100);
  line-height: 1.6;
}

/* Light background with dot pattern */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.1) 1px, transparent 0);
  background-size: 20px 20px;
  background-position: 0 0;
  z-index: -1;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Common components */
.metallic-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gold-500);
  color: var(--dark-primary);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.metallic-button:hover {
  background: var(--gold-600);
}

/* Header styles - using light theme */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
  background-color: rgba(248, 248, 248, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.25rem;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  position: relative;
  width: 1.75em;
  height: 1.75em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon i {
  position: absolute;
  transition: all 0.3s ease;
}

.logo-icon .fa-shield-halved {
  font-size: 1.75em;
  color: var(--gold-500);
  opacity: 0.95;
}

.logo-icon .icon-inner {
  font-size: 0.8em;
  color: var(--dark-primary);
  transform: translateY(1px);
}

.logo:hover .fa-shield-halved {
  transform: scale(1.1);
  color: var(--gold-600);
}

.logo:hover .icon-inner {
  transform: translateY(1px) scale(1.2);
  color: var(--gold-500);
}

.logo-icon .cube-shadow {
  opacity: 0.3;
  transform: translate(2px, 2px);
  filter: blur(1px);
}

.logo:hover .logo-icon i:first-child {
  transform: translate(-1px, -1px);
}

.logo:hover .logo-icon .cube-shadow {
  transform: translate(3px, 3px);
  opacity: 0.4;
}

.nav-links {
  display: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-link {
  color: var(--gray-100);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--gold-500);
}

/* Side Navigation */
.side-nav {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 50;
}

.side-nav-item {
  position: relative;
  width: 3rem;
  height: 3rem;
  background: var(--dark-secondary);
  border: 1px solid var(--gray-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all 0.3s;
}

.side-nav-item:hover {
  color: var(--gold-500);
  border-color: var(--gold-500);
  transform: translateX(-4px);
}

.side-nav-tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  background: var(--dark-secondary);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-200);
  border: 1px solid var(--gray-800);
  opacity: 0;
  pointer-events: none;
  transform: translateX(1rem);
  transition: all 0.3s;
  white-space: nowrap;
}

.side-nav-item:hover .side-nav-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Hide side nav on mobile */
@media (max-width: 768px) {
  .side-nav {
    display: none;
  }
}

/* Metallic Effects */
.metallic-gold {
  background: linear-gradient(
    135deg, 
    #C0A062 0%,
    #FFD700 25%,
    #FFF5E1 50%,
    #FFD700 75%,
    #C0A062 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0px 0px 10px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, var(--dark-primary), var(--dark-secondary));
  padding-top: 5rem;
  padding: 8rem 0;
  margin-bottom: 2rem;
}

.hero-content {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

/* Hero Section (additional styles) */
.hero-description {
  font-size: 1.25rem;
  color: var(--gray-400);
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.secondary-button {
  padding: 0.75rem 2rem;
  border: 1px solid var(--gray-600);
  color: var(--gray-300);
  border-radius: 0.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}

.secondary-button:hover {
  background: var(--gray-800);
}

/* More specific selector */
.hero-buttons .secondary-button {
  text-decoration: none;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  margin: 2rem auto;
  max-width: 1200px;
}

.stat-card {
  background: rgba(17, 17, 17, 0.5);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-800);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(192, 160, 98, 0.1);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--gold-500);
}

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: bold;
  color: white;
  margin: 0.5rem 0;
}

.stat-label {
  color: var(--gray-400);
  font-size: 0.9rem;
}

/* Responsive Grid Layout */
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-card {
    padding: 1rem;
  }
  
  .stat-icon {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 769px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Features Section */
.features {
  padding: 8rem 0;
  background: var(--dark-secondary);
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}

.section-description {
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--dark-primary);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-800);
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: rgba(192, 160, 98, 0.5);
  transform: translateY(-0.5rem);
  box-shadow: 0 10px 15px -3px rgba(192, 160, 98, 0.1);
}

.feature-icon {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--gray-400);
}

/* Apps Section */
.apps {
  padding: 8rem 0;
  background: var(--dark-primary);
  position: relative;
  overflow: hidden;
}

.apps::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 15%;
  background: linear-gradient(to right, transparent, var(--dark-primary));
  pointer-events: none;
  z-index: 1;
}

.apps::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 15%;
  background: linear-gradient(to left, transparent, var(--dark-primary));
  pointer-events: none;
  z-index: 1;
}

.apps-scroll {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: 320px;
  gap: 2rem;
  padding: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.apps-scroll::-webkit-scrollbar {
  display: none;
}

.app-card {
  scroll-snap-align: center;
  width: 280px;
  margin: 0 auto;
  background: var(--dark-secondary);
  border: 1px solid var(--gray-800);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s;
}

.app-card:hover {
  transform: translateY(-4px);
  border-color: var(--gray-800);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.app-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.app-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.app-description {
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.app-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.badge-gold {
  background: rgba(192, 160, 98, 0.2);
  color: rgb(255, 215, 0);
}

.badge-green {
  background: rgba(34, 197, 94, 0.2);
  color: rgb(134, 239, 172);
}

/* Pricing Section */
.pricing {
  padding: 8rem 0;
  background: var(--dark-secondary);
  margin-bottom: 2rem;
}

.pricing-card {
  max-width: 28rem;
  margin: 0 auto;
  position: relative;
}

.pricing-card-wrapper {
  background: linear-gradient(to bottom, var(--gold-600), var(--gold-700));
  padding: 1px;
  border-radius: 1rem;
}

.pricing-card-content {
  background: var(--dark-primary);
  border-radius: 0.75rem;
  padding: 2rem;
}

.popular-badge {
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
}

.pricing-features {
  margin: 2rem 0;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pricing-feature i {
  color: rgb(34, 197, 94);
}

/* FAQ Section */
.faq {
  padding: 8rem 0;
  background: var(--dark-primary);
  margin-bottom: 2rem;
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--dark-secondary);
  border: 1px solid var(--gray-800);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: rgba(192, 160, 98, 0.5);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-answer {
  color: var(--gray-400);
  margin-top: 1rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

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

/* Footer */
.footer {
  background: var(--dark-secondary);
  border-top: 1px solid var(--gray-800);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-link {
  color: var(--gray-400);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--gold-500);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--gray-400);
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--gold-500);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  color: var(--gray-400);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
  background: var(--dark-secondary);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(192, 160, 98, 0.1);
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(192, 160, 98, 0.1);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--gold-500);
  font-size: 1.25rem;
  cursor: pointer;
  transition: transform 0.3s;
  padding: 0.5rem;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
}

.mobile-menu-links {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: var(--gray-300);
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.mobile-menu-link i {
  width: 24px;
  text-align: center;
  color: var(--gold-500);
}

.mobile-menu-link:hover {
  background: rgba(192, 160, 98, 0.05);
  color: var(--gold-500);
  transform: translateX(5px);
}

.mobile-menu-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold-500),
    transparent
  );
  margin: 1rem 0;
  opacity: 0.1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-500);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: 1rem;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-links {
    display: none;
  }
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 50;
  display: none;
}

.modal.active {
  display: block;
}

.modal-content {
  background: var(--dark-secondary);
  border: 1px solid var(--gray-800);
  border-radius: 0.75rem;
  max-width: 28rem;
  margin: 5rem auto 0;
  padding: 2rem;
  position: relative;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur-lg;
    border-top: 1px solid var(--gray-800);
    z-index: 40;
}

@media (min-width: 1024px) {
    .bottom-nav {
        display: none;
    }
}

.bottom-nav-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.75rem 1rem;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
}

.bottom-nav-item i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.bottom-nav-item span {
    font-size: 0.75rem;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: var(--blue-500);
}

/* Pricing Price */
.pricing-price {
    text-align: center;
    margin: 1rem 0;
}

.pricing-price .price {
    font-size: 3rem;
    font-weight: bold;
}

.pricing-price .period {
    color: var(--gray-400);
}

/* Utility Classes */
.full-width {
    width: 100%;
}

/* Badge Colors */
.badge-orange {
    background: rgba(234, 88, 12, 0.2);
    color: rgb(253, 186, 116);
}

/* Add these media queries for mobile responsiveness */
@media (max-width: 640px) {
    /* Header */
    .logo {
        font-size: 1.25rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    /* Hero Section */
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .metallic-button, 
    .secondary-button {
        font-size: 0.9rem;
        padding: 0.5rem 1.25rem;
    }

    /* Stats */
    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Features */
    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    .feature-title {
        font-size: 1.125rem;
    }

    .feature-description {
        font-size: 0.875rem;
    }

    /* Apps */
    .app-title {
        font-size: 1.125rem;
    }

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

    /* Pricing */
    .pricing-price .price {
        font-size: 2.5rem;
    }

    .pricing-feature {
        font-size: 0.9rem;
    }

    /* FAQ */
    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-column h3 {
        font-size: 1.125rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    /* Mobile Menu */
    .mobile-menu-link {
        font-size: 0.9rem;
    }

    /* Bottom Navigation */
    .bottom-nav-item span {
        font-size: 0.7rem;
    }

    .bottom-nav-item i {
        font-size: 1.125rem;
    }
}

/* Additional adjustments for very small screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }

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

    .metallic-button, 
    .secondary-button {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* App Logo Styles */
.app-logo-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    background: var(--dark-secondary);
    border: 1px solid var(--gray-800);
    border-radius: 1.5rem;
    padding: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
                0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.app-logo-container:hover {
    transform: scale(1.05);
}

.app-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .app-logo-container {
        width: 120px;
        height: 120px;
        margin-bottom: 2rem;
        margin-top: 2rem;
    }
}

/* Add these new styles for the apps section */
.apps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.apps-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.show-all-btn {
    background: var(--dark-secondary);
    border: 1px solid var(--gray-800);
}

.show-all-btn:hover {
    border-color: var(--gold-500);
    color: var(--gold-500);
}

/* Update app card styles */
.app-card {
    background: var(--dark-secondary);
    border: 1px solid var(--gray-800);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s;
}

.app-card:hover {
    transform: translateY(-4px);
    border-color: var(--gray-800);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .apps-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .apps-scroll {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .apps-scroll {
        grid-auto-columns: 250px;
    }

    .apps::before,
    .apps::after {
        width: 2rem;
    }
}

/* Add scroll indicators */
.scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: var(--dark-secondary);
    border: 1px solid var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s;
}

.scroll-left {
    left: 1rem;
}

.scroll-right {
    right: 1rem;
}

.scroll-indicator:hover {
    color: var(--gold-500);
    border-color: var(--gold-500);
    transform: translateY(-50%) scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero,
    .features,
    .apps,
    .pricing,
    .faq {
        padding: 6rem 0;
    }

    .app-card {
        width: calc(100vw - 2rem);
    }

    .scroll-indicator {
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* Adjust container padding */
.apps .container {
    padding: 0 3rem;
}

/* Update gradient fade positions */
.apps::after,
.apps::before {
    width: 6rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .apps-scroll {
        grid-auto-columns: 300px;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .app-card {
        width: 260px;
    }

    .apps .container {
        padding: 0 2rem;
    }
}

/* All Apps Page */
.all-apps-page {
    padding-top: 6rem;
}

/* Search Section */
.search-section {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-box {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-800);
    background: var(--dark-secondary);
    color: var(--gray-200);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(192, 160, 98, 0.1);
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-800);
    background: var(--dark-secondary);
    color: var(--gray-400);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold-500);
    color: var(--dark-primary);
    border-color: var(--gold-500);
}

.filter-btn i {
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .search-section {
        margin: 1.5rem 0;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    padding: 0 1rem;
}

.app-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.app-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

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

.app-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .all-apps-page .section-title {
        margin-top: 2rem;
    }
    
    .all-apps-page {
        padding-top: 4rem;
    }

    .search-section {
        padding: 0 1rem;
    }

    .apps-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }

    .app-card {
        padding: 1rem;
    }

    .app-icon {
        font-size: 1.75rem;
    }

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

    .filter-buttons {
        gap: 0.25rem;
    }

    .filter-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}

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

    .app-card {
        padding: 0.75rem;
    }

    .app-icon {
        font-size: 1.5rem;
    }

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

    .badge {
        font-size: 0.7rem;
    }
}

/* Device Container */
.device-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.device-content {
    background: var(--dark-secondary);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.device-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.device-description {
    color: var(--gray-400);
    margin-bottom: 2rem;
}

/* Device Info Grid */
.device-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    background: var(--dark-primary);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--gray-800);
}

.info-icon {
    font-size: 2rem;
    color: var(--gold-500);
    margin-bottom: 1rem;
}

.info-value {
    color: var(--gray-200);
    font-weight: 500;
}

/* Registration Form */
.registration-section {
    margin: 2rem 0;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.register-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-300);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--gray-800);
    background: var(--dark-primary);
    color: var(--gray-200);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold-500);
    box-shadow: 0 0 0 2px rgba(234, 179, 8, 0.1);
}

.phone-input {
    display: flex;
    align-items: center;
}

.country-code {
    background: var(--dark-primary);
    padding: 0.75rem;
    border-radius: 8px 0 0 8px;
    border: 1px solid var(--gray-800);
    color: var(--gray-400);
    font-weight: 500;
}

/* Help Section */
.help-section {
    margin-top: 2rem;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.help-card {
    background: var(--dark-primary);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--gray-200);
    border: 1px solid var(--gray-800);
    transition: all 0.3s;
}

.help-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-500);
}

.help-card i {
    font-size: 1.5rem;
    color: var(--gold-500);
    margin-bottom: 0.5rem;
}

.help-card h3 {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.help-card p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin: 0;
}

.download-button:hover {
    background: linear-gradient(
        135deg,
        #654110 0%,
        #805215 25%,
        #996515 50%,
        #805215 75%,
        #654110 100%
    );
    box-shadow: 0 0 15px rgba(192, 160, 98, 0.3);
    transform: scale(1.05);
    color: white;
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    
}

.support-item {
    background: var(--dark-primary);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--gray-800);
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    color: var(--gray-200);
}

.support-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-500);
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.1);
}

.support-item i {
    font-size: 2rem;
    color: var(--gold-500);
    margin-bottom: 1rem;
}

.support-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--gold-500);
}

.support-item p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
    }

    .support-item {
        padding: 1rem;
    }

    .support-item i {
        font-size: 1.5rem;
    }

    .support-item h3 {
        font-size: 1.1rem;
    }

    .support-item p {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .all-apps-page {
        padding-top: 4rem;
    }
}

/* Add this to your existing styles */
.reviews-page {
    padding-top: 6rem;
    min-height: 100vh;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.reviews-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--gold-500);
    text-align: center;
}

.reviews-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.review-card {
    background: var(--dark-secondary);
    border: 1px solid var(--gray-800);
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--dark-primary);
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-500);
}

.review-date {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.review-rating {
    display: flex;
    gap: 0.2rem;
    color: var(--gold-500);
}

.review-content {
    color: var(--gray-300);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .reviews-container {
        padding: 1rem;
    }
    
    .reviews-title {
        font-size: 1.75rem;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 90vw); /* Slightly smaller than viewport */
        gap: 2.5vw; /* Add space between cards */
        padding: 0 2.5vw; /* Add padding to sides */
    }
    
    .review-card {
        width: 90vw; /* Slightly smaller than viewport */
        margin: 0 2.5vw; /* Add space on sides */
        scroll-snap-align: start; /* Align to start for better scrolling */
    }
    
    .scroll-indicator {
        width: 2.5rem;
        height: 2.5rem;
        background: rgba(0, 0, 0, 0.5);
    }
    
    .scroll-left {
        left: 0.5rem;
    }
    
    .scroll-right {
        right: 0.5rem;
    }
}

/* Add scroll indicators */
.reviews {
    position: relative;
}

.scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: var(--dark-secondary);
    border: 1px solid var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s;
    display: none; /* Hide by default */
}

.scroll-left {
    left: 1rem;
}

.scroll-right {
    right: 1rem;
}

.scroll-indicator:hover {
    color: var(--gold-500);
    border-color: var(--gold-500);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: flex;
    }
}

/* Documentation Page Styles */
.documentation-page {
    padding-top: 6rem;
    min-height: 100vh;
    background: var(--dark-primary);
}

.documentation-hero {
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-primary) 100%);
    border-radius: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--gold-500);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    border: 1px solid var(--gray-800);
    background: var(--dark-primary);
    color: var(--gray-200);
    font-size: 1rem;
    padding-left: 3rem;
}

.search-box i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.documentation-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 2rem 0;
}

.documentation-section {
    background: var(--dark-secondary);
    border: 1px solid var(--gray-800);
    border-radius: 1rem;
    padding: 1.5rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-icon {
    font-size: 1.5rem;
    color: var(--gold-500);
}

.section-header h2 {
    font-size: 1.5rem;
    color: var(--gold-500);
}

.section-content {
    display: grid;
    gap: 1rem;
}

.documentation-card {
    background: var(--dark-primary);
    border: 1px solid var(--gray-800);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-content {
    padding: 1rem 0;
}

.guide-content {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--dark-secondary);
    border-radius: 0.5rem;
}

.guide-content h4 {
    font-size: 1.1rem;
    color: var(--gold-500);
    margin-bottom: 1rem;
}

.guide-content ol,
.guide-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.guide-content li {
    margin-bottom: 0.5rem;
    color: var(--gray-400);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .documentation-hero {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .documentation-grid {
        grid-template-columns: 1fr;
    }
    
    .documentation-section {
        padding: 1rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .documentation-card {
        padding: 1rem;
    }
    
    .guide-content {
        padding: 1rem;
    }
}

/* PC Specific Styles */
@media (min-width: 1024px) {
    .documentation-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .documentation-section {
        padding: 2rem;
    }
    
    .documentation-card {
        padding: 2rem;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .card-content p {
        font-size: 1rem;
    }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-icon {
    font-size: 1.2rem;
    color: var(--gold-500);
}

.card-header h3 {
    font-size: 1.1rem;
    color: var(--gold-500);
    margin-bottom: 0;
}

/* Verification Container Styles */
.verification-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--dark-secondary);
    border-radius: 1rem;
    border: 1px solid var(--gray-800);
}

.verification-content {
    text-align: center;
}

.verification-content h1 {
    color: var(--gold-500);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.verify-description {
    color: var(--gray-400);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.verify-steps {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

.step {
    flex: 1;
    max-width: 300px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid var(--gray-800);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gold-500);
    color: var(--dark-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--gold-500);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.5;
}

.verify-button {
    display: inline-block;
    background: var(--gold-500);
    color: var(--dark-primary);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    margin: 2rem 0;
    text-decoration: none;
    transition: all 0.3s;
}

.verify-button:hover {
    background: var(--gold-600);
    transform: translateY(-2px);
}

.already-verified {
    margin-top: 2rem;
    color: var(--gray-400);
}

.already-verified a {
    color: var(--gold-500);
    text-decoration: none;
    margin-left: 0.5rem;
}

.already-verified a:hover {
    color: var(--gold-600);
    text-decoration: underline;
}

/* KurdApp Container Styles */
.kurdapp-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--dark-secondary);
    border-radius: 1rem;
    border: 1px solid var(--gray-800);
}

.kurdapp-header {
    text-align: center;
    margin-bottom: 2rem;
}

.kurdapp-header h1 {
    color: var(--gold-500);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.kurdapp-header p {
    color: var(--gray-400);
    line-height: 1.6;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid var(--gray-800);
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    color: var(--gold-500);
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--gold-500);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.5;
}

.download-section {
    text-align: center;
    margin-top: 2rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-500);
    color: var(--dark-primary);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.download-btn:hover {
    background: var(--gold-600);
    transform: translateY(-2px);
}

.download-btn i {
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .verification-container,
    .kurdapp-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .verify-steps {
        flex-direction: column;
        gap: 1rem;
    }

    .step {
        max-width: 100%;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .verification-content h1,
    .kurdapp-header h1 {
        font-size: 1.5rem;
    }
}

/* RTL Support */
[dir="rtl"] .verify-steps {
    flex-direction: row-reverse;
}

[dir="rtl"] .step-number {
    margin-left: 0;
    margin-right: 15px;
}

[dir="rtl"] .already-verified a {
    margin-left: 0;
    margin-right: 0.5rem;
}

[dir="rtl"] .download-btn i {
    margin-left: 0;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    [dir="rtl"] .verify-steps {
        flex-direction: column;
    }
}