@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quantico:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #0f202c;
  color: #e6eef4;
  min-height: 100vh;
}

html,
body {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Quantico", sans-serif;
  font-weight: 700;
  color: #79dce8;
}

h1 {
  background: linear-gradient(135deg, #79dce8, #0000f4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

p {
  color: #9fb3c8;
  line-height: 1.6;
}

a {
  color: #79dce8;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #4dd0e1;
}

.thelobby-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 32, 44, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #2a2a4a;
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo img {
  height: 40px;
  width: auto;
}
.nav-logo .nav-brand {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #79dce8, #0000f4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  font-family: "Quantico", sans-serif;
}
.nav-menu a {
  color: #9fb3c8;
  font-weight: 600;
  transition: all 0.3s ease;
}
.nav-menu a:hover {
  color: #79dce8;
}

.nav-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #e6eef4;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.section-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: radial-gradient(ellipse at center, #1a1a3e 0%, #050810 100%);
}

.hero-content {
  max-width: 800px;
}

.hero-logo {
  width: 80%;
  max-width: 750px;
  height: auto;
  margin: 0 auto 2rem;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(77, 208, 225, 0.3));
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #9fb3c8;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #4dd0e1, #0000f4);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(77, 208, 225, 0.4);
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(77, 208, 225, 0.6);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.section-description {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  background: linear-gradient(135deg, rgba(77, 208, 225, 0.1), rgba(0, 0, 244, 0.05));
  border: 1px solid #2a2a4a;
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}
.feature-item:hover {
  border-color: #4dd0e1;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(77, 208, 225, 0.2);
}
.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #e6eef4;
}
.feature-item p {
  font-size: 0.95rem;
  color: #9fb3c8;
}

.section-advantages {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.advantage-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.advantage-block:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}
.advantage-block:nth-child(even) .advantage-content {
  order: 2;
}
.advantage-block:nth-child(even) .advantage-image {
  order: 1;
}
@media (max-width: 768px) {
  .advantage-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .advantage-block:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .advantage-block:nth-child(even) .advantage-content {
    order: unset;
  }
  .advantage-block:nth-child(even) .advantage-image {
    order: unset;
  }
}

.advantage-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.advantage-image img {
  width: 100%;
  height: auto;
  display: block;
}

.advantage-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.advantage-content ul {
  list-style: none;
  margin: 0;
}
.advantage-content ul li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #9fb3c8;
}
.advantage-content ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00c853;
  font-weight: bold;
}

.section-ecosystem {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.ecosystem-item {
  background: linear-gradient(135deg, rgba(77, 208, 225, 0.1), rgba(0, 0, 244, 0.05));
  border: 1px solid #2a2a4a;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
.ecosystem-item:hover {
  border-color: #4dd0e1;
  transform: translateY(-5px);
}
.ecosystem-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #e6eef4;
}
.ecosystem-item p {
  font-size: 0.95rem;
  color: #9fb3c8;
}

.section-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: radial-gradient(ellipse at center, rgba(26, 26, 62, 0.5) 0%, rgba(5, 8, 16, 0.3) 100%);
}

.login-box {
  background: linear-gradient(135deg, rgba(77, 208, 225, 0.1), rgba(0, 0, 244, 0.05));
  backdrop-filter: blur(10px);
  border: 1px solid #2a2a4a;
  border-radius: 20px;
  padding: 3rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.login-box h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
  color: #e6eef4;
}
.login-box .login-subtitle {
  text-align: center;
  color: #9fb3c8;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.login-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(15, 32, 44, 0.5);
  border: 1px solid #2a2a4a;
  border-radius: 8px;
  color: #e6eef4;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}
.login-form input:focus {
  outline: none;
  border-color: #4dd0e1;
  background: rgba(15, 32, 44, 0.7);
  box-shadow: 0 0 15px rgba(77, 208, 225, 0.3);
}
.login-form input::placeholder {
  color: #9fb3c8;
}
.login-form button {
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(135deg, #4dd0e1, #0000f4);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}
.login-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(77, 208, 225, 0.4);
}

.login-status {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: none;
  font-size: 0.95rem;
  animation: fadeIn 0.3s ease;
}
.login-status.error {
  display: block;
  background: rgba(255, 179, 0, 0.1);
  color: #ffb300;
  border: 1px solid #ffb300;
}
.login-status.success {
  display: block;
  background: rgba(0, 200, 83, 0.1);
  color: #00c853;
  border: 1px solid #00c853;
}
.login-status.loading {
  display: block;
  background: rgba(77, 208, 225, 0.1);
  color: #79dce8;
  border: 1px solid #4dd0e1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.auth-buttons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.auth-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(26, 26, 62, 0.5);
  border: 1px solid #2a2a4a;
  border-radius: 10px;
  color: #e6eef4;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.auth-button:hover {
  border-color: #4dd0e1;
  background: rgba(77, 208, 225, 0.1);
  transform: translateY(-3px);
}
.auth-button img,
.auth-button svg {
  width: 30px;
  height: 30px;
  margin-bottom: 0.5rem;
}

.wallet-buttons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.wallet-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(26, 26, 62, 0.5);
  border: 1px solid #2a2a4a;
  border-radius: 10px;
  color: #e6eef4;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wallet-button:hover {
  border-color: #4dd0e1;
  background: rgba(77, 208, 225, 0.1);
  transform: translateY(-3px);
}
.wallet-button img,
.wallet-button svg {
  width: 30px;
  height: 30px;
  margin-bottom: 0.5rem;
}

.login-divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
}
.login-divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #2a2a4a;
}
.login-divider span {
  background: linear-gradient(135deg, rgba(77, 208, 225, 0.1), rgba(0, 0, 244, 0.05));
  padding: 0 1rem;
  position: relative;
  color: #9fb3c8;
  font-size: 0.85rem;
}

