
  :root {
    --primary: #ff4655;
    --secondary: #1f2326;
    --accent: #4d98ff;
    --text: #f1f1f1;
    --text-dark: #121212;
    --background: #0f1923;
    --background-light: #1a2a3a;
    --border: #2a3a4a;
    --success: #4caf50;
    --error: #f44336;
  }

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

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

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

  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
  }

  h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  p {
    margin-bottom: 1.5rem;
  }

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

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

  a:hover {
    color: #6aadff;
  }

  ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
  }

  li {
    margin-bottom: 0.5rem;
  }

  /* Section Styles */
  section {
    padding: 80px 0;
    position: relative;
  }

  section:nth-child(odd) {

  }

  section:nth-child(even) {
    background-color: var(--background-light);
  }

  .section-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
  }

  /* Hero Section */
  .hero-section {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

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

  .hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 25, 35, 0.8);
    z-index: -1;
  }

  .hero-intro {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
  }

  /* Intro Section */
  .intro-section {
    padding: 80px 0;
  }

  .skin-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
  }

  .category-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--secondary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }

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

  .category-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
  }

  .category-card h3, .category-card p {
    padding: 0 20px;
  }

  .category-card h3 {
    margin-top: 15px;
    color: var(--text);
  }

  .category-card p {
    margin-bottom: 20px;
    color: #b8b8b8;
  }

  /* Cases Section */
  .cases-section {
    position: relative;
    padding: 100px 0;
  }

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

  .cases-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 25, 35, 0.85);
    z-index: -1;
  }

  .cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }

  .case-item {
    background-color: var(--secondary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }

  .case-item:hover {
    transform: translateY(-5px);
  }

  .case-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
  }

  .case-details {
    padding: 20px;
  }

  .case-details h3 {
    margin-top: 0;
    color: var(--text);
  }

  .case-details p {
    color: #b8b8b8;
  }

  .case-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
  }

  .price-label {
    color: #b8b8b8;
  }

  .price-value {
    font-weight: 700;
    color: var(--accent);
  }

  /* Top Skins Section */
  .top-skins-section {
    padding: 80px 0;
  }

  .top-skins-table {
    background-color: var(--secondary);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .table-header, .table-row {
    display: grid;
    grid-template-columns: 0.5fr 2fr 1fr 1fr 1.5fr;
    padding: 15px 20px;
    align-items: center;
  }

  .table-header {
    background-color: var(--primary);
    color: var(--text-dark);
    font-weight: 700;
  }

  .table-row {
    border-bottom: 1px solid var(--border);
  }

  .table-row:last-child {
    border-bottom: none;
  }

  .table-row:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.05);
  }

  .col-rank {
    text-align: center;
    font-weight: 700;
  }

  .col-price {
    color: var(--accent);
    font-weight: 700;
  }

  .disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
  }

  .disclaimer i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 3px;
  }

  .disclaimer p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #b8b8b8;
  }

  /* Float and Patterns Section */
  .float-patterns-section {
    padding: 80px 0;
  }

  .section-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
  }

  .content-col {
    flex: 1;
    min-width: 300px;
  }

  .float-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 20px;
  }

  .float-category {
    background-color: var(--secondary);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
  }

  .float-category h4 {
    margin-bottom: 5px;
    color: var(--text);
  }

  .float-category p {
    margin-bottom: 0;
    color: var(--accent);
    font-weight: 700;
  }

  .patterns-list {
    margin-bottom: 30px;
  }

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

  .patterns-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

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

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

  .faq-item {
    background-color: var(--secondary);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

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

  .faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }

  .faq-question h3 {
    margin-bottom: 0;
  }

  .faq-question i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }

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

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

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

  /* Newsletter Section */
  .newsletter-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--secondary);
  }

  .newsletter-form {
    max-width: 500px;
    margin: 40px auto 0;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    margin-bottom: 10px;
    text-align: left;
  }

  .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-size: 1rem;
  }

  .form-group input:focus {
    outline: none;
    border-color: var(--accent);
  }

  .btn-subscribe {
    padding: 12px 30px;
    background-color: var(--primary);
    color: var(--text-dark);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .btn-subscribe:hover {
    background-color: #ff5e6d;
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
    h1 {
      font-size: 2rem;
    }

    h2 {
      font-size: 1.8rem;
    }

    section {
      padding: 60px 0;
    }

    .hero-section {
      padding: 80px 0;
    }

    .hero-intro {
      font-size: 1.1rem;
    }

    .table-header, .table-row {
      grid-template-columns: 0.5fr 1.5fr 1fr 1fr 1fr;
      font-size: 0.9rem;
      padding: 10px;
    }

    .section-content {
      flex-direction: column;
      gap: 30px;
    }
  }

  @media (max-width: 576px) {
    h1 {
      font-size: 1.8rem;
    }

    h2 {
      font-size: 1.5rem;
    }

    .table-header, .table-row {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      padding: 15px;
    }

    .table-header {
      display: none;
    }

    .table-row > div {
      padding: 5px 0;
    }

    .table-row > div:before {
      content: attr(data-label);
      font-weight: 700;
      display: inline-block;
      width: 120px;
    }

    .col-rank:before {
      content: "Pozycja: ";
    }

    .col-skin:before {
      content: "Nazwa skina: ";
    }

    .col-weapon:before {
      content: "Broń: ";
    }

    .col-rarity:before {
      content: "Rzadkość: ";
    }

    .col-price:before {
      content: "Wartość: ";
    }
  }

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