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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #1a1d29;
  color: #ffffff;
  line-height: 1.6;
}

.container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
  width: 240px;
  background-color: #14171f;
  padding: 20px 0;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  border-right: 1px solid #2a2d3a;
}

.logo {
  padding: 0 20px 20px;
  border-bottom: 1px solid #2a2d3a;
  margin-bottom: 20px;
}

.logo h2 {
  color: #ff6b35;
  font-size: 24px;
  font-weight: bold;
}

.logo p {
  color: #8b8b8b;
  font-size: 12px;
  margin-top: 4px;
}

.auth-buttons {
  padding: 0 20px;
  margin-bottom: 30px;
  display: flex;
  gap: 10px;
}

.login-btn,
.register-btn {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-btn {
  background-color: #ff6b35;
  color: white;
}

.login-btn:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
}

.register-btn {
  background-color: #2a2d3a;
  color: white;
  border: 1px solid #3a3d4a;
}

.register-btn:hover {
  background-color: #3a3d4a;
  transform: translateY(-2px);
}

.nav-menu {
  list-style: none;
}

.nav-item {
  margin-bottom: 5px;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: #8b8b8b;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  background-color: #2a2d3a;
  color: #ffffff;
}

.nav-item.active .nav-link {
  background-color: #ff6b35;
  color: white;
}

.nav-link i {
  margin-right: 12px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* Main Content */
.main-content {
  flex: 1;
  margin-left: 240px;
  padding: 20px;
  background-color: #1a1d29;
}

/* Header */
.header {
  margin-bottom: 30px;
}

.search-bar {
  position: relative;
  max-width: 500px;
}

.search-bar input {
  width: 100%;
  padding: 12px 45px 12px 20px;
  background-color: #2a2d3a;
  border: 1px solid #3a3d4a;
  border-radius: 25px;
  color: white;
  font-size: 14px;
}

.search-bar input::placeholder {
  color: #8b8b8b;
}

.search-bar i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #8b8b8b;
}

