@charset "UTF-8";
@font-face {
  font-family: "Chakra Petch";
  src: url("/assets/styles/ChakraPetch-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("/assets/styles/Rubik-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Rubik", sans-serif;
  color: #f8fafc;
  background-color: #020617;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
  border: none;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

/* Оновлені стилі для хедера у файлі main.scss */
.tog-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.98);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.tog-header .age-banner {
  background: linear-gradient(to bottom, #020617 0%, #0c1322 100%);
  color: #fff;
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  border-radius: 0 0 15px 15px;
  font-weight: 600;
  width: 100%;
  position: relative;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.tog-header .age-banner p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.tog-header .age-banner p::before {
  content: "⚠️";
  font-size: 1.1rem;
}
.tog-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  position: relative;
  height: 80px;
}
.tog-header .tog-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1002;
}
.tog-header .tog-logo-main {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  letter-spacing: 0.5px;
}
.tog-header .tog-logo-badge {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 0.5rem;
  animation: pulse 2s infinite;
}
@media (max-width: 768px) {
  .tog-header .tog-logo-badge {
    display: none;
  }
}
.tog-header .tog-nav {
  display: flex;
  gap: 1.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.tog-header .tog-nav .mobile-auth {
  display: none;
}
.tog-header .tog-nav .nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  font-weight: 500;
  color: #f8fafc;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.tog-header .tog-nav .nav-link .nav-icon {
  font-size: 1.2rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.tog-header .tog-nav .nav-link .nav-text {
  font-size: 0.9rem;
}
.tog-header .tog-nav .nav-link:hover {
  background: rgba(37, 99, 235, 0.1);
}
.tog-header .tog-nav .nav-link:hover .nav-icon {
  opacity: 1;
  animation: bounce 0.5s;
}
.tog-header .tog-auth {
  display: flex;
  gap: 1rem;
  align-items: center;
  z-index: 1002;
}
.tog-header .tog-auth.mobile-auth {
  display: none;
}
.tog-header .tog-auth .tog-login {
  color: #f8fafc;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(37, 99, 235, 0.3);
}
.tog-header .tog-auth .tog-login:hover {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-color: #2563eb;
}
.tog-header .tog-auth .tog-register {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
}
.tog-header .tog-auth .tog-register::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}
.tog-header .tog-auth .tog-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}
.tog-header .tog-auth .tog-register:hover::before {
  left: 100%;
}
.tog-header .tog-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1003;
  position: relative;
  width: 40px;
  height: 40px;
  gap: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.tog-header .tog-menu-toggle span {
  width: 24px;
  height: 3px;
  background: #fff;
  display: block;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.tog-header .tog-menu-toggle:hover {
  background: rgba(37, 99, 235, 0.1);
}
.tog-header .tog-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: #2563eb;
}
.tog-header .tog-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.tog-header .tog-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: #2563eb;
}
@media (max-width: 1024px) {
  .tog-header .tog-nav {
    display: none;
    position: fixed;
    top: 120px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(15, 23, 42, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  .tog-header .tog-nav.active {
    transform: translateX(0);
    display: flex;
  }
  .tog-header .tog-nav .nav-link {
    width: 80%;
    max-width: 300px;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 10px;
  }
  .tog-header .tog-nav .nav-link .nav-icon {
    display: none;
  }
  .tog-header .tog-nav .nav-link .nav-text {
    font-size: 1.1rem;
  }
  .tog-header .tog-nav .mobile-auth {
    display: flex;
    flex-direction: column;
    width: 80%;
    max-width: 300px;
    margin-top: 1rem;
    gap: 1rem;
  }
  .tog-header .tog-nav .mobile-auth .tog-login,
  .tog-header .tog-nav .mobile-auth .tog-register {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }
  .tog-header .desktop-auth {
    display: none;
  }
  .tog-header .tog-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.tog-hero {
  min-height: 100vh;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.tog-hero #particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.tog-hero .container {
  position: relative;
  z-index: 1;
}
.tog-hero .hero-content {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .tog-hero .hero-content {
    max-width: 300px;
  }
}
.tog-hero .hero-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.2);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(37, 99, 235, 0.3);
}
.tog-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
}
.tog-hero h1 .hero-title-highlight {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tog-hero .hero-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 2.5rem;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.tog-hero .hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .tog-hero .hero-stats {
    flex-direction: column;
  }
}
.tog-hero .hero-stats .stat-item .stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.tog-hero .hero-stats .stat-item .stat-label {
  color: #64748b;
  font-size: 0.9rem;
}
.tog-hero .hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.tog-hero .hero-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #2563eb;
  color: white;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}
.tog-hero .hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  background: #3c74ed;
}
.tog-hero .hero-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}
.tog-hero .hero-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.1) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tog-hero .hero-btn:hover::after {
  opacity: 1;
}
.tog-hero .hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #64748b;
  animation: float 2s infinite;
}
.tog-hero .hero-scroll-indicator svg {
  width: 24px;
  height: 24px;
}

