@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@400;600;700&display=swap');

@font-face {
  font-family: 'Orbitron';
  src: url('/font/Orbitron-Regular.ttf') format('truetype');
}
:root {
  /*--dark-bg: linear-gradient(135deg, #0f0f1a, #1a1a2e, #2c2c54); /* 161515f8 2d3036f1 */
  --dark-bg: linear-gradient(to right, #06192d, #02101f);
  --card-bg: rgba(255, 255, 255, 0.07);
  --card-hover: #141212;
  --primary: #5d5df7;
  --primary-dark: #4a4af0;
  --accent: #f44336;
  --text: #fff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --border: rgba(255, 255, 255, 0.1);
  --accent-blue: #2196f3;

  --main: rgb(10, 77, 106);
  --main-30: rgb(12, 90, 125);
  --text-main: rgb(186, 169, 255);
  --color-button: rgb(116, 83 ,252);
  --color-button-opa-80:  rgba(117, 83, 252, 0.812);
  --color-button-opa-50:  rgba(116,83,252, 0.502);
  --color-button-opa-25:  rgba(116,83,252, 0.252);
  --color-button-opa-15: rgba(116,83,252, 0.152);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.6;
  font-family: 'Oxanium', 'Poppins', sans-serif;
  background: var(--dark-bg);
  color: var(--text);
  overflow-x: hidden;
}

main {
  flex: 1;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

 .logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text);
  text-decoration: none;
  user-select: none;
  line-height: 1;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: auto;
  border-radius: 8px;
}

nav {
  display: flex;
  align-items: center;
  user-select: none;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  margin-left: 0.85rem;
  transition: color 0.3s;
  font-size: 0.95rem;
}

nav a:hover, nav a.active {
  color: var(--text-main);
}

.navbar .logo:hover, .tabs .tab:hover {
  color: var(--text-main); 
}

.nav-divider {
  color: var(--main);
  margin: 0 1rem;
  font-size: 1.2rem;
  opacity: 1;
}

::selection {
  background: var(--color-button-opa-50);
  color: #fff;
}

::-moz-selection {
  background: var(--color-button-opa-50);
  color: #fff;
}

.login-btn {
  background-color: var(--accent-blue, #2b6cb0);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s;
}

.login-btn:hover {
  background-color: var(--primary-dark);
}

/* Profile and Points Container */
.profile-wrapper {
  position: relative;
  display: inline-block;
  height: 40px; 
}

.profile-background {
  background-color: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08); 
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border-radius: 999px;
  padding: 6px 16px 6px 48px; 
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
}

.profile-avatar {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #2f3136;
  background-color: #2f3136;
}

.points-text {
  color: #b9bbbe;
  font-size: 13px;
  font-weight: 500;
}

.topup-btn {
  display: flex;
  align-items: center;
  color: var(--text-main);
  margin-left: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  animation: arrowBounce 1.5s infinite;
}

.topup-btn i {
  margin-right: 5px;
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-3px);
  }
}

.topup-btn:hover {
  color: #fff;
}

.profile-container:hover .dropdown-menu {
  display: block;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 101;
}
.mobile-menu-toggle .close-icon {
  display: none;
}
.mobile-menu-toggle.active .menu-icon {
  display: none;
}
.mobile-menu-toggle.active .close-icon {
  display: block;
}

 /* Mobile Menu Dropdown */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--dark-bg);
  flex-direction: column;
  z-index: 100;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08); 
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
  
.mobile-menu.active {
  display: flex;
}
  
.menu-item {
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  border-bottom: 0.001px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  transition: background-color 0.2s;
}
  
.menu-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.profile-item:hover { 
  transform: scale(1.03);
  transition: transform 0.2s ease;
}
  
  
.login-item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.loader {
  height: 100%;
  width: 100%;
  background-color: #000 !important;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
}

.load-hidden {
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 48rem) {
  .md\:flex {
      display: flex;
  }
}
.hidden {
  display: none;
}
.duration-200 {
  --tw-duration: .2s;
  transition-duration: .2s;
}
.transition-all {
    transition-property: all;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
}

