
  :root {
    --primary: #ff3a3a;
    --secondary: #2c3e50;
    --accent: #3498db;
    --dark: #1a1a1a;
    --light: #f4f4f4;
    --gradient-primary: linear-gradient(135deg, #ff3a3a 0%, #ff5e3a 100%);
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
  }

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

  body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--dark);
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    color: var(--light);
  }

  h1 {
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: var(--text-shadow);
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 2rem;
    position: relative;
    margin-bottom: 2rem;
    text-shadow: var(--text-shadow);
  }

  h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -10px;
    left: 0;
  }

  p {
    margin-bottom: 1.2rem;
    color: var(--light);
  }

  img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }

  a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
  }

  a:hover {
    color: var(--primary);
  }

  .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.2;
  }

  /* Hero Section */
  .hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-color: var(--dark);
    padding: 80px 0;
    overflow: hidden;
  }

  .hero-intro {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 2rem;
    text-shadow: var(--text-shadow);
  }

  /* Tournaments Overview */
  .tournaments-overview {
    padding: 80px 0;
    background-color: #121212;
  }

  .tournament-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .tournament-card {
    background-color: rgba(44, 62, 80, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
  }

  .tournament-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  }

  .tournament-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
  }

  .tournament-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .tournament-date {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .tournament-stats {
    display: flex;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat {
    display: flex;
    align-items: center;
    margin-right: 20px;
  }

  .stat i {
    color: var(--primary);
    margin-right: 8px;
  }

  /* DPC System */
  .dpc-system {
    position: relative;
    padding: 80px 0;
    background-color: #0a0a0a;
    overflow: hidden;
  }

  .dpc-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .dpc-content {
    flex: 1;
  }

  .dpc-structure {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .dpc-level {
    background-color: rgba(44, 62, 80, 0.6);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
  }

  .dpc-level h4 {
    display: flex;
    align-items: center;
    color: var(--light);
    margin-bottom: 10px;
  }

  .dpc-level h4 i {
    color: var(--primary);
    margin-right: 10px;
  }

  .dpc-schedule {
    flex: 1;
    background-color: rgba(26, 26, 26, 0.7);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
  }

  .timeline {
    list-style: none;
    position: relative;
    padding-left: 30px;
  }

  .timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--primary);
  }

  .timeline li {
    position: relative;
    margin-bottom: 25px;
    padding-left: 20px;
  }

  .timeline li::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--dark);
    border: 3px solid var(--primary);
  }

  .timeline .date {
    display: block;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
  }

  /* Top Teams */
  .top-teams {
    padding: 80px 0;
    background-color: #121212;
  }

  .teams-slider {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    margin: 40px 0;
  }

  .team-card {
    flex: 0 0 100%;
    background-color: rgba(44, 62, 80, 0.8);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin-right: 20px;
    transition: var(--transition);
  }

  .team-card:hover {
    transform: translateY(-5px);
  }

  .team-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
  }

  .team-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .team-card h3 {
    text-align: center;
    margin-bottom: 5px;
  }

  .team-region {
    text-align: center;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
  }

  .team-achievements {
    margin-bottom: 20px;
  }

  .achievement {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .achievement i {
    color: gold;
    margin-right: 10px;
  }

  .slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  .prev-btn, .next-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
  }

  .prev-btn:hover, .next-btn:hover {
    background-color: var(--accent);
  }

  .slider-dots {
    display: flex;
    margin: 0 20px;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
  }

  .dot.active {
    background-color: var(--primary);
  }

  /* Polish Scene */
  .polish-scene {
    padding: 80px 0;
    background-color: #0a0a0a;
  }

  .polish-scene-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .polish-scene-info {
    flex: 1;
  }

  .local-tournaments {
    list-style: none;
    margin: 30px 0;
  }

  .local-tournaments li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    background-color: rgba(44, 62, 80, 0.6);
    padding: 15px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
  }

  .local-tournaments i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
  }

  .local-tournaments h4 {
    margin-bottom: 5px;
  }

  .cta-box {
    background: var(--gradient-primary);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-top: 40px;
  }

  .cta-box h3 {
    color: white;
  }

  .cta-box p {
    color: rgba(255, 255, 255, 0.9);
  }

  .cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary) !important;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 30px;
    margin-top: 15px;
    transition: var(--transition);
  }

  .cta-button:hover {
    background-color: var(--dark);
    color: white !important;
    transform: translateY(-3px);
  }

  .polish-players {
    flex: 1;
  }

  .players-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .player-card {
    background-color: rgba(44, 62, 80, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }

  .player-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .player-card h4 {
    padding: 15px 15px 5px;
  }

  .player-team, .player-role, .player-desc {
    padding: 0 15px;
  }

  .player-team {
    color: var(--primary);
    font-weight: 600;
  }

  .player-role {
    color: var(--accent);
    margin-bottom: 10px;
  }

  .player-desc {
    padding-bottom: 15px;
  }

  /* Tournament Calendar */
  .tournament-calendar {
    position: relative;
    padding: 80px 0;
    background-color: #121212;
    overflow: hidden;
  }

  .calendar-tabs {
    margin-top: 40px;
  }

  .tab-buttons {
    display: flex;
    overflow-x: auto;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .tab-btn {
    background: none;
    border: none;
    color: var(--light);
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
  }

  .tab-btn.active {
    color: var(--primary);
  }

  .tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
  }

  .tab-content {
    display: none;
  }

  .tab-content.active {
    display: block;
  }

  .calendar-events {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .event {
    display: flex;
    background-color: rgba(44, 62, 80, 0.6);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }

  .event-date {
    background: var(--gradient-primary);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 100px;
    color: white;
  }

  .event-date .month {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
  }

  .event-date .days {
    font-size: 1.2rem;
    font-weight: 800;
  }

  .event-details {
    padding: 20px;
    flex-grow: 1;
  }

  .event-location {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
  }

  /* FAQ Section */
  .faq-section {
    padding: 80px 0;
    background-color: #0a0a0a;
  }

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

  .faq-item {
    margin-bottom: 15px;
    background-color: rgba(44, 62, 80, 0.6);
    border-radius: 8px;
    overflow: hidden;
  }

  .faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
  }

  .faq-question:hover {
    background-color: rgba(52, 152, 219, 0.1);
  }

  .faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
  }

  .faq-question i {
    color: var(--primary);
    transition: var(--transition);
  }

  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
  }

  .faq-item.active .faq-question i {
    transform: rotate(180deg);
  }

  /* Responsive */
  @media (min-width: 768px) {
    h1 {
      font-size: 3rem;
    }

    h2 {
      font-size: 2.2rem;
    }

    .tournament-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .dpc-info {
      flex-direction: row;
    }

    .dpc-structure {
      grid-template-columns: repeat(3, 1fr);
    }

    .team-card {
      flex: 0 0 calc(50% - 20px);
    }

    .polish-scene-content {
      flex-direction: row;
    }

    .players-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .tournament-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .team-card {
      flex: 0 0 calc(25% - 20px);
    }
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