.tog-showcase {
  padding: 6rem 5%;
  background: linear-gradient(to bottom, #020617 0%, #0c1322 100%);
}
.tog-showcase .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.tog-showcase .section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #f1f5f9;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.tog-showcase .section-header h2 span {
  font-weight: 700;
  font-style: italic;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 4px;
  color: inherit;
}
.tog-showcase .section-header h2::before {
  content: "//";
  position: absolute;
  left: -1.8rem;
  top: 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: monospace;
}
.tog-showcase .section-header p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}
.tog-showcase .showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.tog-showcase .tab-btn {
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  background: transparent;
  border: 1px solid #64748b;
  color: #64748b;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .tog-showcase .tab-btn {
    padding: 0.3rem 0.7rem;
  }
}
.tog-showcase .tab-btn.active {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border-color: transparent;
}
.tog-showcase .tab-btn:hover:not(.active) {
  border-color: #2563eb;
  color: #2563eb;
}
.tog-showcase .showcase-content {
  display: none;
}
.tog-showcase .showcase-content.active {
  display: block;
}
.tog-showcase .showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .tog-showcase .showcase-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.tog-showcase .showcase-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.tog-showcase .showcase-card.featured {
  transform: scale(1.05);
  z-index: 1;
}
.tog-showcase .showcase-card .game-preview {
  height: 350px;
  position: relative;
  overflow: hidden;
}
.tog-showcase .showcase-card .game-preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.tog-showcase .showcase-card .game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tog-showcase .showcase-card .game-overlay .game-info {
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.tog-showcase .showcase-card .game-overlay .game-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.tog-showcase .showcase-card .game-overlay .game-info .game-rating {
  color: #f59e0b;
  margin-bottom: 1rem;
}
.tog-showcase .showcase-card .game-overlay .game-info .play-btn {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  transition: all 0.3s ease;
}
.tog-showcase .showcase-card .game-overlay .game-info .play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}
.tog-showcase .showcase-card:hover {
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
}
.tog-showcase .showcase-card:hover .game-preview img {
  transform: scale(1.1);
}
.tog-showcase .showcase-card:hover .game-overlay {
  opacity: 1;
}
.tog-showcase .showcase-card:hover .game-overlay .game-info {
  transform: translateY(0);
}
.tog-showcase .featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #f59e0b;
  color: #0f172a;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  z-index: 2;
}
.tog-showcase .showcase-cta {
  text-align: center;
  margin-top: 4rem;
}
.tog-showcase .showcase-cta .cta-btn {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
}
.tog-showcase .showcase-cta .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.tog-community-features {
  padding: 6rem 5%;
  background: linear-gradient(to bottom, #0c1322 0%, #020617 100%);
}
.tog-community-features .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.tog-community-features .section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #f1f5f9;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.tog-community-features .section-header h2 span {
  font-weight: 700;
  font-style: italic;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 4px;
  color: inherit;
}
.tog-community-features .section-header h2::before {
  content: "//";
  position: absolute;
  left: -1.8rem;
  top: 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: monospace;
}
.tog-community-features .section-header p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}
.tog-community-features .features-container {
  display: flex;
  align-items: center;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .tog-community-features .features-container {
    flex-direction: column;
    gap: 2rem;
  }
}
.tog-community-features .feature-visual {
  flex: 1;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tog-community-features .visual-circle {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  border: 2px solid rgba(37, 99, 235, 0.3);
  position: relative;
  animation: pulse 4s infinite alternate;
}
@media (max-width: 768px) {
  .tog-community-features .visual-circle {
    width: 200px;
    height: 200px;
  }
}
.tog-community-features .visual-circle .circle-item {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.8);
  border: 2px solid rgba(37, 99, 235, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.tog-community-features .visual-circle .circle-item .item-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.tog-community-features .visual-circle .circle-item .item-text {
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
}
.tog-community-features .visual-circle .circle-item.top {
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.tog-community-features .visual-circle .circle-item.right {
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
}
.tog-community-features .visual-circle .circle-item.bottom {
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.tog-community-features .visual-circle .circle-item.left {
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
}
.tog-community-features .visual-circle .circle-item:hover {
  background: rgba(37, 99, 235, 0.2);
  transform: scale(1.1) translateY(-5px);
}
.tog-community-features .visual-circle .circle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .tog-community-features .visual-circle .circle-center {
    width: 100px;
    height: 100px;
    font-size: 1rem;
  }
}
.tog-community-features .feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.tog-community-features .feature-card {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.tog-community-features .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
  border-color: #2563eb;
}
.tog-community-features .feature-card .card-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  line-height: 1;
}
.tog-community-features .feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #f8fafc;
}
.tog-community-features .feature-card p {
  color: #64748b;
  margin-bottom: 0;
}

.tog-process {
  padding: 6rem 5%;
  background: linear-gradient(to bottom, #020617 0%, #0c1322 100%);
}
.tog-process .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.tog-process .section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #f1f5f9;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.tog-process .section-header h2 span {
  font-weight: 700;
  font-style: italic;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 4px;
  color: inherit;
}
.tog-process .section-header h2::before {
  content: "//";
  position: absolute;
  left: -1.8rem;
  top: 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: monospace;
}
.tog-process .section-header p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}
.tog-process .process-container {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .tog-process .process-container {
    flex-direction: column;
    gap: 3rem;
  }
}
.tog-process .process-visual {
  flex: 1;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
}
.tog-process .process-visual .process-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.5s ease;
  display: block;
}
.tog-process .process-visual .process-image:hover {
  transform: scale(1.03);
}
.tog-process .process-steps {
  flex: 1;
  position: relative;
  padding-left: 60px;
}
@media (max-width: 768px) {
  .tog-process .process-steps {
    padding-left: 0;
  }
}
.tog-process .step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}
.tog-process .step:last-child {
  margin-bottom: 0;
}
.tog-process .step .step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #0f172a;
  border: 4px solid #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #2563eb;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.tog-process .step .step-icon:hover {
  background: rgba(37, 99, 235, 0.1);
  transform: scale(1.05);
}
.tog-process .step .step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #f8fafc;
  position: relative;
}
.tog-process .step .step-content h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}
.tog-process .step .step-content p {
  color: #64748b;
  line-height: 1.7;
}