.svg-spinners--blocks-shuffle-3 {
  display: inline-block;
  width: 70px;
  height: 70px;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect width='10' height='10' x='1' y='1' fill='%23000' rx='1'%3E%3Canimate id='svgSpinnersBlocksShuffle30' fill='freeze' attributeName='x' begin='0;svgSpinnersBlocksShuffle3b.end' dur='0.2s' values='1;13'/%3E%3Canimate id='svgSpinnersBlocksShuffle31' fill='freeze' attributeName='y' begin='svgSpinnersBlocksShuffle38.end' dur='0.2s' values='1;13'/%3E%3Canimate id='svgSpinnersBlocksShuffle32' fill='freeze' attributeName='x' begin='svgSpinnersBlocksShuffle39.end' dur='0.2s' values='13;1'/%3E%3Canimate id='svgSpinnersBlocksShuffle33' fill='freeze' attributeName='y' begin='svgSpinnersBlocksShuffle3a.end' dur='0.2s' values='13;1'/%3E%3C/rect%3E%3Crect width='10' height='10' x='1' y='13' fill='%23000' rx='1'%3E%3Canimate id='svgSpinnersBlocksShuffle34' fill='freeze' attributeName='y' begin='svgSpinnersBlocksShuffle30.end' dur='0.2s' values='13;1'/%3E%3Canimate id='svgSpinnersBlocksShuffle35' fill='freeze' attributeName='x' begin='svgSpinnersBlocksShuffle31.end' dur='0.2s' values='1;13'/%3E%3Canimate id='svgSpinnersBlocksShuffle36' fill='freeze' attributeName='y' begin='svgSpinnersBlocksShuffle32.end' dur='0.2s' values='1;13'/%3E%3Canimate id='svgSpinnersBlocksShuffle37' fill='freeze' attributeName='x' begin='svgSpinnersBlocksShuffle33.end' dur='0.2s' values='13;1'/%3E%3C/rect%3E%3Crect width='10' height='10' x='13' y='13' fill='%23000' rx='1'%3E%3Canimate id='svgSpinnersBlocksShuffle38' fill='freeze' attributeName='x' begin='svgSpinnersBlocksShuffle34.end' dur='0.2s' values='13;1'/%3E%3Canimate id='svgSpinnersBlocksShuffle39' fill='freeze' attributeName='y' begin='svgSpinnersBlocksShuffle35.end' dur='0.2s' values='13;1'/%3E%3Canimate id='svgSpinnersBlocksShuffle3a' fill='freeze' attributeName='x' begin='svgSpinnersBlocksShuffle36.end' dur='0.2s' values='1;13'/%3E%3Canimate id='svgSpinnersBlocksShuffle3b' fill='freeze' attributeName='y' begin='svgSpinnersBlocksShuffle37.end' dur='0.2s' values='1;13'/%3E%3C/rect%3E%3C/svg%3E");
  background-color: var(--color-button);
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}   

/* Profile Page */

.profile-actions {
  display: flex;
  gap: 10px;
}

.admin-btn { 
  color: #fff;
  background: var(--color-button-opa-50);
  border: 1px solid var(--color-button);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s;
}

.admin-btn:hover {
  color: #000000;
  background-color: var(--main-30);
  border: 1px solid var(--main);
}

.logout-btn {
  background-color: rgba(163, 45, 57, 0.538);
  color: #fff;
  border: 0.5px solid #db2727;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
}

.logout-btn:hover {
  background-color: rgba(245, 194, 199, 0.538);  
  color: #842029;

}


/* Container Styles */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
}

/* Section Title Styles */
.section-title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  margin-top: 0rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); 
  padding-bottom: 0.5rem;
  color: white;
}

.section-title .icon {
  margin-right: 0.8rem;
  font-size: 1.5rem;
}

.section-title h2 {
  font-size: 1.6rem;
  font-weight: 600;
}

/* Products Grid Styles */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08); 
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  height: 320px;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  background-color: var(--card-hover);
  animation: bounce 1.5s ease-in-out infinite; 
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.product-image {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* Tag Styles */
.price-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  z-index: 2;
}

