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

:root {
  /* Updated color scheme with modern gradient colors instead of orange-heavy theme */
  --primary-color: #6366f1;
  --secondary-color: #1e293b;
  --accent-color: #f59e0b;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --info-color: #3b82f6;
  --text-color: #1f2937;
  --text-light: #6b7280;
  --bg-color: #ffffff;
  --bg-alt: #f8fafc;
  --border-color: #e5e7eb;
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --gradient-secondary: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --gradient-warning: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --gradient-danger: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

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

/* Header */
.header {
  background: var(--gradient-secondary);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.logo i {
  color: var(--accent-color);
  font-size: 1.75rem;
}

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

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-links a:hover {
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
  background: var(--gradient-secondary);
  color: white;
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Added hero features styling */
.hero-features {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-features h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.hero-features ul {
  list-style: none;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-features i {
  color: var(--success-color);
  font-size: 1rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gradient-primary);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-xl);
  border: 2px solid transparent;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 400px;
}

.floating-skins {
  position: relative;
  width: 100%;
  height: 100%;
}

.skin-card {
  position: absolute;
  width: 120px;
  height: 80px;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.skin-card.ak47 {
  background: var(--gradient-primary);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.skin-card.awp {
  background: var(--gradient-success);
  top: 50%;
  right: 20%;
  animation-delay: 2s;
}

.skin-card.knife {
  background: var(--gradient-warning);
  bottom: 20%;
  left: 30%;
  animation-delay: 4s;
}

/* Enhanced CS weapons visual styling for better skin showcase */
.cs-weapons {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1rem;
}

.weapon-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  animation: float 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.weapon-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.weapon-card:hover::before {
  transform: translateX(100%);
}

.weapon-card:nth-child(1) {
  animation-delay: 0s;
  background: linear-gradient(145deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.1));
}
.weapon-card:nth-child(2) {
  animation-delay: 1.5s;
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.1));
}
.weapon-card:nth-child(3) {
  animation-delay: 3s;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.2), rgba(124, 58, 237, 0.1));
}
.weapon-card:nth-child(4) {
  animation-delay: 4.5s;
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.1));
}

.weapon-card:hover {
  transform: translateY(-15px) scale(1.08);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(245, 158, 11, 0.4);
}

.weapon-card img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 12px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.weapon-card:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4)) brightness(1.1);
}

.weapon-card span {
  display: block;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-color);
}

.section-title i {
  color: var(--primary-color);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Added info grid styling for the how-to section */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.info-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.info-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Sites Grid */
.sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
}

.site-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.site-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.site-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  /* Added flex-wrap and min-width to prevent text truncation */
  flex-wrap: wrap;
  min-width: 0;
}

.site-logo-container {
  /* Increased logo container size and added dark background for white logo visibility */
  width: 100px;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.site-logo-container:hover {
  transform: scale(1.05);
  border-color: var(--primary-color);
  /* Added glow effect on hover */
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.site-logo-img {
  /* Increased logo image size and improved contrast */
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  transition: all 0.3s ease;
  filter: brightness(1.1) contrast(1.1);
}

/* Added special styling for white logos to ensure visibility */
.site-logo-img[src*="getskin"],
.site-logo-img[src*="csgo-skins"],
.site-logo-img[src*="casehug"],
.site-logo-img[src*="pirateswap"],
.site-logo-img[src*="bitskins"],
.site-logo-img[src*="tradeit"] {
  filter: brightness(1.2) contrast(1.2) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.site-logo {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.4rem;
  box-shadow: var(--shadow-md);
}

/* Added specific logo colors for highlighted sites */
.getskin-logo {
  background: var(--gradient-success);
}

.csgoskins-logo {
  background: var(--gradient-primary);
}

.casehug-logo {
  background: var(--gradient-warning);
}

.pirateswap-logo {
  background: var(--gradient-danger);
}

.site-info {
  /* Added flex-grow and min-width to ensure site names have enough space */
  flex: 1;
  min-width: 0;
  margin-right: 80px; /* Reduced from 120px to give more space for site names */
}

.site-info h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-color);
  /* Reverted to ellipsis truncation as user preferred */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.site-category {
  font-size: 0.95rem;
  color: var(--text-light);
}

.bonus-badge {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  /* Adjusted positioning to prevent overlap with site names */
  z-index: 2;
  max-width: 80px; /* Reduced from 100px */
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Added different badge styles for highlighted sites */
.bonus-badge.hot {
  background: var(--gradient-danger);
  animation: pulse 2s infinite;
}

.bonus-badge.popular {
  background: var(--gradient-primary);
}

.bonus-badge.trending {
  background: var(--gradient-warning);
}

.bonus-badge.mega {
  background: var(--gradient-danger);
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  animation: pulse 2s infinite;
}

.bonus-badge.daily {
  background: var(--gradient-success);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.bonus-info {
  margin-bottom: 1.5rem;
}

.bonus-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.bonus-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.promo-code {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-alt);
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.promo-code:hover {
  border-color: var(--primary-color);
  background: rgba(99, 102, 241, 0.05);
}

.promo-code strong {
  color: var(--primary-color);
  font-family: "Courier New", monospace;
  font-size: 1.1rem;
}

.copy-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.site-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  background: var(--bg-alt);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.feature i {
  color: var(--primary-color);
}

.site-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  padding: 1.25rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.site-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* FAQ Section */
.faq-section {
  background: var(--bg-alt);
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--gradient-secondary);
  color: white;
  padding: 60px 0 20px;
}

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

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
  display: inline-block;
  border-bottom: 1px solid transparent;
}

.footer-column ul li a:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* Notification */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: var(--gradient-success);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  transform: translateX(400px);
  transition: transform 0.3s ease;
  z-index: 1001;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.notification.show {
  transform: translateX(0);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    justify-content: center;
    gap: 1rem;
  }

  .nav-links {
    display: none;
  }

  .sites-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .site-header {
    flex-wrap: wrap;
    /* Remove margin-right on mobile and make badge static */
  }

  .site-info {
    /* Reset margin on mobile for full width */
    margin-right: 0;
    width: 100%;
  }

  .site-info h3 {
    /* Allow wrapping on mobile where space is limited */
    white-space: normal;
    word-wrap: break-word;
  }

  .bonus-badge {
    position: static;
    margin-top: 0.5rem;
    /* Allow full width on mobile for better readability */
    max-width: none;
    width: fit-content;
  }

  .cs-weapons {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0.5rem;
  }

  .weapon-card {
    padding: 1rem;
  }

  .weapon-card img {
    height: 60px;
  }

  .weapon-card span {
    font-size: 0.9rem;
  }

  .site-logo-container {
    /* Maintained larger size on mobile for better visibility */
    width: 90px;
    height: 90px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }

  .site-card {
    padding: 1.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat {
    padding: 0.75rem;
  }

  .cs-weapons {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .site-logo-container {
    /* Slightly smaller but still prominent on small screens */
    width: 80px;
    height: 80px;
    padding: 8px;
  }
}

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