.auth-section {
  display: none;
}
.auth-section.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.section-games {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.game-card {
  background: linear-gradient(135deg, rgba(77, 208, 225, 0.1), rgba(0, 0, 244, 0.05));
  border: 1px solid #2a2a4a;
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}
.game-card:hover {
  border-color: #4dd0e1;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(77, 208, 225, 0.2);
}
.game-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #e6eef4;
}
.game-card p {
  color: #9fb3c8;
  margin-bottom: 1.5rem;
}
.game-card .btn-play {
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(135deg, #4dd0e1, #0000f4);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.game-card .btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(77, 208, 225, 0.4);
}

.section-dashboard {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: linear-gradient(135deg, rgba(77, 208, 225, 0.15), rgba(0, 0, 244, 0.1));
  border: 1px solid #2a2a4a;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
.stat-card:hover {
  border-color: #4dd0e1;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(77, 208, 225, 0.2);
}
.stat-card .stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #79dce8;
  margin-bottom: 0.5rem;
}
.stat-card .stat-label {
  font-size: 0.95rem;
  color: #9fb3c8;
}

.recent-matches {
  background: rgba(26, 26, 62, 0.5);
  border: 1px solid #2a2a4a;
  border-radius: 15px;
  padding: 2rem;
}
.recent-matches h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.recent-matches .match-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #2a2a4a;
  color: #9fb3c8;
}
.recent-matches .match-item:last-child {
  border-bottom: none;
}
.recent-matches .match-item .match-result {
  font-weight: 700;
  color: #e6eef4;
}