/* Hero Banner */
.hero-banner {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

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

.hero-text {
  flex: 1;
}

.trophy-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.cta-button {
  background-color: #ff6b35;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

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

.football-graphic {
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border-radius: 50%;
  position: relative;
}

.football-graphic::before {
  content: "⚽";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Sections */
section {
  margin-bottom: 40px;
}

section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Match Cards */
.matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.match-card {
  background-color: #2a2d3a;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  border: 1px solid #3a3d4a;
}

.match-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: #ff6b35;
}

.match-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.live-indicator {
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.status-text {
  color: #ef4444;
  font-weight: bold;
  font-size: 12px;
}

.time {
  background-color: #ef4444;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.match-time {
  text-align: center;
  margin-bottom: 15px;
  color: #8b8b8b;
  font-weight: bold;
}

.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.team {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flag {
  font-size: 20px;
}

.team-name {
  font-weight: 500;
}

.score {
  font-size: 24px;
  font-weight: bold;
  color: #ff6b35;
}

.vs {
  color: #8b8b8b;
  font-weight: bold;
}

.betting-options {
  display: flex;
  gap: 10px;
}

.bet-option {
  flex: 1;
  background-color: #1a1d29;
  border: 1px solid #3a3d4a;
  border-radius: 8px;
  padding: 10px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 14px;
}

.bet-option:hover {
  background-color: #ff6b35;
  border-color: #ff6b35;
  transform: translateY(-2px);
}

.match-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: bold;
}

.match-badge.hot {
  background-color: #ef4444;
  color: white;
}

.match-badge.feat {
  background-color: #8b5cf6;
  color: white;
}

.match-badge.pop {
  background-color: #10b981;
  color: white;
}

.match-card.featured {
  position: relative;
}

/* Promotions */
.promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.promo-card {
  background-color: #2a2d3a;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #3a3d4a;
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.promo-badge {
  position: absolute;
  top: -8px;
  right: 15px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: bold;
}

.promo-badge.limited {
  background-color: #ef4444;
  color: white;
}

.promo-badge.time {
  background-color: #f59e0b;
  color: white;
}

.promo-badge.exclusive {
  background-color: #8b5cf6;
  color: white;
}

.promo-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.promo-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ff6b35;
}

.promo-card p {
  color: #8b8b8b;
  margin-bottom: 20px;
  line-height: 1.5;
}

.claim-btn {
  background-color: #ff6b35;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.claim-btn:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
}

/* Betting Sites */
.sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.site-card {
  background-color: #2a2d3a;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #3a3d4a;
}

.site-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.site-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.site-logo.bet {
  background-color: #ff6b35;
}

.site-logo.live {
  background-color: #8b5cf6;
}

.site-logo.win {
  background-color: #f59e0b;
}

.site-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.rating {
  margin-bottom: 10px;
  font-size: 14px;
}

.bonus {
  color: #8b8b8b;
  margin-bottom: 20px;
  font-size: 14px;
}

.play-btn {
  background-color: #ff6b35;
  color: white;
  border: none;
  padding: 12px 40px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.play-btn:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.game-card {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
}

.game-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.game-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.game-card p {
  opacity: 0.9;
  font-size: 14px;
}

/* Footer */
.footer {
  background-color: #14171f;
  padding: 40px 0 20px;
  margin-top: 60px;
  border-top: 1px solid #2a2d3a;
}

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

.footer-section h4 {
  color: #ff6b35;
  margin-bottom: 15px;
  font-size: 16px;
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #8b8b8b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #2a2d3a;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.footer-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background-color: #2a2d3a;
  border-radius: 6px;
  border: 1px solid #3a3d4a;
}

.logo-text {
  color: #ffffff;
  font-weight: bold;
  font-size: 12px;
}

.age-limit {
  color: #ff6b35;
  font-weight: bold;
  font-size: 14px;
}

.footer-legal-text {
  margin-bottom: 15px;
}

.footer-legal-text p {
  color: #8b8b8b;
  font-size: 11px;
  line-height: 1.4;
  max-width: 1000px;
  margin: 0 auto;
}

.copyright {
  color: #8b8b8b;
  font-size: 12px;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
    padding: 15px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    margin-bottom: 30px;
  }

  .matches-grid,
  .promotions-grid,
  .sites-grid,
  .games-grid {
    grid-template-columns: 1fr;
  }

  .match-teams {
    flex-direction: column;
    gap: 15px;
  }

  .betting-options {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-banner {
    padding: 20px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .match-card,
  .promo-card,
  .site-card {
    padding: 20px;
  }
}

/* Additional Interactive Elements */
.live-indicator {
  animation: pulse 2s infinite;
}

.bet-option:active {
  transform: scale(0.98);
}

.cta-button:active,
.claim-btn:active,
.play-btn:active {
  transform: translateY(0);
}

/* Hover effects for cards */
.match-card:hover .bet-option {
  border-color: #ff6b35;
}

.promo-card:hover .promo-icon {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.site-card:hover .site-logo {
  transform: rotate(5deg) scale(1.05);
  transition: transform 0.3s ease;
}

.game-card:hover .game-icon {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Page Content Styles */
.page-content {
  margin-bottom: 40px;
}

.content-card {
  background-color: #2a2d3a;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid #3a3d4a;
}

.content-card h2 {
  color: #ff6b35;
  margin-bottom: 20px;
  font-size: 20px;
}

.content-card p {
  color: #8b8b8b;
  line-height: 1.6;
  margin-bottom: 15px;
}

.content-card ul {
  color: #8b8b8b;
  padding-left: 20px;
}

.content-card ul li {
  margin-bottom: 8px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  background-color: #1a1d29;
  border: 1px solid #3a3d4a;
  border-radius: 8px;
  color: white;
  font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8b8b8b;
}

.submit-btn {
  background-color: #ff6b35;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
}

/* Job Listings */
.job-listings {
  display: grid;
  gap: 20px;
}

.job-card {
  background-color: #1a1d29;
  border: 1px solid #3a3d4a;
  border-radius: 8px;
  padding: 20px;
}

.job-card h3 {
  color: #ff6b35;
  margin-bottom: 10px;
}

.job-card p {
  color: #8b8b8b;
  margin-bottom: 8px;
}

.apply-btn {
  background-color: #ff6b35;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.apply-btn:hover {
  background-color: #e55a2b;
}

/* Highlights */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.highlight-card {
  background-color: #2a2d3a;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #3a3d4a;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.highlight-preview {
  height: 180px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.play-icon {
  font-size: 48px;
  color: white;
}

.highlight-info {
  padding: 20px;
}

.highlight-info h3 {
  color: #ff6b35;
  margin-bottom: 10px;
}

.highlight-info p {
  color: #8b8b8b;
  margin-bottom: 15px;
}

.highlight-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #8b8b8b;
}

/* Help Categories */
.help-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.help-card {
  background-color: #2a2d3a;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #3a3d4a;
}

.help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.help-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.help-card h3 {
  color: #ff6b35;
  margin-bottom: 10px;
}

.help-card p {
  color: #8b8b8b;
  margin-bottom: 20px;
}

.help-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: bold;
}

.help-link:hover {
  text-decoration: underline;
}

.article-list {
  list-style: none;
  padding: 0;
}

.article-list li {
  margin-bottom: 10px;
}

.article-list a {
  color: #8b8b8b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-list a:hover {
  color: #ff6b35;
}

/* Chat Interface */
.chat-container {
  background-color: #2a2d3a;
  border-radius: 12px;
  border: 1px solid #3a3d4a;
  margin-bottom: 30px;
  overflow: hidden;
}

.chat-header {
  background-color: #1a1d29;
  padding: 20px;
  border-bottom: 1px solid #3a3d4a;
}

.agent-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.agent-avatar {
  font-size: 32px;
}

.agent-details h3 {
  color: #ffffff;
  margin-bottom: 5px;
}

.status.online {
  color: #10b981;
  font-size: 12px;
}

.chat-messages {
  padding: 20px;
  min-height: 200px;
}

.message {
  margin-bottom: 15px;
}

.agent-message .message-content {
  background-color: #1a1d29;
  padding: 12px 16px;
  border-radius: 18px;
  max-width: 70%;
  display: inline-block;
}

.message-content p {
  margin: 0;
  color: #ffffff;
}

.message-time {
  font-size: 11px;
  color: #8b8b8b;
  margin-top: 5px;
  display: block;
}

.chat-input {
  display: flex;
  padding: 20px;
  border-top: 1px solid #3a3d4a;
  gap: 10px;
}

.chat-input input {
  flex: 1;
  padding: 12px;
  background-color: #1a1d29;
  border: 1px solid #3a3d4a;
  border-radius: 25px;
  color: white;
}

.chat-input input::placeholder {
  color: #8b8b8b;
}

.send-btn {
  background-color: #ff6b35;
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.send-btn:hover {
  background-color: #e55a2b;
  transform: scale(1.05);
}

.quick-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.action-btn {
  background-color: #1a1d29;
  color: #8b8b8b;
  border: 1px solid #3a3d4a;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
}

.action-btn:hover {
  background-color: #ff6b35;
  color: white;
  border-color: #ff6b35;
}

/* FAQ Styles */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: #2a2d3a;
  border-radius: 12px;
  border: 1px solid #3a3d4a;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #3a3d4a;
}

.faq-question h4 {
  color: #ffffff;
  margin: 0;
}

.faq-question i {
  color: #8b8b8b;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 20px 20px;
  display: none;
}

.faq-answer p {
  color: #8b8b8b;
  margin: 0;
  line-height: 1.6;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.contact-card {
  background-color: #2a2d3a;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #3a3d4a;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.contact-card h3 {
  color: #ff6b35;
  margin-bottom: 10px;
}

.contact-card p {
  color: #8b8b8b;
  margin-bottom: 10px;
}

.contact-btn {
  background-color: #ff6b35;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.contact-btn:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
}

.auth-buttons {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal {
  background: #222;
  padding: 2rem;
  border-radius: 8px;
  width: 300px;
}

.modal input {
  width: 100%;
  padding: 8px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.modal button {
  background-color: #ff6b35;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}
