﻿body {
  font-family: 'Poppins', sans-serif;
}
h1,h2,h3{
  color: #7b1fa2;
}


.header {
    background: linear-gradient(#8039ac);
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 70px;
  }

  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
  }

  .nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease;
    z-index: 5;
  }

  .nav {
    display: flex;
    gap: 2rem;
  }

  .nav-item {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
  }

  .nav-item:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
  }

  .nav-item:hover:after {
    width: 100%;
  }
 /* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  min-width: 150px;
  flex-direction: column;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  color: white;
  text-decoration: none;
  display: block;
}

.dropdown-item:hover {
  background-color: #eee;
  color: black;
}

/* Show the dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}
  .auth-buttons {
    display: flex;
    gap: 1rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .btn-login {
    background-color: transparent;
    border: 2px solid white;
    color: white;
  }

  .btn-login:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .btn-register {
    background-color: white;
    border: 2px solid white;
    color: #a855f7;
  }

  .btn-register:hover {
    background-color: rgba(255, 255, 255, 0.9);
  }

  .toggle-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
  }

  .close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
  }

  @media (max-width: 992px) {
    .toggle-btn {
      display: block;
      z-index: 3;
    }

    .nav-container {
      flex-direction: column;
      position: fixed;
      top: 0;
      right: -100%;
      width: 270px;
      height: 100vh;
      background: linear-gradient(135deg, #6366f1, #a855f7);
      padding: 80px 20px 30px;
      transition: all 0.4s ease;
      gap: 2rem;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      z-index: 9999;
    }

    .nav-container.active {
      right: 0;
    }

    .nav {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      width: 100%;
    }

    .auth-buttons {
      flex-direction: column;
      width: 100%;
    }

    .btn {
      text-align: center;
    }

    .close-btn {
      display: block;
    }
  }
.buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.button {
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.button svg {
    margin-right: 10px;
}

.register-btn {
    background-color: #00e676;
}

.login-btn {
    background-color: #29b6f6;
}

.download-btn {
    background-color: #ff8a7e;
}

.telegram-container {
    text-align: center;
    margin-top: 20px;
}

.telegram-container h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.telegram-btn {
    background-color: #29b6f6;
    padding: 12px 25px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.telegram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.telegram-btn svg {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .buttons-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .button {
        width: 100%;
    }
}


.container {
  max-width: 1300px !important;
}

h1 {
    color: #4a148c;
    font-size: 2.0rem;
    margin-bottom: 10px;
    font-weight: 500;
}
h2 {
    color: #4a148c;
    margin: 25px 0 15px;
    font-size: 1.5rem;
    font-weight: 500;
}
.step {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}
.step1 {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
   
    display: flex;
    align-items: center;
}
.step-number1 {
    background-color: #7b1fa2;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-number {
   
    color: black;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}
.step-content {
    flex-grow: 1;
}
.step-content h3 {
    color: #4a148c;
    margin-bottom: 10px;
    font-size: 1.4rem;
}
.step-content p {
    margin-bottom: 15px;
}

.recharge-section {
    background-color: #f1e5fc;
    border-radius: 10px;
    padding: 25px;
    margin-top: 40px;
    border-left: 5px solid #7b1fa2;
}
/* about */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 20px;
}
.about-box {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(74, 20, 140, 0.1);
  transition: transform 0.3s ease;
}
.about-box:hover {
  transform: translateY(-5px);
}
h1 {
  color: #6a1b9a;
  font-weight: 700;
  margin-bottom: 30px;
}
p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}
.highlight {
  color: #6a1b9a;
  font-weight: 600;
}
.footer-message {
  text-align: center;
  margin-top: 40px;
  font-weight: 500;
  font-size: large;
  color: #6a1b9a;
}

/* become */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
}
h1, h2, h3 {
  color: #4a148c;
  font-weight: 600;
}
.section {
  background-color: #ffffff;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  
}
.section:hover {
  transform: scale(1.01);
}
ul, ol {
  padding-left: 20px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
table, th, td {
  border: 1px solid #e0e0e0;
}
th {
  
  color: #6a1b9a;
  padding: 12px;
}
td {
  padding: 10px;
  
}
.faq {
  margin-top: 20px;
}
.faq h3 {
  margin-top: 15px;
}
a {
  color: #6a1b9a;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* contact */

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 20px;
}

.about-box {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(74, 20, 140, 0.1);
  transition: transform 0.3s ease;
}

.about-box:hover {
  transform: translateY(-5px);
}

h1 {
  color: #6a1b9a;
  font-weight: 700;
  margin-bottom: 30px;
}

p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}

/* disclaimer */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 20px;
}
.policy-box {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(74, 20, 140, 0.1);
  transition: transform 0.3s ease;
}
.policy-box:hover {
  transform: translateY(-5px);
}
h1, h2, h3 {
  color: #6a1b9a;
  font-weight: 500;
}
p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}
/* privacy */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 20px;
}
.policy-box {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(74, 20, 140, 0.1);
  transition: transform 0.3s ease;
}
.policy-box:hover {
  transform: translateY(-5px);
}
h1, h2, h3 {
  color: #6a1b9a;
  font-weight: 500;
}
p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}
ul {
  margin-left: 20px;
  color: #333;
}
/* term */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 20px;
}
.policy-box {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(74, 20, 140, 0.1);
  transition: transform 0.3s ease;
}
.policy-box:hover {
  transform: translateY(-5px);
}
h1, h2, h3 {
  color: #6a1b9a;
  font-weight: 500;
}
p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}
/* footer */
footer{
background-color: #f5f7f9;
padding: 40px 20px 20px;
color: #4b0082;
}

.footer-container {
max-width: 1100px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 40px;
}

.footer-logo {
flex: 1 1 200px;
}

.footer-logo img {
max-width: 100px;
height: auto;
}

.footer-links {
flex: 2 1 400px;
display: flex;
justify-content: space-between;
gap: 20px;
}

.footer-column {
display: flex;
flex-direction: column;
gap: 10px;
}

.footer-column a {
text-decoration: none;
color: #4b0082;
font-weight: bold;
font-size: 14px;
transition: 0.3s;
}

.footer-column a:hover {
color: #000;
}

.footer-bottom {
border-top: 1px solid #ccc;
margin-top: 30px;
padding-top: 15px;
text-align: center;
font-size: 13px;
color: #4b0082;
}

.footer-address {
margin-top: 8px;
font-size: 13px;
color: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
.footer-container {
  flex-direction: row;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.footer-links {
  flex-direction: row;
  align-items: center;
}

.footer-links .footer-column {
  align-items: center;
}
}