.section-explore {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.explore-item {
  background: linear-gradient(135deg, rgba(77, 208, 225, 0.1), rgba(0, 0, 244, 0.05));
  border: 1px solid #2a2a4a;
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}
.explore-item:hover {
  border-color: #4dd0e1;
  transform: translateY(-5px);
}
.explore-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.explore-item p {
  color: #9fb3c8;
  font-size: 0.95rem;
}

.section-profile {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.profile-box {
  background: linear-gradient(135deg, rgba(77, 208, 225, 0.1), rgba(0, 0, 244, 0.05));
  border: 1px solid #2a2a4a;
  border-radius: 15px;
  padding: 3rem;
  max-width: 600px;
}
.profile-box h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.profile-box .profile-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #2a2a4a;
}
.profile-box .profile-item:last-child {
  border-bottom: none;
}
.profile-box .profile-item .label {
  color: #9fb3c8;
}
.profile-box .profile-item .value {
  color: #e6eef4;
  font-weight: 600;
}

.spinner {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-right: 0.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 1.5rem;
  }

  .nav-menu {
    gap: 1.5rem;
  }

  .section-description,
.section-advantages,
.section-ecosystem,
.section-games,
.section-dashboard,
.section-explore,
.section-profile {
    padding: 3rem 1.5rem;
  }

  .hero-title {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    flex-direction: column;
    background: rgba(15, 32, 44, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    gap: 1rem;
  }
  .nav-menu.active {
    left: 0;
  }

  .nav-menu-toggle {
    display: block;
  }

  .login-box {
    padding: 2rem;
  }

  .advantage-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .auth-buttons-grid,
.wallet-buttons-grid {
    grid-template-columns: 1fr;
  }

  .section-description,
.section-advantages,
.section-ecosystem,
.section-games,
.section-dashboard,
.section-explore,
.section-profile {
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .nav-container {
    padding: 0 1rem;
  }

  .nav-logo img {
    height: 32px;
  }

  .nav-brand {
    font-size: 1.2rem;
  }

  .nav-menu {
    top: 50px;
  }

  .section-login {
    padding: 1rem;
  }

  .login-box {
    padding: 1.5rem;
  }
  .login-box h2 {
    font-size: 1.8rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-logo {
    width: 150px;
    height: 150px;
  }

  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .section-description,
.section-advantages,
.section-ecosystem,
.section-games,
.section-dashboard,
.section-explore,
.section-profile {
    padding: 1.5rem 1rem;
  }

  .games-grid,
.explore-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .login-form input,
.login-form button {
    font-size: 1rem;
  }
}
.hidden {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

section {
  padding-top: 40px;
  padding-bottom: 50px;
}

.faq-item h4 {
  cursor: pointer;
  color: #4dd0e1;
  transition: all 0.3s ease-in-out;
  font-size: 20px;
  padding: 2px;
}
.faq-item h4:hover {
  padding-left: 15px;
  font-size: 24px;
  padding: 0;
}

.card {
  backdrop-filter: blur(10px);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(77, 208, 225, 0.1), rgba(0, 0, 244, 0.05));
  border: 1px solid #2a2a4a;
  padding: 2rem;
  transition: all 0.3s ease;
}
.card:hover {
  border-color: #4dd0e1;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(77, 208, 225, 0.2);
}

.ecosystem-card {
  padding: 2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(123, 104, 238, 0.08), rgba(102, 126, 234, 0.04));
  border: 1px solid #2a2a4a;
  backdrop-filter: blur(5px);
  transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ecosystem-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease;
}
.ecosystem-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0;
  margin: 0;
  color: #e6eef4;
  letter-spacing: 0.3px;
}
.ecosystem-card p {
  font-size: 0.7rem;
  color: #9fb3c8;
  line-height: 1.6;
  margin: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease, margin 0.3s ease;
}
.ecosystem-card:hover, .ecosystem-card.active {
  padding: 0.5rem;
  border-color: #4dd0e1;
  background: linear-gradient(135deg, rgba(123, 104, 238, 0.15), rgba(102, 126, 234, 0.08));
  box-shadow: 0 8px 16px 12px rgba(77, 208, 225, 0.15);
  transform: translateY(-4px);
}
.ecosystem-card:hover h4, .ecosystem-card.active h4 {
  display: none;
}
.ecosystem-card:hover p, .ecosystem-card.active p {
  opacity: 1;
  max-height: 300px;
  margin-top: 35px;
  transform: translateY(-30px);
}
.ecosystem-card:hover .card-icon, .ecosystem-card.active .card-icon {
  transform: translateY(-30px) scale(1.3);
}
.ecosystem-card:active {
  transform: translateY(-2px);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(123, 104, 238, 0.1), rgba(102, 126, 234, 0.05));
  border: 1px solid #2a2a4a;
  color: #e8e8ff;
  font-size: 0.95rem;
}

.pull-right {
  float: right;
  display: inline-block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 25px;
  margin-bottom: 25px;
}

.game-item .card {
  cursor: pointer;
}
.game-item .card * {
  transition: all 1s ease-in-out;
}
.game-item .card img {
  transform: rotate(-10deg);
}
.game-item .card:hover img {
  transform: scale(1.15) translateY(-10px) rotate(10deg);
}

.thelobby-footer {
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.5), rgba(5, 8, 16, 0.95));
  border-top: 1px solid #2a2a4a;
  margin-top: 6rem;
  padding: 3rem 0 1rem;
  font-size: 0.9rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: #e6eef4;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-description {
  color: #9fb3c8;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: #9fb3c8;
  transition: color 0.3s ease;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-link:hover {
  color: #79dce8;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-link-list li {
  margin: 0;
}
.footer-link-list li a {
  font-size: 0.85rem;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .footer-cta {
    align-items: center;
  }
}

