
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(ellipse at bottom, #0f0c29, #302b63, #24243e);

  height: 100vh;
  font-family: "Inter", sans-serif !important;
}

/* Звёзды */
.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent url('https://raw.githubusercontent.com/raphamorim/space-css-background/master/images/stars.png') repeat;
  z-index: 0;
  animation: moveStars 100s linear infinite;
}

/* Кометы */
.comet {
  position: absolute;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,0.8), transparent);
  border-radius: 50%;
  animation: cometFly 5s linear infinite;
  z-index: 1;
  opacity: 0.5;
}
.comet:nth-child(1) {
  top: 10%;
  left: -10%;
  animation-delay: 1s;
}
.comet:nth-child(2) {
  top: 40%;
  left: -15%;
  animation-delay: 3s;
}
.comet:nth-child(3) {
  top: 70%;
  left: -20%;
  animation-delay: 5s;
}

/* Планеты (круги) */
.planet {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #ff007a, #330033);
  z-index: 1;
  opacity: 0.7;
}
.planet.one {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 10%;
}
.planet.two {
  width: 100px;
  height: 100px;
  bottom: 15%;
  left: 5%;
}

@keyframes moveStars {
  0% { background-position: 0 0; }
  100% { background-position: 1000px 1000px; }
}

@keyframes cometFly {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateX(150vw) translateY(80vh);
    opacity: 0;
  }
}

