/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 400px;
  background: #1a1a1a;
  border-radius: 12px;
  padding: 24px;
  z-index: 1000;
  display: none;
  animation: slideUp 0.3s ease-out;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.cookie-popup.show {
  display: block;
}

@keyframes slideUp {
  from {
      transform: translateY(100%);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

.cookie-header {
  color: #999999;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.cookie-content p {
  margin-bottom: 20px;
  font-size: 14px;
  color: #cccccc;
  line-height: 1.5;
}

.cookie-policy-link {
  color: #7c3aed;
  text-decoration: underline;
}

.cookie-policy-link:hover {
  color: #a855f7;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.btn-accept, .btn-decline {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-accept {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: white;
}

.btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.btn-decline {
  background: transparent;
  color: #cccccc;
  border: 1px solid #444;
}

.btn-decline:hover {
  background: #333;
  border-color: #555;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 999;
  padding: 20px 0;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}



.brand-name {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #7c3aed;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0f2e 50%, #0a0a0a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 20px;
  margin-top: 20px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  padding: 0 40px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-crystal {
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.3), transparent 70%);
}

.crystal-image {
  width: 400px;
  height: 400px;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(124, 58, 237, 0.3));
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-content {
  max-width: 500px;
}

.hero-brand {
  color: #7c3aed;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
  color: #ffffff;
}

.hero-description {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 48px;
}

.btn-primary, .btn-secondary {
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

/* About Section */
.about {
  padding: 100px 0;
  background: #0a0a0a;
}

.about-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.section-description {
  font-size: 16px;
  color: #cccccc;
  max-width: 500px;
  margin: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

}

.about-card {
  background: linear-gradient(135deg, rgba(20, 20, 30, 0.8), rgba(30, 20, 40, 0.8));
  border: 1px solid rgba(124, 58, 237, 0.2);

  padding: 40px;

  border: 1px solid rgba(255, 255, 255, 0.20);
background: rgba(255, 255, 255, 0.03);
}

.about-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.about-card p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Progress Circle */
.progress-wrapper {
  display: flex;
  justify-content: center;
}

.progress-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(#7c3aed 0deg, #7c3aed 284.4deg, #333333 284.4deg, #333333 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.progress-inner {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(20, 20, 30, 0.9), rgba(30, 20, 40, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-text {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
}

/* Community Members */
.community-members {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.member-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.member-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.member-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.member-info p {
  font-size: 14px;
  color: #7c3aed;
  margin: 0;
}

/* Game Grid */
.game-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);

}

.game-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-icon:hover {
  transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f0f, #1a0f2e, #0f0f0f);
}

.testimonials-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.testimonials-left {
  max-width: 500px;
}

.section-label {
  color: #7c3aed;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
  letter-spacing: 0.5px;
}

.testimonials-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.testimonial-featured {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
 
  border-radius: 12px;

}

.testimonial-featured .testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-featured h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.testimonial-featured p {
  font-size: 16px;
  color: #cccccc;
  margin: 0;
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;

  border-radius: 8px;

}
.testimonial-item-b{
  border: 1px solid rgba(255, 255, 255, 0.20);
background: rgba(255, 255, 255, 0.03);
box-shadow: 0 0 79px 0 rgba(255, 255, 255, 0.15);
}

.testimonial-item .testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.testimonial-item p {
  font-size: 14px;
  color: #cccccc;
  margin: 0;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: #0a0a0a;
}

.faq-list {
  margin-top: 60px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
}

.faq-toggle {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  color: #cccccc;
  line-height: 1.6;
  padding: 0 24px 24px;
  margin: 0;
}

/* Team Section */
.team {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f0f, #1a0f2e, #0f0f0f);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 60px;
}

.team-card {
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 12px;
  padding: 40px;
  text-align: left;
}

.team-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.team-card p {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #0a0a0a, #1a0f2e);
  padding: 80px 0 0;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-info p {
  color: #cccccc;
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #7c3aed;
}

.footer-social p {
  color: #cccccc;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-2px);
  background: #a855f7;
}



.footer-bottom {
  text-align: center;
  padding: 40px 0;

  padding-bottom: 0;

}

.footer-bottom p {
  color: #888;
  font-size: 16px;
  margin: 0;
}

.footer-logo {
  text-align: center;
  padding: 20px 0;
  padding-top: 0;
}

.footer-logo h1 {
  font-size: 160px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -4px;
  margin: 0;
  line-height: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-container {
      gap: 60px;
      padding: 0 20px;
  }
  
  .hero-crystal {
      width: 400px;
      height: 400px;
  }
  
  .crystal-image {
      width: 320px;
      height: 320px;
  }
  
  .hero-title {
      font-size: 56px;
  }
}

@media (max-width: 1024px) {
  .hero-container {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
  }
  
  .hero-crystal {
      width: 300px;
      height: 300px;
  }
  
  .crystal-image {
      width: 250px;
      height: 250px;
  }
  
  .hero-title {
      font-size: 48px;
  }
  
  .about-header {
      flex-direction: column;
      gap: 20px;
      text-align: left;
  }
  
  .about-grid {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .testimonials-header {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .team-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
  }
  
  .footer-logo h1 {
      font-size: 120px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
      display: none;
  }
  
  .hero {
      margin: 0 10px;
      margin-top: 10px;
  }
  
  .hero-title {
      font-size: 36px;
  }
  
  .hero-buttons {
      flex-direction: column;
      gap: 12px;
  }
  
  .btn-primary, .btn-secondary {
      width: 100%;
      text-align: center;
  }
  
  .section-title {
      font-size: 36px;
  }
  
  .about, .testimonials, .faq, .team {
      padding: 60px 0;
  }
  
  .progress-circle {
      width: 160px;
      height: 160px;
  }
  
  .progress-inner {
      width: 110px;
      height: 110px;
  }
  
  .progress-text {
      font-size: 36px;
  }
  
  .game-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
  }
  
  .game-icon {
      width: 50px;
      height: 50px;
  }
  
  .team-grid {
      grid-template-columns: 1fr;
  }
  
  .footer-logo h1 {
      font-size: 80px;
  }
  
  .cookie-popup {
      left: 10px;
      right: 10px;
      max-width: none;
      bottom: 10px;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 15px;
  }
  
  .nav {
      padding: 0 15px;
  }
  
  .hero-container {
      padding: 0 15px;
  }
  
  .hero-crystal {
      width: 250px;
      height: 250px;
  }
  
  .crystal-image {
      width: 200px;
      height: 200px;
  }
  
  .hero-title {
      font-size: 28px;
  }
  
  .section-title {
      font-size: 28px;
  }
  
  .about-card, .testimonial-featured, .testimonial-item, .team-card {
      padding: 24px;
  }
  
  .progress-circle {
      width: 140px;
      height: 140px;
  }
  
  .progress-inner {
      width: 100px;
      height: 100px;
  }
  
  .progress-text {
      font-size: 28px;
  }
  
  .footer-logo h1 {
      font-size: 60px;
      letter-spacing: -2px;
  }
  
  .testimonial-featured .testimonial-avatar {
      width: 60px;
      height: 60px;
  }
  
  .testimonial-item .testimonial-avatar {
      width: 50px;
      height: 50px;
  }
  
  .member-avatar {
      width: 50px;
      height: 50px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
button:focus, a:focus {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
}

/* Loading animations */
.about-card, .testimonial-featured, .testimonial-item, .team-card, .faq-item {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.about-card:nth-child(2) {
  animation-delay: 0.2s;
}

.about-card:nth-child(3) {
  animation-delay: 0.4s;
}

.testimonial-item:nth-child(2) {
  animation-delay: 0.2s;
}

.team-card:nth-child(2) {
  animation-delay: 0.1s;
}

.team-card:nth-child(3) {
  animation-delay: 0.2s;
}

.team-card:nth-child(4) {
  animation-delay: 0.3s;
}

.faq-item:nth-child(2) {
  animation-delay: 0.1s;
}

.faq-item:nth-child(3) {
  animation-delay: 0.2s;
}

.faq-item:nth-child(4) {
  animation-delay: 0.3s;
}

.faq-item:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}




/* Games Section */
.games {
  padding: 100px 0;

}

.games-title {
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 60px;
}

.games-gallery {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.games-gallery::-webkit-scrollbar {
  display: none;
}

.game-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
}

.game-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.game-card.small {
  width: 120px;
  height: 120px;
}

.game-card.medium {
  width: 180px;
  height: 180px;
}

.game-card.large {
  width: 240px;
  height: 240px;
}

.game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-image {
  transform: scale(1.1);
}

/* Responsive adjustments for Games section */
@media (max-width: 768px) {
  .games-title {
      font-size: 42px;
      margin-bottom: 40px;
  }
  
  .games-gallery {
      gap: 16px;
  }
  
  .game-card.small {
      width: 100px;
      height: 100px;
  }
  
  .game-card.medium {
      width: 150px;
      height: 150px;
  }
  
  .game-card.large {
      width: 200px;
      height: 200px;
  }
}

@media (max-width: 480px) {
  .games-title {
      font-size: 32px;
  }
  
  .game-card.small {
      width: 80px;
      height: 80px;
  }
  
  .game-card.medium {
      width: 120px;
      height: 120px;
  }
  
  .game-card.large {
      width: 160px;
      height: 160px;
  }
}



/* Game Detail Section */
.game-detail {
  padding: 100px 0;
  background: #0a0a0a;
}

.game-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.game-image-container {
  display: flex;
  justify-content: center;
}

.game-detail-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.game-info {
  max-width: 600px;
}

.game-label {
  color: #7c3aed;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  display: block;
}

.game-title {
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 32px;
  line-height: 1.1;
}

.game-description {
  margin-bottom: 48px;
}

.game-description p {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 24px;
}

.game-description p:last-child {
  margin-bottom: 0;
}

.btn-play {
  padding: 18px 36px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;

  text-decoration: none;
}

.btn-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.4);
  background: linear-gradient(135deg, #8b5cf6, #c084fc);
}

.btn-play:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

/* Responsive Design for Game Detail */
@media (max-width: 1024px) {
  .game-detail-content {
      grid-template-columns: 1fr;
      gap: 50px;
      text-align: center;
  }
  
  .game-title {
      font-size: 48px;
  }
}

@media (max-width: 768px) {
  .game-detail {
      padding: 60px 0;
  }
  
  .game-detail-content {
      gap: 40px;
  }
  
  .game-title {
      font-size: 36px;
      margin-bottom: 24px;
  }
  
  .game-description {
      margin-bottom: 32px;
  }
  
  .btn-play {
      width: 100%;
      padding: 16px 32px;
      font-size: 16px;
  }
}

@media (max-width: 480px) {
  .game-title {
      font-size: 28px;
  }
  
  .game-description p {
      font-size: 14px;
  }
  
  .game-detail-image {
      border-radius: 16px;
  }
}