body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #0e0f12;
    color: #fff;
  padding: 0;
  line-height: 1.6;
  }
  
  main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
  }

  main img{
    width: 100%;
    border-radius: 20px;
  }
  
  section {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  }
  
  h2 {
    font-size: 28px;
    color: #70e000;
    margin-bottom: 14px;
  }
  
  p {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 16px;
  }
  
  ul {
    padding-left: 20px;
  }
  
  li {
    margin-bottom: 10px;
  }
  
  em {
    color: #8be42c;
    font-style: normal;
  }

  .bc-header {
    background: #0e0f12;
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    position: relative;
    z-index: 10;
  }
  
  .header-top {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 24px;
  }
  
  .logo img {
width: 60px;  
}
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
  }
  
  .top-link {
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
    transition: color 0.3s;
  }
  .top-link:hover {
    color: #6be445;
  }
  
  .login-link,
  .register-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-left: 12px;
    transition: color 0.3s;
  }
  .login-link:hover,
  .register-link:hover {
    color: #6be445;
  }
  
  .main-nav {
    background: #447d3c;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
  }
  
  .main-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }
  .main-nav a:hover {
    color: #ffd700;
  }
  
  .burger {
    display: none;
    position: absolute;
    right: 20px;
    top: 18px;
    font-size: 22px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }
  
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #121316;
    z-index: 999;
    padding: 24px;
    transition: right 0.3s ease;
  }
  .mobile-menu.active {
    right: 0;
  }
  
  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: white;
  }
  
  .mobile-header button {
    background: none;
    border: none;
    font-size: 22px;
    color: white;
    cursor: pointer;
  }
  
  .mobile-menu ul {
    list-style: none;
    padding: 0;
  }
  .mobile-menu ul li {
    margin: 14px 0;
  }
  .mobile-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.2s;
  }
  .mobile-menu ul li a:hover {
    background: #1e2027;
  }
  
  .auth-mobile {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .auth-mobile a {
    text-align: center;
    text-decoration: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    background: #4ec857;
    color: black;
    transition: background 0.3s;
  }
  .auth-mobile a:hover {
    background: #3fa847;
  }
  
  .menu-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: 998;
    display: none;
  }
  .menu-blur.active {
    display: block;
  }

  .bc-hero {
    background: url('https://bcgame-ua.com/wp-content/uploads/2024/12/app-1-1-e1735312234351.png') no-repeat center center;
    background-size: cover;
    padding: 60px 20px;
  }
  
  .bc-hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .bc-hero-text {
    max-width: 600px;
  }
  
  .bc-hero-text small {
    color: #70e000;
    font-weight: 600;
    font-size: 14px;
  }
  
  .bc-hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin: 10px 0;
  }
  
  .bc-hero-text span {
    color: #70e000;
  }
  
  .bc-hero-text p {
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.6;
  }
  
  .bc-main-btn {
    display: inline-block;
    background: #70e000;
    color: #000;
    padding: 12px 28px;
    font-weight: bold;
    border-radius: 32px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .bc-main-btn:hover {
    background: #8be42c;
  }
  
  .bc-main-btn.dark {
    background: #1b1d21;
    color: #fff;
    border: 1px solid #70e000;
  }
  
  .bc-main-btn.dark:hover {
    background: #2e3238;
  }
  
  .bc-hero-bonus {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .bc-hero-bonus-box {
    background: #4b8c3a;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  
  .bc-hero-bonus-box img {
    width: 90px;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  
  .bc-hero-bonus-box h4 {
    font-size: 18px;
    margin-bottom: 14px;
  }
  
  .bc-hero-bonus-box h2 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 24px;
  }

  .bc-category-section {
    padding: 60px 20px;
    max-width: 1300px;
    margin: 0 auto;
  }
  
  .bc-category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .bc-category-filters a {
    padding: 10px 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
  }
  
  .bc-category-filters a.active,
  .bc-category-filters a:hover {
    background: #4b8c3a;
    border-color: #4b8c3a;
    color: #fff;
  }
  
  .bc-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  
  .bc-category-card {
    background: #0f0f0f;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
  }
  
  .bc-category-card:hover {
    transform: translateY(-4px);
  }
  
  .bc-category-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .bc-category-card p {
    font-size: 14px;
    color: #ddd;
    margin: 16px;
  }
  
  .bc-category-card a {
    display: inline-block;
    background: #4b8c3a;
    color: #fff;
    font-weight: bold;
    padding: 10px 24px;
    border-radius: 32px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .bc-category-card a:hover {
    background: #60a248;
  }

  .bc-reviews {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
  }
  
  .bc-reviews h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  .bc-reviews h2 span {
    color: #70e000;
  }
  
  .bc-review-box {
    background: #1c1d22;
    padding: 40px;
    border-radius: 16px;
    text-align: left;
    position: relative;
  }
  
  .bc-review-user {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
  }
  
  .bc-review-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #70e000;
  }
  
  .bc-subtext {
    font-size: 14px;
    color: #bbb;
    margin: 4px 0 0;
  }
  
  .bc-review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #eee;
    margin-bottom: 30px;
    font-style: italic;
  }
  
  .bc-review-nav {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .bc-review-nav img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border 0.2s;
    cursor: pointer;
  }
  
  .bc-review-nav img:hover {
    border-color: #70e000;
  }
  
  .bc-review-nav a{
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    margin-left: auto;
    transition: background 0.3s;
  }
  

  .bc-footer {
    background: #1c1d22;
    color: #ccc;
    font-size: 14px;
    padding: 60px 20px 20px;
  }
  
  .bc-footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .bc-footer-logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 1 300px;
  }
  
  .bc-footer-logo img {
    width: 130px;
  }
  
  .bc-footer-logo h4 {
    color: #fff;
    margin-bottom: 10px;
  }
  
  .bc-footer-logo p {
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
  }
  
  .bc-footer-links {
    flex: 1 1 200px;
  }
  
  .bc-footer-links h4 {
    color: #70e000;
    margin-bottom: 14px;
    position: relative;
  }
  
  .bc-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .bc-footer-links ul li {
    margin-bottom: 10px;
  }
  
  .bc-footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .bc-footer-links ul li a:hover {
    color: #70e000;
  }
  
  .bc-footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    color: #777;
    padding-top: 20px;
    border-top: 1px solid #333;
  }
  
  
  @media (max-width: 768px) {
    .bc-footer-container {
        flex-direction: column;
        gap: 40px;
      }
    
      .bc-footer-logo,
      .bc-footer-links {
        flex: 1 1 100%;
      }
    .bc-review-box {
        padding: 30px 20px;
      }
      .bc-review-user {
        flex-direction: column;
        align-items: flex-start;
      }
      .bc-review-nav {
        flex-wrap: wrap;
      }
    .bc-category-filters {
        justify-content: center;
      }
      .bc-category-card p {
        padding: 0 10px;
      }
    .main-nav {
      display: none;
    }
    .bc-category-section {
        padding: 60px 12px;
    }
    .bc-hero-inner {
        flex-direction: column;
        align-items: flex-start;
      }
      .bc-hero-text h1 {
        font-size: 36px;
      }
      .bc-hero-bonus {
        width: 100%;
      }
      .bc-hero-bonus-box {
        margin-top: 20px;
      }
    
    .header-actions .top-link{
        display: none;
    }
    .burger {
      display: block;
    }
    .mobile-menu{
        display: block;
        right: -108%;
    }
    .header-actions {
    margin-right: 40px;
    gap: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .bc-category-filters button {
        flex: 1 1 100%;
        text-align: center;
      }
    .mobile-header span {
      font-size: 16px;
      font-weight: bold;
    }
    .bc-hero-text h1 {
        font-size: 28px;
      }
      .bc-main-btn {
        text-align: center;
      }
  }