.tog-vip {
  padding: 6rem 5%;
  background: linear-gradient(to bottom, #0c1322 0%, #020617 100%);
}
.tog-vip .container {
  display: flex;
  align-items: center;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.tog-vip .vip-content {
  flex: 1;
}
.tog-vip .vip-content .vip-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.tog-vip .vip-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
}
.tog-vip .vip-content h2 span {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tog-vip .vip-content p {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 2.5rem;
  max-width: 90%;
}
.tog-vip .vip-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.tog-vip .benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tog-vip .benefit-item .benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.tog-vip .benefit-item .benefit-text {
  font-weight: 500;
}
.tog-vip .vip-btn {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
}
.tog-vip .vip-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}
.tog-vip .vip-visual {
  flex: 1;
  position: relative;
  min-height: 400px;
}
.tog-vip .vip-levels {
  position: relative;
  width: 100%;
  height: 100%;
}
.tog-vip .level {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.tog-vip .level .level-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.tog-vip .level .level-name {
  font-weight: 600;
  font-size: 0.9rem;
}
.tog-vip .level.bronze {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(205, 127, 50, 0.1);
  border: 2px solid rgba(205, 127, 50, 0.5);
  color: #cd7f32;
}
.tog-vip .level.silver {
  top: 30%;
  left: 10%;
  background: rgba(192, 192, 192, 0.1);
  border: 2px solid rgba(192, 192, 192, 0.5);
  color: #c0c0c0;
}
.tog-vip .level.gold {
  top: 30%;
  right: 10%;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.5);
  color: #ffd700;
}
.tog-vip .level.platinum {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(229, 228, 226, 0.1);
  border: 2px solid rgba(229, 228, 226, 0.5);
  color: #e5e4e2;
}
.tog-vip .level:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tog-testimonials {
  padding: 6rem 5%;
  background: linear-gradient(to bottom, #020617 0%, #0c1322 100%);
}
.tog-testimonials .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.tog-testimonials .section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #f1f5f9;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.tog-testimonials .section-header h2 span {
  font-weight: 700;
  font-style: italic;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 4px;
  color: inherit;
}
.tog-testimonials .section-header h2::before {
  content: "//";
  position: absolute;
  left: -1.8rem;
  top: 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: monospace;
}
.tog-testimonials .section-header p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}
.tog-testimonials .testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .tog-testimonials .testimonials-slider {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.tog-testimonials .testimonial-card {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
}
.tog-testimonials .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
  border-color: #2563eb;
}
.tog-testimonials .testimonial-card .player-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.tog-testimonials .testimonial-card .player-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #2563eb;
}
.tog-testimonials .testimonial-card .player-info .player-details h4 {
  font-size: 1.2rem;
  color: #f8fafc;
  margin-bottom: 0.3rem;
}
.tog-testimonials .testimonial-card .player-info .player-details .player-level {
  color: #f59e0b;
  font-size: 0.8rem;
  font-weight: 500;
}
.tog-testimonials .testimonial-card .testimonial-text {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.tog-testimonials .testimonial-card .player-stats {
  display: flex;
  gap: 1.5rem;
}
.tog-testimonials .testimonial-card .player-stats .stat {
  text-align: center;
}
.tog-testimonials .testimonial-card .player-stats .stat .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.tog-testimonials .testimonial-card .player-stats .stat .stat-label {
  color: #64748b;
  font-size: 0.8rem;
}

.tog-mobile {
  padding: 6rem 5%;
  background: linear-gradient(to bottom, #0c1322 0%, #020617 100%);
}
.tog-mobile .container {
  display: flex;
  align-items: center;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.tog-mobile .mobile-visual {
  flex: 1;
  position: relative;
  text-align: center;
}
.tog-mobile .mobile-visual img {
  max-width: 300px;
  margin: 0 auto;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
}
.tog-mobile .mobile-content {
  flex: 1;
}
.tog-mobile .mobile-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
}
.tog-mobile .mobile-content h2 span {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tog-mobile .mobile-content p {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 2.5rem;
  max-width: 90%;
}
.tog-mobile .app-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.tog-mobile .feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tog-mobile .feature .feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.tog-mobile .feature .feature-text {
  font-weight: 500;
}
.tog-mobile .download-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.tog-mobile .download-btn {
  display: flex;
  flex-direction: column;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.tog-mobile .download-btn span:first-child {
  font-size: 0.8rem;
  opacity: 0.8;
}
.tog-mobile .download-btn span:last-child {
  font-size: 1.1rem;
}
.tog-mobile .download-btn.app-store {
  background: #000;
  color: #fff;
}
.tog-mobile .download-btn.google-play {
  background: #fff;
  color: #000;
}
.tog-mobile .download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tog-faq {
  padding: 6rem 5%;
  background: linear-gradient(to bottom, #020617 0%, #0c1322 100%);
}
.tog-faq .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.tog-faq .section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #f1f5f9;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.tog-faq .section-header h2 span {
  font-weight: 700;
  font-style: italic;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 4px;
  color: inherit;
}
.tog-faq .section-header h2::before {
  content: "//";
  position: absolute;
  left: -1.8rem;
  top: 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: monospace;
}
.tog-faq .section-header p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}
.tog-faq .faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.tog-faq .faq-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(37, 99, 235, 0.1);
}
.tog-faq .faq-question {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  background: transparent;
  border: none;
  color: #f8fafc;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tog-faq .faq-question:hover {
  color: #2563eb;
}
.tog-faq .faq-question .faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.tog-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
  background: rgba(15, 23, 42, 0.5);
}
.tog-faq .faq-answer p {
  color: #64748b;
  line-height: 1.7;
  padding: 1.5rem 0;
  margin: 0;
}
.tog-faq .faq-item.active .faq-question {
  color: #2563eb;
}
.tog-faq .faq-item.active .faq-question .faq-toggle {
  transform: rotate(45deg);
}
.tog-faq .faq-item.active .faq-answer {
  max-height: 500px;
}
.tog-faq .faq-cta {
  text-align: center;
  margin-top: 4rem;
}
.tog-faq .faq-cta p {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}
.tog-faq .faq-cta .faq-btn {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
}
.tog-faq .faq-cta .faq-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.tog-disclaimer {
  padding: 4rem 5%;
  background: #0f172a;
  border-top: 1px solid rgba(37, 99, 235, 0.2);
}
.tog-disclaimer .container {
  max-width: 1200px;
  margin: 0 auto;
}
.tog-disclaimer .disclaimer-content {
  text-align: center;
  position: relative;
}
.tog-disclaimer .disclaimer-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
  color: #f8fafc;
}
.tog-disclaimer .disclaimer-content h2 span {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tog-disclaimer .disclaimer-box {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
}
.tog-disclaimer .disclaimer-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}
.tog-disclaimer .disclaimer-box .disclaimer-text {
  color: #64748b;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  padding: 0 1rem;
}
.tog-disclaimer .disclaimer-box .disclaimer-text strong {
  color: #f8fafc;
  font-weight: 600;
}
.tog-disclaimer .disclaimer-box .disclaimer-text a {
  color: #2563eb;
  text-decoration: underline;
}
.tog-disclaimer .disclaimer-box .disclaimer-text a:hover {
  color: #1d4ed8;
}
.tog-disclaimer .disclaimer-box .age-badge {
  display: inline-block;
  background: #f59e0b;
  color: #0f172a;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tog-disclaimer .disclaimer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.tog-disclaimer .disclaimer-logos img {
  height: 50px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  filter: grayscale(100%) brightness(1.5);
}
.tog-disclaimer .disclaimer-logos img:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