.footer-cta-button {
  background: linear-gradient(135deg, #4dd0e1, #79dce8);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.footer-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(77, 208, 225, 0.3);
}
.footer-cta-button:active {
  transform: translateY(0);
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}
.footer-logo-img:hover {
  filter: brightness(1);
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-social-link {
  font-size: 1.2rem;
  color: #9fb3c8;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer-social-link:hover {
  color: #79dce8;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #2a2a4a;
  color: #9fb3c8;
  font-size: 0.8rem;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom p a {
  color: #79dce8;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-bottom p a:hover {
  color: #4dd0e1;
}

.section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f202c 0%, #16213e 100%);
  overflow: hidden;
  padding: 2rem;
}
.section-hero.auth-guest {
  display: flex;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(121, 220, 232, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(0, 0, 244, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-logo-wrapper {
  margin-bottom: 2rem;
  animation: float 3s ease-in-out infinite;
}

.hero-logo {
  height: auto;
  width: 90%;
  filter: drop-shadow(0 0 20px rgba(121, 220, 232, 0.3));
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: slideDown 0.8s ease-out 0.2s backwards;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #9fb3c8;
  margin-bottom: 1rem;
  animation: slideDown 0.8s ease-out 0.4s backwards;
}

.hero-description {
  font-size: 1.1rem;
  color: #9fb3c8;
  margin-bottom: 2rem;
  animation: slideDown 0.8s ease-out 0.6s backwards;
}

.hero-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  animation: slideDown 0.8s ease-out 0.8s backwards;
}

.hero-badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideDown 0.8s ease-out 1s backwards;
}

.badge {
  background: rgba(121, 220, 232, 0.15);
  border: 1px solid rgba(121, 220, 232, 0.3);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: #79dce8;
  transition: all 0.3s ease;
  cursor: default;
}
.badge:hover {
  background: rgba(121, 220, 232, 0.25);
  transform: translateY(-2px);
}

.section-stats {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, rgba(15, 32, 44, 0.3) 0%, rgba(15, 32, 44, 0.7) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background: rgba(121, 220, 232, 0.08);
  border: 1px solid rgba(121, 220, 232, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeIn 0.6s ease-out;
}
.stat-card:hover {
  background: rgba(121, 220, 232, 0.15);
  border-color: rgba(121, 220, 232, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(121, 220, 232, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #79dce8, #0000f4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e6eef4;
  margin-bottom: 0.5rem;
}

.stat-description {
  font-size: 0.9rem;
  color: #9fb3c8;
  margin: 0;
}

.section-why {
  padding: 4rem 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: rgba(0, 0, 244, 0.08);
  border: 1px solid rgba(0, 0, 244, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
.benefit-card:hover {
  background: rgba(0, 0, 244, 0.15);
  border-color: rgba(0, 0, 244, 0.5);
  transform: translateY(-5px);
}
.benefit-card h3 {
  margin-bottom: 1rem;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
}

.section-how-to-play {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, rgba(15, 32, 44, 0.5) 0%, rgba(15, 32, 44, 0.1) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.step-card {
  background: rgba(121, 220, 232, 0.08);
  border: 1px solid rgba(121, 220, 232, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.step-card:hover {
  background: rgba(121, 220, 232, 0.15);
  border-color: rgba(121, 220, 232, 0.5);
  transform: translateY(-5px);
}
.step-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #79dce8, #0000f4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section-pricing {
  padding: 4rem 2rem;
}

.pricing-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #9fb3c8;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: rgba(121, 220, 232, 0.08);
  border: 1px solid rgba(121, 220, 232, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  background: rgba(121, 220, 232, 0.12);
  border-color: rgba(121, 220, 232, 0.4);
  transform: translateY(-5px);
}
.pricing-card.pricing-featured {
  background: rgba(121, 220, 232, 0.12);
  border-color: rgba(121, 220, 232, 0.5);
  transform: scale(1.05);
}
.pricing-card.pricing-featured:hover {
  background: rgba(121, 220, 232, 0.18);
  border-color: rgba(121, 220, 232, 0.7);
}
.pricing-card h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: linear-gradient(135deg, #79dce8, #0000f4);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}
.pricing-badge.featured {
  background: linear-gradient(135deg, #ff6b6b, #f06c4e);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #e6eef4;
}
.pricing-price .currency {
  font-size: 1.5rem;
}
.pricing-price .period {
  font-size: 0.9rem;
  color: #9fb3c8;
}

.pricing-description {
  font-size: 0.9rem;
  color: #9fb3c8;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  flex-grow: 1;
  margin-bottom: 2rem;
}
.pricing-features li {
  padding: 0.7rem 0;
  color: #9fb3c8;
  text-align: left;
}

.pricing-btn {
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.pricing-btn.btn-outline {
  background: transparent;
  border: 2px solid #79dce8;
  color: #79dce8;
}
.pricing-btn.btn-outline:hover {
  background: #79dce8;
  color: #0f202c;
}

.section-testimonials {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, rgba(15, 32, 44, 0.2) 0%, rgba(15, 32, 44, 0.8) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(0, 0, 244, 0.08);
  border: 1px solid rgba(0, 0, 244, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  background: rgba(0, 0, 244, 0.15);
  border-color: rgba(0, 0, 244, 0.5);
  transform: translateY(-5px);
}

.testimonial-stars {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: #9fb3c8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  font-size: 2.5rem;
  min-width: 50px;
  text-align: center;
}

.author-info h4 {
  margin: 0;
  color: #e6eef4;
}
.author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #9fb3c8;
}

.section-trust {
  padding: 4rem 2rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.trust-card {
  background: rgba(121, 220, 232, 0.08);
  border: 1px solid rgba(121, 220, 232, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
.trust-card:hover {
  background: rgba(121, 220, 232, 0.15);
  border-color: rgba(121, 220, 232, 0.5);
  transform: translateY(-5px);
}
.trust-card h3 {
  margin-bottom: 1rem;
}

.trust-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta-primary,
.cta-secondary {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-primary {
  background: linear-gradient(135deg, #79dce8, #0000f4);
  color: white;
  box-shadow: 0 5px 15px rgba(121, 220, 232, 0.3);
}
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(121, 220, 232, 0.4);
}

.cta-secondary {
  background: transparent;
  border: 2px solid #79dce8;
  color: #79dce8;
}
.cta-secondary:hover {
  background: #79dce8;
  color: #0f202c;
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 1.5rem;
  }

  .nav-menu {
    gap: 1rem;
  }

  .pricing-card.pricing-featured {
    transform: scale(1.02);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .section-hero {
    min-height: auto;
    padding: 3rem 1rem;
  }

  .hero-logo {
    height: 80px;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta-buttons {
    flex-direction: column;
  }

  .cta-primary,
.cta-secondary {
    width: 100%;
  }

  .hero-badges {
    flex-direction: column;
    gap: 1rem;
  }

  .badge {
    display: inline-block;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(15, 32, 44, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid #2a2a4a;
  }
  .nav-menu.active {
    left: 0;
  }

  .nav-menu-toggle {
    display: flex !important;
  }

  .nav-menu li {
    padding: 1rem 0;
    border-bottom: 1px solid #2a2a4a;
  }
  .nav-menu li:last-child {
    border-bottom: none;
  }

  .section-stats,
.section-why,
.section-how-to-play,
.section-pricing,
.section-testimonials,
.section-trust {
    padding: 3rem 1rem;
  }

  .stats-grid,
.benefits-grid,
.steps-grid,
.pricing-grid,
.testimonials-grid,
.trust-grid {
    gap: 1.5rem;
  }

  .stat-card,
.benefit-card,
.step-card,
.pricing-card,
.testimonial-card,
.trust-card {
    padding: 1.5rem;
  }

  .stat-number,
.step-number {
    font-size: 2rem;
  }

  .pricing-card.pricing-featured {
    transform: scale(1);
  }

  .section-title {
    font-size: 1.8rem;
  }

  .advantage-block {
    flex-direction: column !important;
  }

  .advantage-image {
    margin: 1rem 0 !important;
  }
  .advantage-image img {
    max-width: 100%;
    height: auto;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .hero-logo-wrapper {
    margin-bottom: 1.5rem;
  }

  .pricing-subtitle {
    font-size: 1rem;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .footer-links,
.footer-link-list {
    flex-direction: column;
  }

  .footer-socials {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .stat-number,
.step-number {
    font-size: 1.8rem;
  }

  .stat-card,
.benefit-card,
.step-card,
.pricing-card,
.testimonial-card,
.trust-card {
    padding: 1.25rem;
  }

  .badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-badges {
    gap: 0.75rem;
  }

  .cta-primary,
.cta-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .author-avatar {
    font-size: 2rem;
  }

  .pricing-price {
    font-size: 2rem;
  }

  .nav-logo .nav-brand {
    font-size: 1.2rem;
  }

  .nav-logo img {
    height: 30px;
  }
}
@media (max-width: 1024px) and (orientation: landscape) {
  .section-hero {
    min-height: auto;
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .section-stats,
.section-why,
.section-how-to-play,
.section-pricing,
.section-testimonials,
.section-trust {
    padding: 2rem 1rem;
  }
}
.card .emoji-icon {
  font-size: 32px;
  filter: grayscale(100);
}
.card:hover .emoji-icon {
  filter: grayscale(0);
  transform: scale(1.3);
}

body * button,
body .btn,
body a {
  z-index: 99;
}

canvas#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}