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

    body {
      font-family: Arial, sans-serif;
      background-color: #fff;
      color: #333;
      line-height: 1.6;
    }

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

    /* Header */
    header {
      background: linear-gradient(135deg, #9B4DCA, #FF6B9C);
      color: #fff;
      padding: 15px 0;
      box-shadow: 0 8px 10px rgba(155, 77, 202, 0.3);
    }

    .top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
    }

    .logo-img {
      height: 60px;
    }

    /* Buttons */
    .btn {
      padding: 12px 24px;
      text-decoration: none;
      font-size: 16px;
      font-weight: bold;
      border-radius: 20px;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      border: none;
      cursor: pointer;
    }

    .play-btn {
      background: linear-gradient(45deg, #FF6B9C, #FF1493);
      color: #fff;
      border: 2px solid #FFE5B4;
      display: inline-block;
      text-align: center;
    }

    .play-btn:hover {
      background: linear-gradient(45deg, #FF1493, #FF6B9C);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 107, 156, 0.4);
    }

    .register-btn {
      background: linear-gradient(45deg, #9B4DCA, #B19CD9);
      color: #fff;
      border: 2px solid #FFE5B4;
      height: 40px;
    }

    .register-btn:hover {
      background: linear-gradient(45deg, #B19CD9, #9B4DCA);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(155, 77, 202, 0.4);
    }

    .cta-btn {
      display: block;
      width: 100%;
      max-width: 400px;
      margin: 30px auto;
      padding: 15px 30px;
      background: linear-gradient(45deg, #FF6B9C, #9B4DCA);
      color: #fff;
      text-decoration: none;
      text-align: center;
      border-radius: 25px;
      font-weight: bold;
      font-size: 18px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(155, 77, 202, 0.4);
    }

    /* Main Content */
    main {
      min-height: 90vh;
      padding: 20px 0;
    }

    .main-container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Slots Section */
    .slots-section {
      margin-bottom: 40px;
    }

    .slots-section h1 {
      text-align: center;
      margin-bottom: 30px;
      color: #9B4DCA;
      font-size: 2.5rem;
    }

    .slots-category {
      margin-bottom: 40px;
    }

    .slots-category h3 {
      background: linear-gradient(135deg, #9B4DCA, #FF6B9C);
      color: white;
      padding: 15px 20px;
      border-radius: 10px;
      margin-bottom: 20px;
      font-size: 1.5rem;
    }

    .slots-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-bottom: 20px;
    }

    .slot-item {
      background: linear-gradient(135deg, #fff, #f9f9f9);
      border: 1px solid #e0e0e0;
      border-radius: 15px;
      padding: 20px;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .slot-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(155, 77, 202, 0.2);
    }

    .slot-item img {
      width: 100%;
      max-width: 200px;
      height: 150px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 15px;
      background: #f0f0f0;
    }

    .slot-item h4 {
      margin-bottom: 10px;
      color: #9B4DCA;
      font-size: 1.2rem;
    }

    .slot-item p {
      margin-bottom: 15px;
      font-size: 0.9rem;
      color: #666;
    }

    /* Content Section */
    .content-section {
      background: linear-gradient(135deg, #fff, #f8f9fa);
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      margin-bottom: 40px;
    }

    .content-section h2 {
      color: #9B4DCA;
      margin: 2rem 0 1rem;
      font-size: 2rem;
    }

    .content-section h3 {
      color: #FF6B9C;
      margin: 1.5rem 0 0.8rem;
      font-size: 1.5rem;
    }

    .content-section p {
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }

    .img-block {
      text-align: center;
      margin: 30px 0;
    }

    .img-block img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      margin-bottom: 20px;
    }

    /* Table */
    table {
      width: 100%;
      border-collapse: collapse;
      margin: 2rem 0;
      box-shadow: 0 4px 15px rgba(138, 43, 226, 0.1);
      border-radius: 10px;
      overflow: hidden;
    }

    table th,
    table td {
      border: 1px solid #ddd;
      padding: 1rem;
      text-align: left;
    }

    table th {
      background: linear-gradient(135deg, #9B4DCA, #FF6B9C);
      color: white;
      font-weight: bold;
    }

    table tr:nth-child(even) {
      background-color: #f9f9f9;
    }

    /* Footer */
    footer {
      background: linear-gradient(135deg, #8A2BE2, #FF69B4);
      color: #fff;
      padding: 20px 0;
      text-align: center;
    }

    footer p {
      margin: 0;
      font-size: 16px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .top {
        flex-direction: column;
        gap: 15px;
        text-align: center;
      }

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

      .content-section {
        padding: 20px;
      }

      .content-section h2 {
        font-size: 1.5rem;
      }

      .slots-section h1 {
        font-size: 2rem;
      }
    }

    @media (max-width: 480px) {
      .container, .main-container {
        width: 95%;
        padding: 10px;
      }

      .slot-item {
        padding: 15px;
      }

      .btn, .play-btn, .register-btn {
        padding: 10px 20px;
        font-size: 14px;
      }
    }
 