.casino-footer {
  padding: 4rem 5%;
  background: #0f172a;
  border-top: 1px solid rgba(37, 99, 235, 0.2);
}
.casino-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.casino-footer .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.casino-footer .footer-links a {
  color: #64748b;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}
.casino-footer .footer-links a:hover {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
}
.casino-footer .disclaimer-box {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
  text-align: center;
}
.casino-footer .disclaimer-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}
.casino-footer .disclaimer-box .disclaimer-text {
  color: #64748b;
  line-height: 1.7;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.casino-footer .disclaimer-box .age-badge {
  display: inline-block;
  background: #f59e0b;
  color: #0f172a;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.casino-footer .footer-logo-copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.casino-footer .footer-logo-copyright .footer-logo {
  height: 50px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  filter: grayscale(100%) brightness(1.5);
}
.casino-footer .footer-logo-copyright .footer-logo:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}
.casino-footer .footer-logo-copyright .copyright {
  color: #64748b;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .casino-footer {
    padding: 3rem 5%;
  }
  .casino-footer .footer-links {
    gap: 1rem;
  }
  .casino-footer .disclaimer-box {
    padding: 1.5rem;
  }
}
.tog-slots {
  padding: 6rem 5%;
  background: linear-gradient(to bottom, #020617 0%, #0c1322 100%);
}
.tog-slots .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.tog-slots .section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #f1f5f9;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.tog-slots .section-header h2 span {
  font-weight: 700;
  font-style: italic;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 4px;
  color: inherit;
}
.tog-slots .section-header h2::before {
  content: "//";
  position: absolute;
  left: -1.8rem;
  top: 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: monospace;
}
.tog-slots .section-header p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}
.tog-slots .slots-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.tog-slots .tab-btn {
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  background: transparent;
  border: 1px solid #64748b;
  color: #64748b;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tog-slots .tab-btn.active {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border-color: transparent;
}
.tog-slots .tab-btn:hover:not(.active) {
  border-color: #2563eb;
  color: #2563eb;
}
.tog-slots .slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.tog-slots .slot-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.tog-slots .slot-card .slot-preview {
  height: 250px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.tog-slots .slot-card .slot-preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.tog-slots .slot-card .slot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tog-slots .slot-card .slot-overlay .slot-info {
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.tog-slots .slot-card .slot-overlay .slot-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.tog-slots .slot-card .slot-overlay .slot-info .slot-rating {
  color: #f59e0b;
  margin-bottom: 1rem;
}
.tog-slots .slot-card .slot-overlay .slot-info .play-btn {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  transition: all 0.3s ease;
}
.tog-slots .slot-card .slot-overlay .slot-info .play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}
.tog-slots .slot-card:hover {
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
}
.tog-slots .slot-card:hover .slot-preview img {
  transform: scale(1.1);
}
.tog-slots .slot-card:hover .slot-overlay {
  opacity: 1;
}
.tog-slots .slot-card:hover .slot-overlay .slot-info {
  transform: translateY(0);
}
.tog-slots .slots-cta {
  text-align: center;
  margin-top: 4rem;
}
.tog-slots .slots-cta .cta-btn {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
}
.tog-slots .slots-cta .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

@media (max-width: 1024px) {
  .tog-slots .slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .tog-slots .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .tog-slots .slots-grid {
    grid-template-columns: 1fr;
  }
  .tog-slots .slots-tabs {
    flex-wrap: wrap;
  }
}
.age-verification-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 23, 0.98);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  animation: fadeIn 0.4s ease-out;
}
.age-verification-popup .age-verification-content {
  background: rgba(15, 23, 42, 0.95);
  padding: 3rem;
  border-radius: 20px;
  max-width: 520px;
  text-align: center;
  border: 1px solid rgba(37, 99, 235, 0.5);
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
  position: relative;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.age-verification-popup .age-verification-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}
