:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: rgba(255, 255, 255, 0.04);
  --text-primary: #ffffff;
  --text-secondary: #999999;
  --text-dim: #666666;
  
  --accent-blue: #ffffff;
  --accent-pink: #cccccc;
  --accent-purple: #333333;
  --primary: #ffffff;
  --border-color: rgba(255, 255, 255, 0.12);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
  outline: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #999999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary {
  background: #ffffff;
  color: #0a0a0a;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.glass {
  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Section styling */
.section {
  padding: 6rem 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

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

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
}

.navbar.navbar-scrolled {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.navbar-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

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

.glow-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: float 10s ease-in-out infinite;
}

.glow-orb.blue {
  top: -100px;
  left: -100px;
  background: var(--accent-blue);
  animation-delay: 0s;
}

.glow-orb.pink {
  bottom: -100px;
  right: -100px;
  background: var(--accent-pink);
  animation-delay: -5s;
}

@keyframes float {
  0% { transform: translate(0, 0); }
  50% { transform: translate(30px, 50px); }
  100% { transform: translate(0, 0); }
}

.hero-content {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.hero-actions a {
  font-size: 1.1rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Boosting Section */
.boosting-section {
  position: relative;
}

.boosting-container {
  padding: 3rem;
  border-radius: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.rank-selector-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.rank-selector {
  flex: 1;
  text-align: center;
}

.rank-selector h3 {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rank-display {
  height: 150px;
  border: 2px solid;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.rank-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px currentColor;
  transition: color 0.3s ease;
}

.rank-dropdown {
  width: 100%;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: 0.65rem auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  cursor: pointer;
  appearance: none;
}

.rank-dropdown:focus {
  border-color: var(--accent-blue);
}

.rank-dropdown option {
  background: var(--bg-secondary);
  color: white;
}

.arrow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 210, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
}

.boosting-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-container {
  display: flex;
  flex-direction: column;
}

.price-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.checkout-btn {
  font-size: 1.2rem;
  padding: 1rem 3rem;
}

.checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Account Market Section */
.account-market {
  background: radial-gradient(circle at 50% 50%, rgba(112, 0, 255, 0.05) 0%, rgba(10, 10, 15, 0) 50%);
}

.account-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.account-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.card-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid;
  background: rgba(0, 0, 0, 0.2);
}

.account-rank {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.account-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.card-body {
  padding: 1.5rem;
  flex-grow: 1;
}

.account-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: white;
}

.account-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.account-features {
  list-style: none;
}

.account-features li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.check {
  font-weight: bold;
}

.card-footer {
  padding: 1.5rem;
  padding-top: 0;
}

.w-full {
  width: 100%;
}

.view-all-container {
  text-align: center;
  margin-top: 4rem;
}

/* Section Subtitle */
.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: -2rem;
  margin-bottom: 2.5rem;
}

/* Platform Filter Tabs */
.platform-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.platform-tab {
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.platform-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.15);
}

.platform-tab.active {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(255, 0, 234, 0.25);
}

.tab-icon {
  margin-right: 0.4rem;
}

/* Card Image */
.card-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.account-card:hover .card-image img {
  transform: scale(1.08);
}

/* Platform Badge */
.platform-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.platform-badge.pc {
  background: rgba(0, 210, 255, 0.2);
  color: #00d2ff;
  border: 1px solid rgba(0, 210, 255, 0.3);
}

.platform-badge.playstation {
  background: rgba(0, 55, 200, 0.3);
  color: #4d8eff;
  border: 1px solid rgba(0, 100, 255, 0.3);
}

.platform-badge.xbox {
  background: rgba(16, 124, 16, 0.3);
  color: #5dc264;
  border: 1px solid rgba(16, 180, 16, 0.3);
}

/* Status Badge */
.status-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.status-badge.available {
  background: rgba(0, 255, 100, 0.15);
  color: #00ff88;
  border: 1px solid rgba(0, 255, 100, 0.25);
}