.planet.three {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 55%;
    background: radial-gradient(circle, #ffe600, #aa6600);
    box-shadow: 0 0 20px #ffef99;
  }
  
  .planet.four {
    width: 120px;
    height: 120px;
    bottom: 25%;
    right: 15%;
    background: radial-gradient(circle, #00ccff, #002244);
    box-shadow: 0 0 30px #66ffff;
  }
  .navbar {
    background-color: #18aee00d;
}
.navbar-brand, .nav-link {
    color: #ecf0f1 !important;
}
.navbar-brand:hover, .nav-link:hover {
    color: #bdc3c7 !important;
}
.btn-demo {
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 20px;
    font-weight: bold;
    transition: all 0.3s;
}
.btn-demo:hover {
    background-color: #c0392b;
    transform: scale(1.05);
}
.navbar-toggler {
    border-color: #ecf0f1;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.hero .row{
    align-items: anchor-center;
}
.hero h1{
    color: white;
    font-size: 47pt;
    z-index: 99;
    position: relative;
    font-family: "Rubik Mono One", monospace;
    font-weight: 400;
}
.intro-heading {
    color: #ff9933; /* Saffron color for Indian theme */
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.intro-text {
    color: #fafafa;
    max-width: 800px;
    margin: 0 auto;
    font-size: 16pt;
    /* text-align: center; */
    line-height: 1.6;
    z-index: 999;
    position: relative;
    padding: 0 0px;
}
.planet.five{
    bottom: 10%;
    right: 45%;
    background: radial-gradient(circle, #ffe600, #aa6600);
    box-shadow: 0 0 20px #ffef99;
    width: 120px;
    height: 120px;
}
.hero img{
    position: absolute;
    width: 40%;
    bottom: 0px;
}
#text{
    height: 100vh;
    align-items: center;
    display: flex
;
    flex-direction: column;
    justify-content: center;
}
.btn-demo{
    background: #6c00b2 !important;
    color: white !important;
}
.about-section {


    position: relative;
    overflow: hidden;
    padding-bottom: 80PX;
}

.about-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(108, 92, 231, 0.1);
    border-radius: 50%;
}

.about-section::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background-color: rgba(0, 206, 201, 0.1);
    border-radius: 50%;
}

.site-name {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.about-content {
    position: relative;
    z-index: 1;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-box {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.about-content h2{
    color: white;
    font-size: 47pt;
    z-index: 99;
    position: relative;
    font-family: "Rubik Mono One", monospace;
    font-weight: 400;
}
.lead{
    color: white
}
#faq{
    color: white;
    font-size: 47pt;
    z-index: 99;
    position: relative;
    font-family: "Rubik Mono One", monospace;
    font-weight: 400;
}
.faq-section{
    padding-top: 150px !important
}
/* Main Container Styles */
.disclaimer-section {
    padding: 4rem 0;
  }
  
  .disclaimer-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 206, 201, 0.2);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
  }
  
  .disclaimer-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 206, 201, 0.08) 0%, transparent 70%);
    z-index: -1;
  }
  
  /* Header Styles */
  .disclaimer-header {
    margin-bottom: 2rem;
    position: relative;
  }
  
  .disclaimer-title {
    color: #00cec9;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .disclaimer-title::before, .disclaimer-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 206, 201, 0.5), transparent);
  }
  
  .disclaimer-icon {
    font-size: 1.75rem;
    color: #00cec9;
  }
  
  /* Content Styles */
  .disclaimer-content {
    color: #f5f7fa;
    line-height: 1.7;
    font-size: 0.95rem;
  }
  
  .disclaimer-content p {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
  }
  
  .disclaimer-content p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    background-color: #00cec9;
    border-radius: 50%;
  }
  
  .disclaimer-content strong {
    color: #00cec9;
    font-weight: 600;
  }
  
  /* Footer Styles */
  .disclaimer-footer {
    margin-top: 2rem;
    color: #b2bec3;
    font-size: 0.85rem;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .disclaimer-footer a {
    color: #00cec9;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .disclaimer-footer a:hover {
    color: #f5f7fa;
    text-decoration: underline;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .disclaimer-card {
      padding: 1.75rem;
    }
    
    .disclaimer-title {
      font-size: 1.25rem;
    }
    
    .disclaimer-content p {
      padding-left: 1.25rem;
    }
  }
  /* Feedback Section Styles */
.feedback-section {
    padding: 5rem 0;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  }
  
  .feedback-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #6c5ce7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
  
  .feedback-title {
    color: #2d3436;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .feedback-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #6c5ce7, #00cec9);
  }
  
  .feedback-icon {
    color: #00cec9;
    margin-right: 10px;
  }
  
  /* Form Styles */
  .feedback-form .form-control {
    height: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
  }
  
  .feedback-form .form-control:focus {
    border-color: #6c5ce7;
    box-shadow: 0 0 0 0.25rem rgba(108, 92, 231, 0.1);
  }
  
  .feedback-form textarea.form-control {
    height: auto;
    min-height: 120px;
    resize: vertical;
  }
  
  .feedback-form label {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.5rem;
  }
  
  /* Button Styles */
  .btn-feedback {
    background: linear-gradient(to right, #6c5ce7, #00cec9);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s;
  }
  
  .btn-feedback:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .feedback-card {
      padding: 2rem;
    }
    
    .feedback-title {
      font-size: 1.5rem;
    }
  }
  
  /* Success Message */
  .feedback-success {
    display: none;
    text-align: center;
    padding: 2rem;
  }
  
  .feedback-success-icon {
    font-size: 3rem;
    color: #00cec9;
    margin-bottom: 1rem;
  }
  
  .feedback-success h4 {
    color: #2d3436;
    font-weight: 700;
  }
  /* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #2d3436 0%, #1a1e1f 100%);
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  }
  
  .footer-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  
  .footer-heading {
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.5px;
  }
  
  .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #00cec9;
  }
  
  .footer-links a {
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
  }
  
  .footer-links a:hover {
    color: #00cec9 !important;
    transform: translateX(5px);
  }
  
  .footer-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #00cec9;
    transition: width 0.3s ease;
  }
  
  .footer-links a:hover::before {
    width: 100%;
  }
  
  .social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background-color: #00cec9;
    color: #2d3436 !important;
    transform: translateY(-3px);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .footer-heading {
      margin-top: 1.5rem;
    }
    
    .social-links {
      margin-top: 1rem;
    }
  }
  /* Games Section Styles */
.games-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  }
  
  .games-section h2 {
    position: relative;
    padding-bottom: 1rem;
  }
  
  .games-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #6c5ce7, #00cec9);
  }
  
  /* Game Card Styles */
  .game-card {
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .game-card-header {
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .game-card-header img {
    object-fit: cover;
    transition: transform 0.5s ease;
    width: 100%;
    height: 200px;
  }
  
  .game-card:hover .game-card-header img {
    transform: scale(1.05);
  }
  
  .game-card-body {
    padding: 1.5rem;
  }
  
  .game-title {
    font-weight: 700;
    color: #2d3436;
    font-size: 1.25rem;
  }
  
  .game-description {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .btn-play {
    background: linear-gradient(to right, #6c5ce7, #00cec9);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .btn-play:hover {
    background: linear-gradient(to right, #5a4bd1, #00b5b0);
    color: white;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
  }
  
  .btn-play i {
    transition: transform 0.3s ease;
  }
  
  .btn-play:hover i {
    transform: translateX(3px);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .game-card-header {
      height: 160px;
    }
  }
  
  @media (max-width: 768px) {
    .games-section {
      padding: 3rem 0;
    }
    
    .game-card {
      margin-bottom: 1.5rem;
    }
  }

 

.contact-hero {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(0, 206, 201, 0.1) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(108, 92, 231, 0.05);
    border-radius: 50%;
}

.contact-hero::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background-color: rgba(0, 206, 201, 0.05);
    border-radius: 50%;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-method h3 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-method p {
    color: #636e72;
    line-height: 1.6;
}

.contact-method a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-method a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-form {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-control {
    height: 50px;
    border-radius: 8px;
    margin-bottom: 20px;
}

textarea.form-control {
    height: auto !important;
    min-height: 150px;
}

.btn-submit {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.2);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
}

iframe{
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 500px;
}
/* Privacy Policy Styles */
.privacy-policy {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
  }
  
  .policy-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  }
  
  .policy-content h1 {
    color: #2d3436;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .policy-content h2 {
    color: #6c5ce7;
    font-weight: 600;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .policy-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #6c5ce7, #00cec9);
  }
  
  .policy-content p, 
  .policy-content li {
    color: #4a5568;
  }
  
  .policy-content ul {
    padding-left: 1.5rem;
  }
  
  .policy-content li {
    margin-bottom: 0.5rem;
  }
  
  .policy-section {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
  }
  
  .policy-section:last-child {
    border-bottom: none;
  }
  
  @media (max-width: 768px) {
    .policy-card {
      padding: 2rem;
    }
    
    .policy-content h1 {
      font-size: 2rem;
    }
    
    .policy-content h2 {
      font-size: 1.3rem;
    }
  }
  /* Terms and Conditions Styles */
.terms-conditions {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
  }
  
  .terms-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #00cec9;
  }
  
  .terms-content h1 {
    color: #2d3436;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .terms-content h2 {
    color: #6c5ce7;
    font-weight: 600;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .terms-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #6c5ce7, #00cec9);
  }
  
  .terms-content p, 
  .terms-content li {
    color: #4a5568;
  }
  
  .terms-content ul {
    padding-left: 1.5rem;
  }
  
  .terms-content li {
    margin-bottom: 0.5rem;
  }
  
  .terms-section {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
  }
  
  .terms-section:last-child {
    border-bottom: none;
  }
  
  @media (max-width: 768px) {
    .terms-card {
      padding: 2rem;
    }
    
    .terms-content h1 {
      font-size: 2rem;
    }
    
    .terms-content h2 {
      font-size: 1.3rem;
    }
  }

  /* Cookie Policy Styles */
.cookie-policy {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
  }
  
  .cookie-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #6c5ce7;
  }
  
  .cookie-content h1 {
    color: #2d3436;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .cookie-content h2 {
    color: #00cec9;
    font-weight: 600;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .cookie-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #00cec9, #6c5ce7);
  }
  
  .cookie-content p, 
  .cookie-content li,
  .cookie-content td {
    color: #4a5568;
  }
  
  .cookie-content ul {
    padding-left: 1.5rem;
  }
  
  .cookie-content li {
    margin-bottom: 0.5rem;
  }
  
  .cookie-section {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
  }
  
  .cookie-section:last-child {
    border-bottom: none;
  }
  
  .table {
    margin: 1.5rem 0;
  }
  
  .table thead th {
    background-color: #f1f3f5;
    color: #2d3436;
    font-weight: 600;
  }
  
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #e2e8f0;
  }
  
  @media (max-width: 768px) {
    .cookie-card {
      padding: 2rem;
    }
    
    .cookie-content h1 {
      font-size: 2rem;
    }
    
    .cookie-content h2 {
      font-size: 1.3rem;
    }
    
    .table-responsive {
      display: block;
      width: 100%;
      overflow-x: auto;
    }
    #faq{
        font-size: 19pt;
    }
    .hero h1{
        font-size: 27pt;
    }
    .planet.one {
        width: 50px;
        height: 50px;}
        .planet.four {
            width: 20px;
            height: 20px;
  }
.planet.five{
    width: 30px;
    height: 30px;
}
.about-content h2{
    font-size: 27pt;
}
.hero img{
    display:none
}
}
  .btn-demo a, .btn-play a{
    color: white !important
  }