* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(to bottom, #050e2d 0%, #3dea61 100%);
    color: #fff;
    overflow-x: hidden;
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
  }
  .logo {
    font-weight: 800;
    font-size: 1.5rem;
  }
  nav a {
    margin: 0 1rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
  }
  .cta-btn {
    background: #e9ff00;
    color: black;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
  }
  .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .hero-text {
    max-width: 520px;
  }
  .hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
  }
  .hero p {
    margin: 1rem 0 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
  }
  .ninja-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 20px;
    text-align: center;
    max-width: 220px;
  }
  .ninja-card img {
    max-width: 100%;
    border-radius: 16px;
  }
  .ninja-card .score {
    background: #202020;
    margin-top: 0.5rem;
    padding: 0.3rem 0.7rem;
    border-radius: 10px;
    font-weight: 600;
    display: inline-block;
  }
  .ninja-figure img {
    width: 320px;
  }
  .stats {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .stats div {
    font-size: 1.2rem;
  }
  .highlight {
    font-weight: 700;
    font-size: 1.4rem;
  }
  .trusted-partner-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.trusted-partner-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(23, 162, 184, 0.1) 0%, rgba(23, 162, 184, 0) 70%);
    bottom: -50px;
    right: -50px;
    z-index: 0;
}

.partner-title {
    color: black;
    font-size: 40pt !important;
    font-weight: bold !important;
    margin-bottom: 20px;
    line-height: 1.3;
}

.text-yukon {
    color: #28994e;
}

.partner-text {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.7;
}

.partner-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #495057;
}

.feature-item i {
    color: #28994e;
}