.age-verification-popup .age-verification-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #f8fafc;
  font-family: "Chakra Petch", sans-serif;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.age-verification-popup .age-verification-content p {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.age-verification-popup .age-verification-content .age-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: pulse 2s infinite;
}
.age-verification-popup .age-verification-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.age-verification-popup .age-verification-buttons button {
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: none;
  position: relative;
  overflow: hidden;
}
.age-verification-popup .age-verification-buttons .age-confirm-btn {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}
.age-verification-popup .age-verification-buttons .age-confirm-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}
.age-verification-popup .age-verification-buttons .age-confirm-btn:hover::after {
  left: 100%;
}
.age-verification-popup .age-verification-buttons .age-confirm-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}
.age-verification-popup .age-verification-buttons .age-deny-btn {
  background: rgba(15, 23, 42, 0.7);
  color: #64748b;
  border: 1px solid rgba(100, 116, 139, 0.5);
}
.age-verification-popup .age-verification-buttons .age-deny-btn:hover {
  color: #f8fafc;
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
  transform: translateY(-3px);
}
.age-verification-popup.active .age-verification-content {
  transform: scale(1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .age-verification-popup {
    padding: 0 5%;
  }
  .age-verification-popup .age-verification-content {
    padding: 2rem;
    width: 100%;
    max-width: 400px;
  }
  .age-verification-popup .age-verification-content h3 {
    font-size: 1.6rem;
  }
  .age-verification-popup .age-verification-content p {
    font-size: 1rem;
  }
  .age-verification-popup .age-verification-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .age-verification-popup .age-verification-buttons button {
    width: 100%;
    justify-content: center;
    padding: 0.9rem;
  }
}
@media (max-width: 480px) {
  .age-verification-popup .age-verification-content {
    padding: 1.5rem;
    border-radius: 15px;
  }
  .age-verification-popup .age-verification-content h3 {
    font-size: 1.4rem;
  }
  .age-verification-popup .age-verification-content .age-icon {
    font-size: 2.5rem;
  }
}
.tog-game-iframe {
  padding: 6rem 5%;
  background: linear-gradient(to bottom, #020617 0%, #0c1322 100%);
  position: relative;
  overflow: hidden;
}
.tog-game-iframe .container {
  position: relative;
  z-index: 1;
}
.tog-game-iframe .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.tog-game-iframe .section-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: "Chakra Petch", sans-serif;
  color: #f8fafc;
  margin-bottom: 1rem;
}
.tog-game-iframe .section-header h1 span {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tog-game-iframe .iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.3);
  background: rgba(15, 23, 42, 0.8);
}
.tog-game-iframe .iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #0f172a;
}
@media (max-width: 768px) {
  .tog-game-iframe {
    padding: 4rem 5%;
  }
  .tog-game-iframe .iframe-wrapper {
    border-radius: 10px;
  }
}