.discount-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  z-index: 2;
}

.coming-soon-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #ff9800;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  z-index: 2;
}

.btn-product {
  display: inline-block;
  color: #fff;
  background-color: var(--main);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  transition: background-color 0.3s;
  text-align: center;
  margin-top: auto;
}

.btn-product:hover {
  color: #000000;
  background-color: var(--color-button-opa-50);
  border: 1px solid var(--color-button-opa-50);
}

.btn-product.disabled {
  background-color: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
  cursor: not-allowed;
}
/* Featured Products Styles */
.featured-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card.featured {
  height: 360px;
}

.product-card.featured .product-image {
  height: 200px;
}

/* Hero Section Styles */
.hero {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 1rem;
}

.hero-content h1,
.hero-content p {
  opacity: 0;
  transform: scale(0.9);
  animation: fadeInUp 1s ease-out forwards;
  font-family: 'Oxanium', sans-serif;
}

.hero-content h1 {
  animation-delay: 0.3s;
}

.hero-content p {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.btn-main {
  color: var(--color-button);
  background: var(--color-button);
  border: 1px solid var(--color-button);
  transition: all .5s ease;
}
.btn-main.active {
  color: white;
  background-color: var(--color-button-opa-50);
  border: 1px solid var(--color-button);
}
.btn-main.active i {
  color: white !important;
}

.btn-main:hover {
  color: #000000;
  background-color: var(--main-30);
  border: 1px solid var(--main);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 1s;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

.hero-buttons .btn-discord,
.hero-buttons .btn-secondary {
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
}

.hero-buttons .btn-discord {
  background-color: #7289da;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-buttons .btn-secondary {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--color-button);
  color: white;
  border-radius: 15px;
  border: 1px solid var(--color-button);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--color-button-opa-25);
  border: 1px solid white;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 15px;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgb(80, 75, 75);
}

/* CTA Banner Styles */
.cta-banner {
  background: linear-gradient(45deg, #5d5df7, #8080ff);
  border-radius: 12px;
  padding: 3rem;
  margin: 3rem 0;
  text-align: center;
  animation: fadeInUp 1s ease-out forwards;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { top: 30%; left: 80%; animation-delay: 4s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 1s; }
.particle:nth-child(5) { top: 40%; left: 90%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}


 .btn-cta {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.75rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    color: var(--text-main);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.btn-cta:active {
    transform: translateY(-2px) scale(1.02);
}

/* Product Detail Page Styles */
.product-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex: 1;
}

.product-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-icon {
  background-color: #0a4d6a;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon i {
  color: white;
  font-size: 20px;
}

.product-title {
  font-weight: 500;
  text-transform: uppercase;
}

.product-title h1 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  color: #fff;
}

.product-title p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin: 0;
}

.product-buy-button {
  background-color: #0a4d6a;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s;
}

.product-buy-button:hover {
  background-color: #0c5a7d;
}
    
.product-main-content {
  padding: 20px 0;
}

.product-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 20px;
  margin-bottom: 30px;
}

.product-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background-color: #000;
  border-radius: 8px;
}

.product-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.product-sidebar {
  background-color: rgba(10, 77, 106, 0.15);
  border-radius: 8px;
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.product-sidebar-content {
  flex: 1;
}

.product-sidebar-title {
  font-size: 16px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 500;
}

.product-name {
  display: flex;
  justify-content: space-between;
  align-items: center;  
  background-color: rgba(10, 77, 106, 0.5);
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-weight: 500;
}

.product-version-info {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-bg);
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 15px;
}

.product-version-icon {
  background-color: #0a4d6a;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-version-text p:first-child {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.product-version-text p:last-child {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.product-features {
  margin-top: 15px;
}