.status-badge.sold {
  background: rgba(255, 0, 0, 0.15);
  color: #ff4444;
  border: 1px solid rgba(255, 0, 0, 0.25);
}

/* No Results */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Account Card Animation */
.account-card {
  opacity: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.account-card.hidden {
  display: none;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.6;
}

.footer-links-group h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

.footer-links-group li {
  margin-bottom: 0.75rem;
}

.footer-links-group a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links-group a:hover {
  color: var(--accent-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.disclaimer {
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
  .grid-cols-2, .grid-cols-3 {
    grid-template-columns: 1fr;
  }
  .navbar-links {
    display: none;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }
  .rank-selector-group {
    flex-direction: column;
  }
  .arrow-divider {
    transform: rotate(90deg);
  }
  .boosting-summary {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .checkout-btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Modal Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
}

.modal-close:hover {
  color: white;
}

.modal-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.modal-desc {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.order-summary {
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.order-summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.order-summary-item.total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-blue);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.modal-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.modal-success.active {
  display: block;
}

.success-icon {
  font-size: 4rem;
  color: #00ff88;
  margin-bottom: 1rem;
}

.modal-form-container.hidden {
  display: none;
}
[ d i r = " r t l " ]   {   f o n t - f a m i l y :   " A l m a r a i " ,   " C a i r o " ,   s a n s - s e r i f ;   }   [ d i r = " r t l " ]   . n a v b a r - l i n k s   {   f l e x - d i r e c t i o n :   r o w - r e v e r s e ;   }   [ d i r = " r t l " ]   . p r o d u c t - d e t a i l s - v i e w   {   f l e x - d i r e c t i o n :   r o w ;   / *   B e c a u s e   i t   w a s   r o w - r e v e r s e   i n   L T R ,   n o w   i t   n e e d s   t o   j u s t   b e   r o w   t o   r e v e r s e   t h e   r e v e r s e   * /   }   [ d i r = " r t l " ]   . i n f o - b l o c k   {   t e x t - a l i g n :   r i g h t ;   }  
 / *   F A Q   S t y l e s   * / \ n . f a q - s e c t i o n   {   m a x - w i d t h :   8 0 0 p x ;   m a r g i n :   0   a u t o ;   } \ n . f a q - i t e m   {   b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 3 ) ;   b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ;   b o r d e r - r a d i u s :   8 p x ;   m a r g i n - b o t t o m :   1 r e m ;   o v e r f l o w :   h i d d e n ;   t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;   } \ n . f a q - q u e s t i o n   {   p a d d i n g :   1 . 5 r e m ;   d i s p l a y :   f l e x ;   j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;   a l i g n - i t e m s :   c e n t e r ;   c u r s o r :   p o i n t e r ;   c o l o r :   w h i t e ;   f o n t - w e i g h t :   5 0 0 ;   f o n t - s i z e :   1 . 1 r e m ;   } \ n . f a q - q u e s t i o n : h o v e r   {   b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ;   } \ n . f a q - i c o n   {   t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ;   c o l o r :   v a r ( - - a c c e n t - b l u e ) ;   } \ n . f a q - i t e m . a c t i v e   . f a q - i c o n   {   t r a n s f o r m :   r o t a t e ( 1 8 0 d e g ) ;   } \ n . f a q - a n s w e r   {   p a d d i n g :   0   1 . 5 r e m ;   m a x - h e i g h t :   0 ;   o v e r f l o w :   h i d d e n ;   t r a n s i t i o n :   m a x - h e i g h t   0 . 3 s   e a s e ,   p a d d i n g   0 . 3 s   e a s e ;   c o l o r :   v a r ( - - t e x t - d i m ) ;   l i n e - h e i g h t :   1 . 6 ;   } \ n . f a q - i t e m . a c t i v e   . f a q - a n s w e r   {   p a d d i n g - b o t t o m :   1 . 5 r e m ;   m a x - h e i g h t :   5 0 0 p x ;   }  
 