.contact-section {
  padding: 6rem 5%;
  background: linear-gradient(to bottom, #020617 0%, #0c1322 100%);
  position: relative;
  overflow: hidden;
}
.contact-section .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-section .section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 3rem;
  font-family: "Chakra Petch", sans-serif;
  color: #f8fafc;
}
.contact-section .section-title span {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-section .contact-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.8);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
}
.contact-section .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-section .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-section .form-group label {
  font-size: 1rem;
  color: #f8fafc;
  font-weight: 500;
}
.contact-section .form-group input,
.contact-section .form-group textarea {
  padding: 0.8rem 1rem;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 8px;
  color: #f8fafc;
  font-family: "Rubik", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}
.contact-section .form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.contact-section .submit-btn {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  margin-top: 1rem;
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
}
.contact-section .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}
.contact-section .form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10b981;
  border-radius: 8px;
  margin-bottom: 2rem;
  animation: fadeIn 0.5s ease;
}
.contact-section .form-success svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.contact-section .form-success p {
  color: #f8fafc;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 5%;
  }
  .contact-section .contact-container {
    padding: 1.5rem;
  }
}

.tog-login-section {
  padding: 6rem 5%;
  background: linear-gradient(to bottom, #0c1322 0%, #020617 100%);
  position: relative;
  overflow: hidden;
}
.tog-login-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.tog-login-section .section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: #f8fafc;
}
.tog-login-section .section-header h2 span {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tog-login-section .section-header p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}
.tog-login-section .login-form-container {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.9);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
  position: relative;
  overflow: hidden;
}
.tog-login-section .login-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}
.tog-login-section .tog-login-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.tog-login-section .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.tog-login-section .form-group label {
  font-size: 1rem;
  color: #f8fafc;
  font-weight: 500;
  font-family: "Chakra Petch", sans-serif;
}
.tog-login-section .form-group input {
  padding: 1rem 1.5rem;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 10px;
  color: #f8fafc;
  font-family: "Rubik", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}
.tog-login-section .form-group input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}
.tog-login-section .form-group input::-moz-placeholder {
  color: rgba(100, 116, 139, 0.7);
}
.tog-login-section .form-group input::placeholder {
  color: rgba(100, 116, 139, 0.7);
}
.tog-login-section .forgot-password {
  color: #64748b;
  font-size: 0.9rem;
  text-align: right;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}
.tog-login-section .forgot-password:hover {
  color: #2563eb;
}
.tog-login-section .form-actions {
  margin-top: 1.5rem;
}
.tog-login-section .submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.1rem 2rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.tog-login-section .submit-btn .btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.tog-login-section .submit-btn .btn-text {
  position: relative;
  z-index: 1;
}
.tog-login-section .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}
.tog-login-section .submit-btn:hover .btn-icon {
  transform: scale(1.2);
}
.tog-login-section .submit-btn:hover::after {
  left: 100%;
}
.tog-login-section .submit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}
.tog-login-section .social-login {
  margin: 2rem 0;
}
.tog-login-section .social-login .divider {
  position: relative;
  text-align: center;
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.tog-login-section .social-login .divider::before, .tog-login-section .social-login .divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: rgba(100, 116, 139, 0.3);
}
.tog-login-section .social-login .divider::before {
  left: 0;
}
.tog-login-section .social-login .divider::after {
  right: 0;
}
.tog-login-section .social-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 480px) {
  .tog-login-section .social-buttons {
    flex-direction: column;
  }
}
.tog-login-section .social-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(100, 116, 139, 0.3);
  background: rgba(15, 23, 42, 0.7);
  color: #f8fafc;
}
.tog-login-section .social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.tog-login-section .social-btn.google:hover {
  background: rgba(219, 68, 55, 0.1);
  border-color: rgba(219, 68, 55, 0.5);
}
.tog-login-section .social-btn.facebook:hover {
  background: rgba(66, 103, 178, 0.1);
  border-color: rgba(66, 103, 178, 0.5);
}
.tog-login-section .social-btn .social-icon {
  font-weight: 700;
  font-size: 1.1rem;
}
.tog-login-section .form-footer {
  text-align: center;
  margin-top: 2rem;
  color: #64748b;
  font-size: 0.95rem;
}
.tog-login-section .form-footer a {
  color: #2563eb;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}
.tog-login-section .form-footer a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transition: width 0.3s ease;
}
.tog-login-section .form-footer a:hover {
  color: #5484ef;
}
.tog-login-section .form-footer a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .tog-login-section {
    padding: 4rem 5%;
  }
  .tog-login-section .login-form-container {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .tog-login-section {
    padding: 3rem 5%;
  }
  .tog-login-section .login-form-container {
    padding: 1.5rem;
  }
  .tog-login-section .section-header h2 {
    font-size: 1.8rem;
  }
  .tog-login-section .section-header p {
    font-size: 1rem;
  }
}
.tog-register-section {
  padding: 6rem 5%;
  background: linear-gradient(to bottom, #0c1322 0%, #020617 100%);
  position: relative;
  overflow: hidden;
}
.tog-register-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.tog-register-section .section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: #f8fafc;
}
.tog-register-section .section-header h2 span {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tog-register-section .section-header p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}
.tog-register-section .register-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.9);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
  position: relative;
}
.tog-register-section .register-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}
.tog-register-section .tog-register-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.tog-register-section .form-row {
  margin-bottom: 1rem;
}
.tog-register-section .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.tog-register-section .form-group label {
  font-size: 1rem;
  color: #f8fafc;
  font-weight: 500;
  font-family: "Chakra Petch", sans-serif;
}
.tog-register-section .form-group input {
  padding: 1rem 1.5rem;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 10px;
  color: #f8fafc;
  font-family: "Rubik", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}
