
      .page-shbet {
        font-family: 'Arial', sans-serif;
        color: #333333;
        line-height: 1.6;
        background-color: #f8f9fa;
      }

      .page-shbet__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
      }

      .page-shbet__section {
        padding: 60px 0;
        text-align: center;
      }

      .page-shbet__section--light {
        background-color: #ffffff;
      }

      .page-shbet__section--dark {
        background-color: #2563eb;
        color: #ffffff;
      }

      .page-shbet__section--dark h2,
      .page-shbet__section--dark h3 {
        color: #ffffff;
      }

      .page-shbet__title {
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #2563eb;
      }

      .page-shbet__subtitle {
        font-size: 20px;
        color: #64748b;
        margin-bottom: 40px;
      }

      .page-shbet__hero-section {
        position: relative;
        text-align: center;
        padding-top: 10px;
        background-color: #f8f9fa;
      }

      .page-shbet__hero-image-wrapper {
        width: 100%;
        max-height: 500px;
        overflow: hidden;
        margin-bottom: 30px;
      }

      .page-shbet__hero-image {
        width: 100%;
        height: auto;
        object-fit: cover;
      }

      .page-shbet__hero-content {
        padding: 20px 15px;
        max-width: 800px;
        margin: 0 auto;
      }

      .page-shbet__hero-content h1 {
        font-size: 44px;
        font-weight: 800;
        color: #2563eb;
        margin-bottom: 20px;
        line-height: 1.2;
        max-width: 100%;
      }

      .page-shbet__hero-content p {
        font-size: 18px;
        color: #64748b;
        margin-bottom: 30px;
      }

      .page-shbet__cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
      }

      .page-shbet__btn-primary,
      .page-shbet__btn-secondary {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        font-size: 18px;
        transition: all 0.3s ease;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
        text-align: center;
      }

      .page-shbet__btn-primary {
        background-color: #2563eb;
        color: #ffffff;
        border: 2px solid #2563eb;
      }

      .page-shbet__btn-primary:hover {
        background-color: #1e40af;
        border-color: #1e40af;
      }

      .page-shbet__btn-secondary {
        background-color: #ffffff;
        color: #2563eb;
        border: 2px solid #2563eb;
      }

      .page-shbet__btn-secondary:hover {
        background-color: #f0f0f0;
        color: #1e40af;
        border-color: #1e40af;
      }

      .page-shbet__floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #ef4444;
        color: #ffffff;
        padding: 12px 20px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: background-color 0.3s ease;
        white-space: nowrap;
        overflow: hidden;
        max-width: calc(100% - 40px);
        box-sizing: border-box;
        justify-content: center;
      }

      .page-shbet__floating-button:hover {
        background-color: #dc2626;
      }

      .page-shbet__floating-button .icon {
        font-size: 20px;
      }

      .page-shbet__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
      }

      .page-shbet__game-card {
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        text-align: left;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
      }

      .page-shbet__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      }

      .page-shbet__game-card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
      }

      .page-shbet__game-card-content {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
      }

      .page-shbet__game-card-content h3 {
        font-size: 22px;
        font-weight: 700;
        color: #2563eb;
        margin-top: 0;
        margin-bottom: 15px;
      }

      .page-shbet__game-card-content p {
        font-size: 16px;
        color: #64748b;
        margin-bottom: 20px;
        flex-grow: 1;
      }

      .page-shbet__game-card-content .page-shbet__btn-primary {
        align-self: flex-start;
        padding: 10px 20px;
        font-size: 16px;
      }

      .page-shbet__about-content {
        max-width: 900px;
        margin: 0 auto;
        text-align: left;
      }

      .page-shbet__about-content h3 {
        color: #2563eb;
        font-size: 28px;
        margin-top: 30px;
        margin-bottom: 15px;
      }

      .page-shbet__about-content p {
        margin-bottom: 15px;
        color: #4b5563;
      }

      .page-shbet__promo-list {
        list-style: none;
        padding: 0;
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        text-align: left;
      }

      .page-shbet__promo-item {
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        padding: 30px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        height: 100%;
      }

      .page-shbet__promo-item h3 {
        color: #2563eb;
        font-size: 24px;
        margin-top: 0;
        margin-bottom: 15px;
      }

      .page-shbet__promo-item p {
        color: #64748b;
        margin-bottom: 20px;
        flex-grow: 1;
      }

      .page-shbet__promo-item .page-shbet__btn-primary {
        padding: 10px 20px;
        font-size: 16px;
      }

      .page-shbet__steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
      }

      .page-shbet__step-card {
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        padding: 30px;
        text-align: center;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }

      .page-shbet__step-card-icon {
        font-size: 48px;
        color: #2563eb;
        margin-bottom: 20px;
      }

      .page-shbet__step-card h3 {
        font-size: 22px;
        color: #2563eb;
        margin-bottom: 15px;
      }

      .page-shbet__step-card p {
        color: #64748b;
        flex-grow: 1;
      }

      .page-shbet__app-download-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-top: 40px;
      }

      .page-shbet__app-image {
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      }

      .page-shbet__app-info {
        text-align: left;
        max-width: 600px;
      }

      .page-shbet__app-info p {
        margin-bottom: 20px;
        color: #4b5563;
      }

      .page-shbet__app-buttons {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
      }

      .page-shbet__app-button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 25px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 17px;
        transition: background-color 0.3s ease;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
        text-align: center;
      }

      .page-shbet__app-button--android {
        background-color: #4CAF50;
        color: #ffffff;
      }

      .page-shbet__app-button--android:hover {
        background-color: #388E3C;
      }

      .page-shbet__app-button--ios {
        background-color: #007AFF;
        color: #ffffff;
      }

      .page-shbet__app-button--ios:hover {
        background-color: #0056b3;
      }

      .page-shbet__faq-list {
        margin-top: 40px;
        text-align: left;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
      }

      details.page-shbet__faq-item {
        margin-bottom: 15px;
        border-radius: 5px;
        border: 1px solid #e0e0e0;
        overflow: hidden;
        background: #fff;
      }

      details.page-shbet__faq-item summary.page-shbet__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        cursor: pointer;
        user-select: none;
        list-style: none;
        transition: background-color 0.3s ease;
      }

      details.page-shbet__faq-item summary.page-shbet__faq-question::-webkit-details-marker {
        display: none;
      }

      details.page-shbet__faq-item summary.page-shbet__faq-question:hover {
        background: #f5f5f5;
      }

      .page-shbet__faq-qtext {
        flex: 1;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.5;
        text-align: left;
        color: #333333;
      }

      .page-shbet__faq-toggle {
        font-size: 24px;
        font-weight: bold;
        color: #666;
        flex-shrink: 0;
        margin-left: 15px;
        width: 28px;
        text-align: center;
      }

      details.page-shbet__faq-item .page-shbet__faq-answer {
        padding: 0 20px 20px;
        background: #f9f9f9;
        border-radius: 0 0 5px 5px;
        color: #4b5563;
      }

      .page-shbet__faq-answer p {
        margin-bottom: 0;
      }

      .page-shbet__contact-section p {
        font-size: 17px;
        margin-bottom: 15px;
        color: #4b5563;
      }

      @media (max-width: 1024px) {
        .page-shbet__hero-content h1 {
          font-size: 38px;
        }

        .page-shbet__game-grid {
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }

        .page-shbet__promo-list {
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .page-shbet__steps-grid {
          grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        }
      }

      @media (max-width: 768px) {
        .page-shbet__container {
          padding: 0 15px !important;
          max-width: 100% !important;
          width: 100% !important;
          box-sizing: border-box !important;
        }

        .page-shbet__section {
          padding: 40px 0;
        }

        .page-shbet__title {
          font-size: 32px;
        }

        .page-shbet__subtitle {
          font-size: 18px;
        }

        .page-shbet__hero-content {
          padding: 15px;
        }

        .page-shbet__hero-content h1 {
          font-size: 30px;
        }

        .page-shbet__hero-content p {
          font-size: 16px;
        }

        .page-shbet__cta-buttons {
          flex-direction: column;
          gap: 15px;
        }

        .page-shbet__btn-primary,
        .page-shbet__btn-secondary {
          width: 100% !important;
          max-width: 100% !important;
          padding: 12px 20px;
          font-size: 16px;
          box-sizing: border-box !important;
          white-space: normal !important;
          word-wrap: break-word !important;
        }

        .page-shbet__floating-button {
          bottom: 15px;
          right: 15px;
          padding: 10px 18px;
          font-size: 15px;
          max-width: calc(100% - 30px) !important;
          width: auto;
        }

        .page-shbet__game-grid,
        .page-shbet__promo-list,
        .page-shbet__steps-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }

        .page-shbet__game-card-image {
          height: 180px;
        }

        .page-shbet__game-card-content h3 {
          font-size: 20px;
        }

        .page-shbet__game-card-content p {
          font-size: 15px;
        }

        .page-shbet__about-content h3 {
          font-size: 24px;
        }

        .page-shbet__promo-item h3 {
          font-size: 22px;
        }

        .page-shbet__step-card h3 {
          font-size: 20px;
        }

        .page-shbet__app-download-section {
          flex-direction: column;
          gap: 20px;
        }

        .page-shbet__app-info {
          text-align: center;
        }

        .page-shbet__app-image {
          max-width: 300px;
        }

        .page-shbet__app-buttons {
          flex-direction: column;
          gap: 10px;
        }

        .page-shbet__app-button {
          width: 100% !important;
          max-width: 100% !important;
          padding: 10px 15px;
          font-size: 16px;
          box-sizing: border-box !important;
          white-space: normal !important;
          word-wrap: break-word !important;
        }

        .page-shbet img {
          max-width: 100% !important;
          width: 100% !important;
          height: auto !important;
        }

        details.page-shbet__faq-item summary.page-shbet__faq-question {
          padding: 15px;
        }

        .page-shbet__faq-qtext {
          font-size: 16px;
        }

        details.page-shbet__faq-item .page-shbet__faq-answer {
          padding: 0 15px 15px;
        }

        .page-shbet p,
        .page-shbet li {
          font-size: 15px;
        }
      }
    