.btn-yukon {
    background: linear-gradient(to right, #17a2b8, #138496);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-yukon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .partner-title {
        font-size: 2rem;
    }
}
.disclaimer-section {
    position: relative;
    overflow: hidden;
  }
  
  .disclaimer-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid #28994e;
  }
  
  .disclaimer-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #343a40;
  }
  
  
  .disclaimer-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #17a2b8, #138496);
    margin: 15px auto 25px;
    border-radius: 3px;
  }
  
  .point-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #495057;
    display: flex;
    align-items: center;
  }
  
  .point-text {
    color: #6c757d;
    line-height: 1.7;
    margin-left: 28px;
  }
  
  .notice-box {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    border-radius: 0 8px 8px 0;
  }
  
  @media (max-width: 768px) {
    .disclaimer-title {
      font-size: 1.8rem;
    }
    
    .disclaimer-card {
      padding: 25px !important;
    }
  }
  .feedback-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid #28994e;
  }
  
  .feedback-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #343a40;
  }
  
  .feedback-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
  }
  

  .form-label{
    color: black
  }
  .divider-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #28994e, #138496);
    margin: 15px auto 25px;
    border-radius: 3px;
  }
  
  .btn-yukon {
    background: linear-gradient(to right, #28994e, #408f00);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
  }
  
  .btn-yukon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.4);
  }
  
  .form-control, .form-select {
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid #ced4da;
  }
  
  .form-control:focus {
    border-color: #17a2b8;
    box-shadow: 0 0 0 0.25rem rgba(23, 162, 184, 0.25);
  }
  
  .checkboxes-group {
    background: rgba(23, 162, 184, 0.05);
    border-radius: 8px;
    padding: 20px;
  }
  
  .form-check-input:checked {
    background-color: #17a2b8;
    border-color: #17a2b8;
  }
  
  .form-check-label a {
    color: #17a2b8;
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .feedback-title {
      font-size: 1.8rem;
    }
  } .yukon-footer {
    background-color: #1a1e23;
    color: #ffffff;
    padding: 50px 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  
  .footer-brand {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
  }
  
  .footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: #28994e;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
  }
  
  .footer-slogan {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(40,153,78,0.2);
    color: #28994e;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  
  .social-icon:hover {
    background-color: #28994e;
    color: white;
    transform: translateY(-3px);
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .links-column {
    min-width: 150px;
  }
  
  .links-heading {
    color: #28994e;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 5px;
  }
  
  .links-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #28994e;
  }
  
  .footer-menu {
    list-style: none;
    padding: 0;
  }
  
  .footer-menu li {
    margin-bottom: 12px;
  }
  
  .footer-menu a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
  }
  
  .footer-menu a:hover {
    color: #28994e;
    padding-left: 5px;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
  }
  
  .age-restriction {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .age-restriction i {
    color: #28994e;
    margin-right: 5px;
  }
  
  .copyright {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
  }
  
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
    }
    
    .footer-links {
      gap: 30px;
      margin-top: 30px;
    }
  }
  .games-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #343a40;
  }
  
  .text-yukon {
    color: #28994e;
  }
  
  .game-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
  }
  
  .game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #28994e;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
  }
  
  .game-thumbnail {
    height: 200px;
    overflow: hidden;
  }
  
  .game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  
  .game-card:hover .game-thumbnail img {
    transform: scale(1.05);
  }
  
  .game-content {
    padding: 20px;
  }
  
  .game-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 15px;
  }
  
  .game-rarity {
    background: rgba(40,153,78,0.1);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .rarity-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28994e;
    display: block;
  }
  
  .rarity-label {
    font-size: 0.9rem;
    color: #6c757d;
  }
  
  .btn-play {
    width: 100%;
    background: linear-gradient(to right, #28994e, #1e7a3d);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40,153,78,0.3);
  }
  
  .btn-view-all {
    background: white;
    color: #28994e;
    border: 2px solid #28994e;
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .btn-view-all:hover {
    background: #28994e;
    color: white;
  }
  
  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
    
    .game-thumbnail {
      height: 180px;
    }
  }

iframe{
    margin: 0 auto;
    display: block;
    width: 60%;
    height: 500px;
    margin-bottom: 50px;

  }

.btn-play a{
    color: white !important
}

.contacts-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }
  
  .section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #343a40;
  }
  
  .text-yukon {
    color: #28994e;
  }
  
  .section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
  }
  
  .divider-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #28994e, #1e7a3d);
    margin: 15px auto 25px;
    border-radius: 3px;
  }
  
  .contact-info-card,
  .contact-form-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
  }
  
  .info-title {
    font-size: 1.3rem;
    color: #28994e;
    font-weight: 600;
    display: flex;
    align-items: center;
  }
  
  .contact-address {
    color: #495057;
    line-height: 1.7;
  }
  
  .contact-list {
    list-style: none;
    padding: 0;
  }
  
  .contact-list li {
    margin-bottom: 8px;
    color: black
  }
  
  .contact-list a {
    color: #28994e;
    text-decoration: none;
  }
  
  .contact-list a:hover {
    text-decoration: underline;
  }
  
  .form-title {
    font-size: 1.5rem;
    color: #343a40;
    font-weight: 600;
  }
  
  .form-control,
  .form-select {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #ced4da;
  }
  
  .form-control:focus,
  .form-select:focus {
    border-color: #28994e;
    box-shadow: 0 0 0 0.25rem rgba(40,153,78,0.25);
  }
  
  .form-check-input:checked {
    background-color: #28994e;
    border-color: #28994e;
  }
  
  .btn-yukon {
    background: linear-gradient(to right, #28994e, #1e7a3d);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .btn-yukon:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40,153,78,0.3);
  }
  
  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
    
    .contact-form-card {
      padding: 25px !important;
    }
  }
  .business-hours{
    color: black
  }
  .legal-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
  }
  
  .legal-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #28994e;
  }
  
  .legal-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 1.5rem;
  }
  
  .last-updated {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  
  .legal-content h2 {
    color: #28994e;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
  }
  
  .legal-content h3 {
    color: #1e7a3d;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 1.5rem 0 0.8rem;
  }
  
  .notice-box {
    background: rgba(40,153,78,0.1);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #28994e;
  }
  
  .notice-box.warning {
    background: rgba(255,193,7,0.1);
    border-left: 4px solid #ffc107;
  }
  
  .policy-highlight {
    background: rgba(40,153,78,0.1);
    padding: 1.2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #28994e;
  }
  
  .cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
  }
  
  .cookie-table th, 
  .cookie-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
  }
  
  .cookie-table th {
    background-color: #f5f5f5;
  }
  
  .cookie-consent-box {
    margin: 2rem 0;
    text-align: center;
  }
  
  .btn-yukon {
    background: linear-gradient(to right, #28994e, #1e7a3d);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .btn-yukon:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40,153,78,0.3);
  }
  
  @media (max-width: 768px) {
    .legal-title {
      font-size: 1.8rem;
    }
    
    .legal-card {
      padding: 1.5rem !important;
    }
    
    .cookie-table {
      display: block;
      overflow-x: auto;
    }
  }