.tog-register-section .form-group input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}
.tog-register-section .form-group input::-moz-placeholder {
  color: rgba(100, 116, 139, 0.7);
}
.tog-register-section .form-group input::placeholder {
  color: rgba(100, 116, 139, 0.7);
}
.tog-register-section .password-strength {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.tog-register-section .password-strength .strength-meter {
  display: flex;
  gap: 0.3rem;
  flex-grow: 1;
}
.tog-register-section .password-strength .strength-meter .strength-bar {
  height: 4px;
  width: 100%;
  background: rgba(100, 116, 139, 0.3);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.tog-register-section .password-strength .strength-text {
  font-size: 0.8rem;
  color: #64748b;
  min-width: 120px;
  text-align: right;
}
.tog-register-section .checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.2rem 0;
}
.tog-register-section .checkbox-group input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(37, 99, 235, 0.5);
  border-radius: 5px;
  background: rgba(15, 23, 42, 0.7);
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}
.tog-register-section .checkbox-group input[type=checkbox]:checked {
  background: #2563eb;
  border-color: #2563eb;
}
.tog-register-section .checkbox-group input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.9rem;
}
.tog-register-section .checkbox-group label {
  font-size: 0.9rem;
  color: #f8fafc;
  line-height: 1.4;
}
.tog-register-section .checkbox-group label a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.tog-register-section .checkbox-group label a:hover {
  color: #5484ef;
}
.tog-register-section .form-actions {
  margin-top: 2rem;
}
.tog-register-section .submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.tog-register-section .submit-btn .btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.tog-register-section .submit-btn .btn-text {
  position: relative;
  z-index: 1;
}
.tog-register-section .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}
.tog-register-section .submit-btn:hover .btn-icon {
  transform: scale(1.2);
}
.tog-register-section .submit-btn:hover::after {
  left: 100%;
}
.tog-register-section .submit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}
.tog-register-section .form-footer {
  text-align: center;
  margin-top: 2rem;
}
.tog-register-section .form-footer .disclaimer {
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.tog-register-section .form-footer .login-link {
  color: #64748b;
  font-size: 0.95rem;
}
.tog-register-section .form-footer .login-link a {
  color: #2563eb;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}
.tog-register-section .form-footer .login-link a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transition: width 0.3s ease;
}
.tog-register-section .form-footer .login-link a:hover {
  color: #5484ef;
}
.tog-register-section .form-footer .login-link a:hover::after {
  width: 100%;
}

input[type=password]:focus ~ .password-strength .strength-bar:nth-child(1) {
  background: #ef4444;
}
input[type=password]:focus ~ .password-strength .strength-bar:nth-child(2) {
  background: #f59e0b;
}
input[type=password]:focus ~ .password-strength .strength-bar:nth-child(3) {
  background: #10b981;
}

@media (max-width: 768px) {
  .tog-register-section {
    padding: 4rem 5%;
  }
  .tog-register-section .register-form-container {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .tog-register-section {
    padding: 3rem 5%;
  }
  .tog-register-section .register-form-container {
    padding: 1.5rem;
  }
  .tog-register-section .section-header h2 {
    font-size: 1.8rem;
  }
  .tog-register-section .section-header p {
    font-size: 1rem;
  }
  .tog-register-section .checkbox-group {
    align-items: flex-start;
  }
  .tog-register-section .checkbox-group label {
    font-size: 0.85rem;
  }
}
.legal-document-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  padding: 4rem 5%;
}

.legal-document {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 15px;
  padding: 3rem;
  border: 1px solid rgba(37, 99, 235, 0.3);
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
  color: #f8fafc;
  font-family: "Rubik", sans-serif;
  line-height: 1.7;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.legal-document::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}
.legal-document h1 {
  font-family: "Chakra Petch", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-bottom: 1rem;
}
.legal-document h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}
.legal-document h2 {
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.6rem;
  margin: 2.5rem 0 1.2rem;
  color: #f8fafc;
  position: relative;
  padding-left: 1.5rem;
}
.legal-document h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #2563eb;
  border-radius: 50%;
}
.legal-document h3 {
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
  color: #f8fafc;
}
.legal-document p {
  margin-bottom: 1.2rem;
  color: #64748b;
}
.legal-document strong {
  color: #f8fafc;
  font-weight: 600;
}
.legal-document a {
  color: #2563eb;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.legal-document a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #2563eb;
  transition: width 0.3s ease;
}
.legal-document a:hover {
  color: #5484ef;
}
.legal-document a:hover::after {
  width: 100%;
}
.legal-document ul,
.legal-document ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.legal-document ul li,
.legal-document ol li {
  margin-bottom: 0.8rem;
  color: #64748b;
}
.legal-document .last-updated {
  text-align: right;
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 3rem;
  font-style: italic;
}

