/* Resetowanie stylów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #1e1e2e; /* Ciemne tło */
    color: #e0e0e0; /* Jasny tekst */
  }
  
  /* Pasek nawigacyjny */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #242436; /* Bardzo ciemne tło */
    color: #ffa500; /* Pomarańczowy kolor czcionki */
    padding: 1rem;
  }
  
  .navbar h1 {
    font-size: 1.5rem;
    color: #ffa500; /* Pomarańczowy */
  }
  
  .navbar ul {
    list-style: none;
    display: flex;
  }
  
  .navbar ul li {
    margin-left: 1rem;
  }
  
  .navbar ul li a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
  }
  
  .navbar ul li a:hover {
    background-color: #ffa500; /* Pomarańczowe podświetlenie */
    color: #1e1e2e; /* Ciemny tekst na tle */
  }
  
  /* Główna sekcja */
  main {
    padding: 2rem;
    text-align: center;
  }
  
  main h2 {
    color: #ffa500; /* Pomarańczowy nagłówek */
  }
  
  .categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .category {
    background-color: #2a2a40; /* Ciemny blok */
    border: 1px solid #3e3e5a; /* Lekko jaśniejsza ramka */
    border-radius: 5px;
    padding: 1rem;
    width: 300px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .category:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }
  
  .category h3 {
    margin-bottom: 0.5rem;
    color: #ffa500; /* Pomarańczowy nagłówek w bloku */
  }
  
  .category p {
    color: #b0b0b0; /* Jaśniejszy szary */
  }
  
  /* Footer Section */
footer {
    background-color: #1e1e2e;
    color: #e0e0e0;
    text-align: center;
    padding: 1.5rem 1rem;
  }
  
  footer p {
    margin: 0;
    color: #ffa500;
  }
  
  footer .social-media {
    margin-top: 1rem;
  }
  
  footer .social-media a {
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s;
  }
  
  footer .social-media a:hover {
    transform: scale(1.2);
  }
  
  footer .social-media img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
  }
  
  
  /* Responsywność */
  @media (max-width: 768px) {
    .categories {
      flex-direction: column;
      align-items: center;
    }
  }

  /* Stylizacja formularzy */
form {
    background-color: #2a2a40;
    padding: 2rem;
    border-radius: 8px;
    max-width: 400px;
    margin: 2rem auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }
  
  form label {
    display: block;
    font-weight: bold;
    color: #ffa500;
    margin-bottom: 0.5rem;
  }
  
  form input {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #3e3e5a;
    border-radius: 5px;
    background-color: #1e1e2e;
    color: #e0e0e0;
  }
  
  form button {
    display: block;
    width: 100%;
    padding: 0.7rem;
    background-color: #ffa500;
    color: #1e1e2e;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  form button:hover {
    background-color: #ff8800;
  }
  
  form p {
    text-align: center;
    margin-top: 1rem;
  }
  
  form p a {
    color: #ffa500;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  form p a:hover {
    color: #ff8800;
  }

  /* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #242436;
    color: #ffa500;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    margin-bottom: 2rem;
    color: #e0e0e0;
    font-size: 1.2rem;
  }
  
  .hero .btn {
    display: inline-block;
    background-color: #ffa500;
    color: #1e1e2e;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .hero .btn:hover {
    background-color: #ff8800;
  }
  
  /* Features Section */
  .features {
    padding: 3rem 1rem;
    background-color: #1e1e2e;
    color: #e0e0e0;
    text-align: center;
  }
  
  .features h2 {
    margin-bottom: 2rem;
    color: #ffa500;
  }
  
  .feature-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .feature-item {
    background-color: #2a2a40;
    padding: 1.5rem;
    border-radius: 5px;
    max-width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }
  
  .feature-item h3 {
    color: #ffa500;
    margin-bottom: 1rem;
  }
  
  .feature-item p {
    color: #b0b0b0;
  }
  
  /* Call-to-Action Section */
  .cta {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #242436;
    color: #ffa500;
  }
  
  .cta h2 {
    margin-bottom: 1rem;
  }
  
  .cta p {
    margin-bottom: 2rem;
    color: #e0e0e0;
  }
  
  .cta .btn {
    display: inline-block;
    background-color: #ffa500;
    color: #1e1e2e;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .cta .btn:hover {
    background-color: #ff8800;
  }
  
  /* Features with Icons Section */
.features-icons {
    padding: 3rem 1rem;
    background-color: #1e1e2e;
    text-align: center;
    color: #e0e0e0;
  }
  
  .features-icons h2 {
    margin-bottom: 2rem;
    color: #ffa500;
  }
  
  .features-icons .feature-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .features-icons .feature-item {
    background-color: #2a2a40;
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }
  
  .features-icons .feature-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .features-icons .feature-item h3 {
    color: #ffa500;
    margin-bottom: 0.5rem;
  }
  
  .features-icons .feature-item p {
    color: #b0b0b0;
    font-size: 0.9rem;
  }

  /* Game List Section */
  .games-section {
    padding: 3rem 1rem;
    background-color: #1e1e2e;
    color: #e0e0e0;
    text-align: center;
  }
  
  .games-section h2 {
    color: #ffa500;
    margin-bottom: 2rem;
  }
  
  .games-list {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .game-item {
    background-color: #2a2a40;
    padding: 2rem;
    border-radius: 10px;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .game-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  }
  
  .game-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  
  .game-item h3 {
    color: #ffa500;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
  }
  
  .game-description {
    color: #d0d0d0;
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .game-item a {
    text-decoration: none;
    color: inherit;
  }
  
  .game-item a:hover {
    color: #ff7f00;
  }
  
  /* General form styles */
  #subscriptionForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px auto;
    width: 60%;
  }
  
  label {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  select {
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
  }
  
  button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }
  
  button:hover {
    background-color: #45a049;
  }
  
  #paymentLinkContainer {
    margin-top: 20px;
    font-size: 18px;
    text-align: center;
  }
  
  #paymentLink {
    color: #007BFF;
    text-decoration: none;
  }
  
  #paymentLink:hover {
    text-decoration: underline;
  }
  
  /* Styling for the options panel */
  #optionsPanel {
    margin-top: 20px;
    padding: 20px;
    background-color: #2a2a40;
    border-radius: 10px;
    display: none;
  }
  
  .option-panel-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .option-panel {
    background-color: #2a2a40;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 48%; /* Two panels per row */
    margin-bottom: 10px;
  }
  
  .panel-title {
    font-size: 20px;
    margin-bottom: 10px;
    background-color: #ffa500; /* Orange color for the category title */
    color: black;
    padding: 10px;
    border-radius: 5px;
  }
  
  p {
    font-size: 16px;
    color: white;
  }
  
  #optionsButton {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
  }
  
  #optionsButton:hover {
    background-color: #0056b3;
  }  