.product-feature-title {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.product-feature-text {
  background: var(--card-bg);
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.product-price-icon {
  color: #0a7dbd;
  font-size: 20px;
}

.product-price-amount {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.product-action-buttons {
  margin-top: auto;
  padding-top: 20px;
}

.product-buy-now {
  background-color: #0a4d6a;
  padding: 12px;
  border-radius: 6px;
  grid-column: span 2;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.product-buy-now:hover {
  background-color: #0c5a7d;
}

.product-buy-now.disabled {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
  cursor: not-allowed;
  grid-column: span 2; 
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: #fff;
  padding: 12px;
  border-radius: 6px;
}

.original-price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: red;
  transform: rotate(-10deg);
  transform-origin: center;
}

.discounted-price {
  color: #f00;
  font-weight: bold;
  font-size: 1.51rem;
}

.ownership-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card-bg);
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 15px;
}


.product-ownership-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-ownership-icon {
  background-color: #0a4d6a;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-ownership-text p:first-child {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.product-ownership-text p:last-child {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.product-download-btn {
  background-color: #0a4d6a;
  border-radius: 6px;
  color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.2s;
}

.product-download-btn:hover {
  background-color: var(--main-30);
  color:#fff;
}

.product-detail-container {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-description-container, .product-image-container {
  margin-top: 20px;
}

.product-description-header, .product-image-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.product-description-icon, .product-image-icon {
  background-color: #0a4d6a;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-description-title, .product-image-title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
}

.product-description-content, .product-image-content {
  padding: 20px;
  background: var(--card-bg);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08); 
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.product-feature-item {
  display: flex;
  align-items: baseline;
  margin-bottom: 5px;
  gap: 5px;
}

.product-feature-item i {
  font-size: 12px;
  color: #0a7dbd;
}

.product-feature-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.product-screenshots-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.product-image-box {
  max-width: 100%;
  height: 300px;
  background-color: rgba(10, 77, 106, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 15px;
}

.product-image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .screenshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.screenshot-item img {
  width: 100%;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.screenshot-item img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .product-content-wrapper {
    grid-template-columns: 1fr;
  }
}


.product-info-shopping {
  padding: 1rem 1.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-info-shopping h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.product-info-shopping p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

::-webkit-scrollbar {
  width: 3px
}

::-webkit-scrollbar-track {
  background: #000
}

::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background: -webkit-linear-gradient(transparent, var(--main))
}

/* CTA Buttons */
.product-cta {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-cta.disabled {
  background-color: #565656;
  cursor: not-allowed;
}

/* Price banner */
.price-banner {
  background-color: rgba(30, 30, 40, 0.8);
  padding: 12px 15px;
  margin: 15px 0;
  border-radius: 6px;
  border-left: 3px solid #7B68EE;
}

.price-highlight {
  color: #7B68EE;
  font-weight: bold;
}


/* Footer Styles */
footer {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 0.9rem 0;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.social-links a {
  color: var(--text-secondary);
  margin-left: 1rem;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--text);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .featured-products {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
}

.mobile-profile-link {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 0rem;
    top: 0rem; 
    color: var(--text);
    font-size: 2.1rem;
    cursor: pointer;
    margin-left: auto; 
    padding: 0.25rem; 
  }
  
  #main-nav {
    display: none;
  }

  .mobile-profile-link {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0.5rem 0;
    padding: 0.5rem;
  }
  
  .navbar {
    padding: 0.5rem 1rem;
    position: relative;
  }
  
  nav {
    flex-direction: column;
    position: absolute;
    top: 60px; 
    left: 0;
    width: 100%;
    background: var(--card-bg);
    padding: 2rem 1rem;
    display: none;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08); 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }

  nav.active {
    display: flex;
  }

  nav a {
    margin: 1rem 0;
    font-size: 1.1rem;
  }
  
  .login-btn {
    margin: 0.5rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .profile-wrapper, .topup-btn{
    display: none;
  }
   
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
  }

  .container {
    padding: 1rem;
  }

  .product-card {
    height: 300px;
  }

  .product-image {
    height: 140px;
  }
  
  .hero {
    height: 400px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .cta-banner {
    padding: 2rem 1rem;
  }
}

@media (max-width: 576px) {
  .navbar {
    flex-direction: column;
    padding: 0.5rem 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo img {
    height: 30px;
  }
  
  nav {
    width: 100%;
    justify-content: space-between;
  }

  nav a {
    margin-left: 0;
  }

  .login-btn {
    margin-left: 0.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .social-links {
    margin-top: 1rem;
  }

  .social-links a {
    margin: 0 0.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .cta-content h2 {
    font-size: 1.5rem;
  }
}

.container-footer {
  width: 100%;
  max-width: 1200px;
  background: var(--card-bg);
  margin: 0 auto;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  overflow: hidden; 
}

.title {
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 3rem;
  font-weight: 600;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 1rem;
  max-width: 100%;
}

/* การ์ดขนาดกำลังดี */
.team-member {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.team-member:nth-child(1) { 
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(53, 122, 189, 0.15) 100%);
  border-color: rgba(74, 144, 226, 0.2);
}

.team-member:nth-child(2) { 
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(53, 122, 189, 0.15) 100%);
  border-color: rgba(74, 144, 226, 0.2);
}

.team-member:hover {
  transform: translateY(-5px);
}

/* ส่วนรูปโปรไฟล์และ tags */
.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.profile-img-footed {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-button);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.team-member:hover .profile-img-footed {
  border-color: var(--color-button);
  box-shadow: 0 4px 25px var(--color-button-opa-25);
}

.profile-section .member-tags {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100px;
}

/* ข้อมูลตรงกลาง */
.member-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.member-name {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.member-info .member-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

/* Tag สไตล์ */
.member-tag {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 15px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.tag-cofounder {
  background: rgba(74, 144, 226, 0.2);
  color: #5a9ff5;
  border: 1px solid rgba(74, 144, 226, 0.4);
}

.tag-cofounder:hover {
  background: rgba(74, 144, 226, 0.3);
  border-color: rgba(74, 144, 226, 0.6);
}

.tag-ceo {
  background: rgba(231, 76, 60, 0.2);
  color: #ff6b6b;
  border: 1px solid rgba(231, 76, 60, 0.4);
}

.tag-ceo:hover {
  background: rgba(231, 76, 60, 0.3);
  border-color: rgba(231, 76, 60, 0.6);
}

.tag-coo {
  background: rgba(230, 126, 34, 0.2);
  color: #ffa94d;
  border: 1px solid rgba(230, 126, 34, 0.4);
}

.tag-coo:hover {
  background: rgba(230, 126, 34, 0.3);
  border-color: rgba(230, 126, 34, 0.6);
}

.tag-developer {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tag-developer:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Social links ใหญ่ขึ้น */
.social-links-footed {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.3rem;
}

.social-link-footed {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link-footed:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 968px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .team-member {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .member-info {
    align-items: center;
  }
  
  .social-links-footed {
    flex-direction: row;
    justify-content: center;
  }
}

.policy-link {
  color: var(--text-main); 
  text-decoration: none; 
  font-weight: bold;
}

.policy-link:hover {
  text-decoration: underline; 
}

.faq-container {
  width: 70%;  
  max-width: 1000px; 
  margin: 30px auto;
  padding: 15px;
}

.faq-container h2 {
  text-align: center;
  font-size: 24px;
}

.faq-box {
  background-color: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08); 
  padding: 20px;  
  margin: 10px 0; 
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.faq-box h3 {
  color: var(--text-main);
}

.faq-box p {
  color: #C9D1D9;
  font-size: 16px; 
  line-height: 1.5; 
}

@media (max-width: 768px) {
  .faq-container {
      width: 100%; 
  }
}

.btn-discord {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5865F2; 
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 10px; 
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-discord i {
  font-size: 20px; 
  margin-right: 10px; 
}

.btn-discord:hover {
  background-color: #4752C4; 
}

.social-link-footed {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.social-link-footed:hover {
  background: var(--main);
}

@media (max-width: 768px) {
  .team-grid {
      grid-template-columns: 1fr;
  }
  
  .team-member {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .profile-img {
      width: 100px;
      height: 100px;
  }

  .social-links-footed {
      justify-content: center;
  }
}