@media (max-width: 1024px) {
  .legal-document {
    padding: 2.5rem;
  }
}
@media (max-width: 768px) {
  .legal-document-container {
    padding: 2rem 5%;
  }
  .legal-document {
    padding: 2rem;
    border-radius: 10px;
  }
  .legal-document h1 {
    font-size: 1.8rem;
    padding-bottom: 0.8rem;
  }
  .legal-document h1::after {
    width: 80px;
  }
  .legal-document h2 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
  }
  .legal-document h3 {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .legal-document {
    padding: 1.5rem;
  }
  .legal-document h1 {
    font-size: 1.6rem;
  }
  .legal-document h2 {
    font-size: 1.3rem;
    padding-left: 1rem;
  }
  .legal-document h2::before {
    width: 6px;
    height: 6px;
  }
  .legal-document ul,
  .legal-document ol {
    padding-left: 1.5rem;
  }
}
.tog-about {
  padding: 6rem 5%;
  background: linear-gradient(to bottom, #0c1322 0%, #020617 100%);
  position: relative;
  overflow: hidden;
}
.tog-about .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.tog-about .section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #f1f5f9;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.tog-about .section-header h2 span {
  font-weight: 700;
  font-style: italic;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 4px;
  color: inherit;
}
.tog-about .section-header h2::before {
  content: "//";
  position: absolute;
  left: -1.8rem;
  top: 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: monospace;
}
.tog-about .section-header p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}
.tog-about .about-content {
  display: flex;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 1024px) {
  .tog-about .about-content {
    flex-direction: column;
    gap: 3rem;
  }
}
.tog-about .about-visual {
  flex: 1;
  position: relative;
}
.tog-about .about-visual .visual-main {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
  position: relative;
}
.tog-about .about-visual .visual-main img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.tog-about .about-visual .visual-main:hover img {
  transform: scale(1.05);
}
.tog-about .about-visual .visual-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  background: rgba(15, 23, 42, 0.8);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
}
.tog-about .about-visual .visual-stats .stat-item {
  text-align: center;
  padding: 0 1rem;
}
.tog-about .about-visual .visual-stats .stat-item .stat-value {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.tog-about .about-visual .visual-stats .stat-item .stat-label {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}
.tog-about .about-text {
  flex: 1;
}
.tog-about .about-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #f8fafc;
  position: relative;
  padding-bottom: 0.5rem;
}
.tog-about .about-text h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}
.tog-about .about-text p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.tog-about .about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.tog-about .about-features .feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.tog-about .about-features .feature-item .feature-icon {
  font-size: 1.8rem;
  background: rgba(37, 99, 235, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(37, 99, 235, 0.3);
}
.tog-about .about-features .feature-item .feature-content h4 {
  font-size: 1.2rem;
  color: #f8fafc;
  margin-bottom: 0.5rem;
}
.tog-about .about-features .feature-item .feature-content p {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
}
.tog-about .about-cta {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}
.tog-about .about-cta .btn {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
}
.tog-about .about-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}
.tog-about .about-cta .btn.secondary {
  background: transparent;
  border: 1px solid #2563eb;
  color: #2563eb;
  box-shadow: none;
}
.tog-about .about-cta .btn.secondary:hover {
  background: rgba(37, 99, 235, 0.1);
}
@media (max-width: 768px) {
  .tog-about .about-cta {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .tog-about {
    padding: 4rem 5%;
  }
  .tog-about .about-features .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}/*# sourceMappingURL=main.css.map */