/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: #0f0f1a;
  color: #ffffff;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background-color: #1a1a2e;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-image {
  width: 40px; /* İstediğiniz genişlik */
  height: 40px; /* İstediğiniz yükseklik */
  border-radius: 8px; /* Köşe yuvarlama */
}

.logo h1 {
  font-size: 1.8rem;
  background: linear-gradient(90deg, #8e2de2, #4a00e0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: "Orbitron", sans-serif;
}

.btn-primary {
  background: linear-gradient(90deg, #8e2de2, #4a00e0);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #4a00e0, #8e2de2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(142, 45, 226, 0.4);
}

.btn-secondary {
  background: linear-gradient(90deg, #00b4db, #0083b0);
  color: white;
}

.btn-secondary:hover {
  background: linear-gradient(90deg, #0083b0, #00b4db);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 180, 219, 0.4);
}

.btn-large {
  padding: 15px 30px;
  font-size: 1.1rem;
}

.btn-icon {
  margin-right: 8px;
  font-size: 1.2rem;
}

/* Tab Navigation */
.tab-navigation {
  background-color: #16213e;
  padding: 10px 0;
  position: sticky;
  top: 70px;
  z-index: 99;
}

.tabs-wrapper {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 5px;
}

.tab-labels {
  display: flex;
  gap: 5px;
}

input[type="radio"] {
  display: none;
}

.tab-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 80px;
  background-color: rgba(255, 255, 255, 0.1);
}

.tab-label:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

input[type="radio"]:checked + .tab-label {
  background: linear-gradient(90deg, #8e2de2, #4a00e0);
  color: white;
}

.tab-icon {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.tab-text {
  font-size: 0.8rem;
  font-weight: 600;
}

/* Tab Content */
.tab-content {
  display: none;
  padding: 30px 0;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#tab1:checked ~ .main #content1,
#tab2:checked ~ .main #content2,
#tab3:checked ~ .main #content3,
#tab4:checked ~ .main #content4,
#tab5:checked ~ .main #content5,
#tab6:checked ~ .main #content6,
#tab7:checked ~ .main #content7 {
  display: block;
}

.hero-sectionX {
  top: 1px;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #6a11cb, #2e2256);
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  text-align: start;
  padding: 17px 11px;
  margin-bottom: 3px;
  font-family: Arial, sans-serif;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.hero-sectionX h1 {
  font-size: 24px;
  margin: 0 0 8px;
}

.hero-sectionX p {
  font-size: 16px;
  margin: 0 0 12px;
}

.hero-sectionX a {
  display: inline-block;
  padding: 10px 18px;
  background: #fff;
  color: #2575fc;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.hero-sectionX a:hover {
  background: #f1f1f1;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  background: url("../images/lobby.png") center/cover no-repeat;

  border-left: solid 3px #e900ff !important;
}

.hero-content {
  max-width: 50%;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ffffff, #e0e0e0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tagline {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #b8b8d1;
}

.hero-stats {
  display: flex;
  gap: 20px;
}

.stat {
  background-color: rgba(74, 0, 224, 0.2);
  border: 1px solid rgba(142, 45, 226, 0.3);
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  min-width: 120px;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Orbitron", sans-serif;
  color: #8e2de2;
}

.stat-label {
  font-size: 0.9rem;
  color: #b8b8d1;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-section::before {
    display: none;
  }
}

/* Screenshot Gallery */
.screenshot-gallery h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.screenshot-item {
  background-color: #1a1a2e;
  border-radius: 8px;
  overflow: hidden;
}

.screenshot-item:hover {
  transform: translateY(-5px);
}

.screenshot-placeholder {
  width: 100%;
  height: 150px;
  background-color: #16213e;
  background-image: linear-gradient(
    135deg,
    rgba(74, 0, 224, 0.1) 0%,
    rgba(142, 45, 226, 0.1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a00e0;
  font-size: 2rem;
}

.screenshot-item span {
  display: block;
  padding: 10px;
  text-align: center;
  font-weight: 600;
}

.screenshot-image {
  width: 200px; /* veya responsive ölçü */
  height: 120px; /* yüksekliği belirtmezsen görünmez */
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

/* Features Section */
.features-section h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #ffffff;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background-color: #1a1a2e;
  padding: 15px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  background-color: rgba(74, 0, 224, 0.2);
  border: 1px solid rgba(142, 45, 226, 0.3);
}

.feature-icon {
  font-size: 1.8rem;
  margin-top: 5px;
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #ffffff;
}

.feature-item p {
  font-size: 0.9rem;
  color: #b8b8d1;
}

/* System Requirements */
.system-requirements {
  background-color: #1a1a2e;
  padding: 20px;
  border-radius: 8px;
}

.system-requirements h4 {
  margin-bottom: 15px;
  color: #ffffff;
}

.requirements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.requirement-column h5 {
  font-size: 1rem;
  color: #8e2de2;
  margin-bottom: 10px;
}

.requirement-column ul {
  padding-left: 20px;
}

.requirement-column li {
  font-size: 0.9rem;
  color: #b8b8d1;
  margin-bottom: 8px;
  position: relative;
}

.requirement-column li::before {
  content: "•";
  color: #8e2de2;
  position: absolute;
  left: -15px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.2rem;
  background: linear-gradient(90deg, #8e2de2, #4a00e0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
}

.section-header p {
  color: #b8b8d1;
  max-width: 700px;
  margin: 0 auto;
}

/* Results Grid */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}

/* Leaderboard Section */
.leaderboard-section {
  background-color: #1a1a2e;
  padding: 20px;
  border-radius: 8px;
}

.leaderboard-section h3 {
  margin-bottom: 20px;
  color: #ffffff;
}

.leaderboard-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.table-header,
.table-row {
  display: grid;
  grid-template-columns: 50px 2fr 1fr 1fr;
  gap: 15px;
  padding: 10px;
  align-items: center;
}

.table-header {
  font-weight: 600;
  color: #8e2de2;
  border-bottom: 1px solid rgba(142, 45, 226, 0.3);
}

.table-row {
  background-color: rgba(26, 26, 46, 0.7);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.table-row:hover {
  background-color: rgba(74, 0, 224, 0.2);
}

.rank {
  font-weight: 700;
  text-align: center;
}

.gold {
  color: gold;
}

.silver {
  color: silver;
}

.bronze {
  color: #cd7f32; /* bronze color */
}

.player-name {
  font-weight: 600;
}

.score,
.matches {
  text-align: right;
}

/* Tournaments Section */
.tournaments-section {
  background-color: #1a1a2e;
  padding: 20px;
  border-radius: 8px;
}

.tournaments-section h3 {
  margin-bottom: 20px;
  color: #ffffff;
}

.tournament-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tournament-item {
  background-color: rgba(26, 26, 46, 0.7);
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.tournament-item:hover {
  background-color: rgba(74, 0, 224, 0.2);
}

.tournament-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.tournament-header h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin: 0;
}

.tournament-date {
  font-size: 0.8rem;
  color: #b8b8d1;
}

.tournament-details p {
  font-size: 0.9rem;
  color: #b8b8d1;
  margin-bottom: 5px;
}

.tournament-details strong {
  color: #ffffff;
}

/* Achievements Section */
.achievements-section {
  grid-column: span 2;
  background-color: #1a1a2e;
  padding: 20px;
  border-radius: 8px;
}

.achievements-section h3 {
  margin-bottom: 20px;
  color: #ffffff;
}

.achievement-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

@media (max-width: 768px) {
  .achievement-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .achievement-stats {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(26, 26, 46, 0.7);
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background-color: rgba(74, 0, 224, 0.2);
}

.stat-icon {
  font-size: 2rem;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Orbitron", sans-serif;
  color: #8e2de2;
}

.stat-label {
  font-size: 0.8rem;
  color: #b8b8d1;
}

/* Economy Grid */
.economy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .economy-grid {
    grid-template-columns: 1fr;
  }
}

/* Player Balance */
.player-balance {
  background-color: #1a1a2e;
  padding: 20px;
  border-radius: 8px;
}

.player-balance h3 {
  margin-bottom: 20px;
  color: #ffffff;
}

.balance-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.balance-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.balance-card.primary {
  background: linear-gradient(
    90deg,
    rgba(142, 45, 226, 0.2),
    rgba(74, 0, 224, 0.2)
  );
  border: 1px solid rgba(142, 45, 226, 0.3);
}

.balance-card.secondary {
  background: linear-gradient(
    90deg,
    rgba(0, 180, 219, 0.2),
    rgba(0, 131, 176, 0.2)
  );
  border: 1px solid rgba(0, 180, 219, 0.3);
}

.balance-card.tertiary {
  background: linear-gradient(
    90deg,
    rgba(255, 215, 0, 0.2),
    rgba(255, 165, 0, 0.2)
  );
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.balance-card:hover {
  transform: translateY(-5px);
}

.currency-icon {
  font-size: 2rem;
}

.balance-info {
  display: flex;
  flex-direction: column;
}

.balance-amount {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Orbitron", sans-serif;
}

.balance-card.primary .balance-amount {
  color: #8e2de2;
}

.balance-card.secondary .balance-amount {
  color: #00b4db;
}

.balance-card.tertiary .balance-amount {
  color: #ffd700;
}

.balance-label {
  font-size: 0.9rem;
  color: #b8b8d1;
}

/* Events Calendar */
.events-calendar {
  background-color: #1a1a2e;
  padding: 20px;
  border-radius: 8px;
}

.events-calendar h3 {
  margin-bottom: 20px;
  color: #ffffff;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.event-item {
  display: flex;
  gap: 15px;
  background-color: rgba(26, 26, 46, 0.7);
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.event-item:hover {
  background-color: rgba(74, 0, 224, 0.2);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  background-color: rgba(74, 0, 224, 0.3);
  border-radius: 5px;
  padding: 5px;
}

.day {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Orbitron", sans-serif;
  color: #8e2de2;
}

.month {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #b8b8d1;
}

.event-details h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 5px;
}

.event-details p {
  font-size: 0.9rem;
  color: #b8b8d1;
  margin-bottom: 5px;
}

.event-time {
  font-size: 0.8rem;
  color: #8e2de2;
  font-weight: 600;
}

/* Forum Topics */
.forum-topics {
  grid-column: span 2;
  background-color: #1a1a2e;
  padding: 20px;
  border-radius: 8px;
}

.forum-topics h3 {
  margin-bottom: 20px;
  color: #ffffff;
}

.topic-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.topic-item {
  background-color: rgba(26, 26, 46, 0.7);
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.topic-item:hover {
  background-color: rgba(74, 0, 224, 0.2);
}

.topic-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.topic-category {
  font-size: 0.7rem;
  background-color: rgba(74, 0, 224, 0.3);
  color: #8e2de2;
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 600;
}

.topic-replies {
  font-size: 0.8rem;
  color: #b8b8d1;
}

.topic-item h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 5px;
}

.topic-item p {
  font-size: 0.8rem;
  color: #b8b8d1;
}

/* AI Features Grid */
.ai-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .ai-features-grid {
    grid-template-columns: 1fr;
  }
}

.ai-feature-card {
  background-color: #1a1a2e;
  padding: 25px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(74, 0, 224, 0.3);
}

.ai-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(74, 0, 224, 0.2);
}

.feature-icon-large {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #8e2de2;
}

.ai-feature-card h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.ai-feature-card p {
  font-size: 0.95rem;
  color: #b8b8d1;
  margin-bottom: 15px;
}

.feature-benefits {
  padding-left: 20px;
}

.feature-benefits li {
  font-size: 0.9rem;
  color: #b8b8d1;
  margin-bottom: 8px;
  position: relative;
}

.feature-benefits li::before {
  content: "•";
  color: #8e2de2;
  position: absolute;
  left: -15px;
}

/* AI Stats Section */
.ai-stats-section {
  background-color: #1a1a2e;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.ai-stats-section h3 {
  text-align: center;
  margin-bottom: 30px;
  color: #ffffff;
}

.ai-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .ai-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ai-stats-grid {
    grid-template-columns: 1fr;
  }
}

.ai-stat-item {
  text-align: center;
  padding: 20px;
  background-color: rgba(74, 0, 224, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.ai-stat-item:hover {
  background-color: rgba(74, 0, 224, 0.2);
  transform: translateY(-5px);
}

.ai-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Orbitron", sans-serif;
  color: #8e2de2;
  margin-bottom: 5px;
}

.ai-stat-label {
  font-size: 0.9rem;
  color: #b8b8d1;
}

/* Download Section */
.download-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .download-section {
    grid-template-columns: 1fr;
  }
}

.main-download-area {
  background-color: #1a1a2e;
  padding: 30px;
  border-radius: 10px;
}

.download-hero {
  text-align: center;
  margin-bottom: 30px;
}

.download-hero h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.download-hero p {
  font-size: 1.1rem;
  color: #b8b8d1;
  margin-bottom: 25px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.platform-availability {
  text-align: center;
}

.platform-availability h4 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.platform-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.platform-icon {
  font-size: 2rem;
}

/* Mobile Download */
.mobile-download {
  background-color: #1a1a2e;
  padding: 20px;
  border-radius: 10px;
}

.mobile-download h4 {
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
}

.mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #16213e;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.store-button:hover {
  background-color: rgba(74, 0, 224, 0.2);
  transform: translateY(-3px);
}

.store-icon {
  font-size: 1.8rem;
}

.store-text {
  display: flex;
  flex-direction: column;
}

.store-subtitle {
  font-size: 0.7rem;
  color: #b8b8d1;
}

.store-title {
  font-size: 1rem;
  font-weight: 600;
}

.qr-code-section {
  text-align: center;
}

.qr-placeholder {
  width: 150px;
  height: 150px;
  background-color: #16213e;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8e2de2;
  font-size: 1.5rem;
}

.qr-code-section p {
  font-size: 0.8rem;
  color: #b8b8d1;
}

/* System Specs */
.system-specs {
  grid-column: span 2;
  background-color: #1a1a2e;
  padding: 30px;
  border-radius: 10px;
}

.system-specs h4 {
  text-align: center;
  margin-bottom: 25px;
  color: #ffffff;
}

.specs-comparison {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .specs-comparison {
    grid-template-columns: 1fr;
  }
}

.spec-column {
  background-color: rgba(26, 26, 46, 0.7);
  padding: 20px;
  border-radius: 8px;
}

.spec-column h5 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.spec-column ul {
  padding-left: 20px;
}

.spec-column li {
  font-size: 0.9rem;
  color: #b8b8d1;
  margin-bottom: 8px;
  position: relative;
}

.spec-column li::before {
  content: "•";
  color: #8e2de2;
  position: absolute;
  left: -15px;
}

/* Reviews Overview */
.reviews-overview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a1a2e;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .reviews-overview {
    flex-direction: column;
    gap: 20px;
  }
}

.overall-rating {
  text-align: center;
}

.rating-score {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Orbitron", sans-serif;
  color: #8e2de2;
  margin-bottom: 5px;
}

.rating-stars {
  font-size: 1.5rem;
  color: gold;
  margin-bottom: 5px;
}

.rating-count {
  font-size: 0.9rem;
  color: #b8b8d1;
}

.rating-breakdown {
  flex-grow: 1;
  max-width: 500px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.rating-label {
  width: 30px;
  font-size: 0.9rem;
}

.bar-container {
  flex-grow: 1;
  height: 10px;
  background-color: #16213e;
  border-radius: 5px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #8e2de2, #4a00e0);
}

.rating-percentage {
  width: 40px;
  font-size: 0.9rem;
  text-align: right;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background-color: #1a1a2e;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(74, 0, 224, 0.2);
}

.review-header {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background-color: #16213e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8e2de2;
  font-size: 1.2rem;
}

.reviewer-info {
  flex-grow: 1;
}

.reviewer-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #ffffff;
}

.reviewer-location {
  font-size: 0.8rem;
  color: #b8b8d1;
  margin-bottom: 5px;
}

.review-rating {
  color: gold;
}

.review-date {
  font-size: 0.8rem;
  color: #b8b8d1;
}

.review-content p {
  font-size: 0.95rem;
  color: #b8b8d1;
  margin-bottom: 15px;
}

.review-actions {
  display: flex;
  gap: 15px;
}

.review-action {
  background: none;
  border: none;
  color: #b8b8d1;
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.review-action:hover {
  color: #8e2de2;
}

/* Rewards Grid */
.rewards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .rewards-grid {
    grid-template-columns: 1fr;
  }
}

/* Social Feed */
.social-feed {
  background-color: #1a1a2e;
  padding: 20px;
  border-radius: 10px;
}

.social-feed h3 {
  margin-bottom: 20px;
  color: #ffffff;
}

.feed-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.post-item {
  background-color: rgba(26, 26, 46, 0.7);
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.post-item:hover {
  background-color: rgba(74, 0, 224, 0.2);
}

.post-header {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.post-avatar {
  width: 40px;
  height: 40px;
  background-color: #16213e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8e2de2;
}

.post-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
  color: #ffffff;
}

.post-time {
  font-size: 0.7rem;
  color: #b8b8d1;
}

.post-content p {
  font-size: 0.9rem;
  color: #b8b8d1;
  margin-bottom: 10px;
}

.post-reward {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(74, 0, 224, 0.2);
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.reward-icon {
  font-size: 1.5rem;
}

.reward-details {
  display: flex;
  flex-direction: column;
}

.reward-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

.reward-rarity {
  font-size: 0.7rem;
  font-weight: 600;
}

.legendary {
  color: #ff8c00;
}

.epic {
  color: #9370db;
}

.post-actions {
  display: flex;
  gap: 15px;
}

.post-action {
  background: none;
  border: none;
  color: #b8b8d1;
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.post-action:hover {
  color: #8e2de2;
}

/* Achievement Showcase */
.achievement-showcase {
  background-color: #1a1a2e;
  padding: 20px;
  border-radius: 10px;
}

.achievement-showcase h3 {
  margin-bottom: 20px;
  color: #ffffff;
}

.achievement-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(26, 26, 46, 0.7);
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.achievement-item:hover {
  background-color: rgba(74, 0, 224, 0.2);
}

.achievement-icon {
  font-size: 1.8rem;
  min-width: 40px;
  text-align: center;
}

.achievement-item.legendary .achievement-icon {
  color: #ff8c00;
}

.achievement-item.epic .achievement-icon {
  color: #9370db;
}

.achievement-item.rare .achievement-icon {
  color: #4169e1;
}

.achievement-item.common .achievement-icon {
  color: #b8b8d1;
}

.achievement-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #ffffff;
}

.achievement-info p {
  font-size: 0.8rem;
  color: #b8b8d1;
  margin-bottom: 5px;
}

.achievement-progress {
  display: flex;
  align-items: center;
  gap: 10px;
}

.progress-bar {
  flex-grow: 1;
  height: 5px;
  background-color: #16213e;
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #8e2de2, #4a00e0);
}

.progress-text {
  font-size: 0.7rem;
  color: #b8b8d1;
}

.achievement-rarity {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  min-width: 70px;
  text-align: center;
}

.legendary {
  background-color: rgba(255, 140, 0, 0.2);
  color: #ff8c00;
}

.epic {
  background-color: rgba(147, 112, 219, 0.2);
  color: #9370db;
}

.rare {
  background-color: rgba(65, 105, 225, 0.2);
  color: #4169e1;
}

.common {
  background-color: rgba(184, 184, 209, 0.2);
  color: #b8b8d1;
}

/* Recent Winners */
.recent-winners {
  background-color: #1a1a2e;
  padding: 20px;
  border-radius: 10px;
}

.recent-winners h3 {
  margin-bottom: 20px;
  color: #ffffff;
}

.winner-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.winner-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(26, 26, 46, 0.7);
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.winner-item:hover {
  background-color: rgba(74, 0, 224, 0.2);
}

.winner-position {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  min-width: 40px;
  text-align: center;
}

.gold {
  color: gold;
}

.silver {
  color: silver;
}

.bronze {
  color: #cd7f32;
}

.winner-avatar {
  width: 40px;
  height: 40px;
  background-color: #16213e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8e2de2;
}

.winner-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
  color: #ffffff;
}

.winner-info p {
  font-size: 0.7rem;
  color: #b8b8d1;
  margin-bottom: 2px;
}

.winner-prize {
  font-size: 0.8rem;
  color: #8e2de2;
  font-weight: 600;
}

.winner-date {
  font-size: 0.7rem;
  color: #b8b8d1;
  margin-left: auto;
}

/* Reward Categories */
.reward-categories {
  grid-column: span 2;
  background-color: #1a1a2e;
  padding: 20px;
  border-radius: 10px;
}

.reward-categories h3 {
  margin-bottom: 20px;
  color: #ffffff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

.category-item {
  background-color: rgba(26, 26, 46, 0.7);
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
}

.category-item:hover {
  background-color: rgba(74, 0, 224, 0.2);
  transform: translateY(-5px);
}

.category-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #8e2de2;
}

.category-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #ffffff;
}

.category-item p {
  font-size: 0.8rem;
  color: #b8b8d1;
  margin-bottom: 5px;
}

.category-count {
  font-size: 0.7rem;
  color: #8e2de2;
  font-weight: 600;
}

/* Footer */
.footer {
  background-color: #1a1a2e;
  padding: 50px 0 20px;
  margin-top: 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-section h5 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-section p {
  font-size: 0.9rem;
  color: #b8b8d1;
  margin-bottom: 15px;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  font-size: 0.9rem;
  color: #b8b8d1;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #8e2de2;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  font-size: 1.2rem;
  color: #b8b8d1;
  transition: color 0.3s ease;
}

.social-link:hover {
  /* color: #8e2de2; */
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(142, 45, 226, 0.2);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #b8b8d1;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
  }

  .tab-label {
    padding: 8px 10px;
    min-width: 60px;
  }

  .tab-icon {
    font-size: 1.2rem;
  }

  .tab-text {
    font-size: 0.7rem;
  }
}
