@charset "UTF-8";

@font-face {
  font-family: "Oxanium";
  src: url("/assets/styles/Oxanium-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/styles/SpaceGrotesk-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;
  }
}

@keyframes cubeRotate {
  0% {
    transform: rotateX(0) rotateY(0);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

@keyframes wave {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

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

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

.age-banner {
  background: #f59e0b;
  color: #020617;
  padding: 0.8rem 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
}

.age-banner .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.age-banner .close-banner {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #020617;
  line-height: 1;
}

.tog-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(109, 40, 217, 0.1);
  transition: all 0.3s ease;
}

.tog-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  position: relative;
}

.tog-logo-main {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f8fafc;
  position: relative;
}

.tog-logo-main::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.tog-logo-main:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.tog-logo-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #f59e0b;
  border-radius: 50%;
  margin-left: 0.5rem;
  position: relative;
}

@media (max-width: 768px) {
  .tog-logo-pulse {
    display: none;
  }
}

.tog-logo-pulse::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f59e0b;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.tog-nav {
  display: flex;
  gap: 2rem;
}

.tog-nav a {
  position: relative;
  font-weight: 500;
  color: #f8fafc;
}

.tog-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
  transition: width 0.3s ease;
}

.tog-nav a:hover::after {
  width: 100%;
}

.tog-nav .mobile-auth {
  display: none;
}

.tog-auth {
  display: flex;
  gap: 1rem;
}

.tog-auth .tog-login {
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px 100px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tog-auth .tog-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(109, 40, 217, 0.3);
}

.tog-auth .tog-register {
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 100px 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tog-auth .tog-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(109, 40, 217, 0.3);
}

.tog-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.tog-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #f8fafc;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.tog-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.tog-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.tog-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.tog-hero {
  min-height: 85vh;
  padding: 120px 5% 10px;
  position: relative;
  overflow: hidden;
}

.tog-hero .hero-grid-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(109, 40, 217, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(109, 40, 217, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

.tog-hero .container {
  display: flex;
  align-items: center;
  gap: 5%;
  position: relative;
  z-index: 1;
}

.tog-hero .hero-content {
  flex: 1;
  max-width: 50%;
}

.tog-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.tog-hero h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.tog-hero h2 .hero-title-line {
  display: block;
}

.tog-hero h2 .hero-title-highlight {
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tog-hero h1 .hero-title-line {
  display: block;
}

.tog-hero h1 .hero-title-highlight {
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 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: 90%;
}

.tog-hero .hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.tog-hero .hero-stats .stat-item .stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 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;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.tog-hero .hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.tog-hero .hero-btn.primary-btn {
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
}

.tog-hero .hero-btn.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(109, 40, 217, 0.3);
}

.tog-hero .hero-btn.secondary-btn {
  border: 2px solid #6d28d9;
  color: #6d28d9;
}

.tog-hero .hero-btn.secondary-btn:hover {
  background: #6d28d9;
  color: white;
}

.tog-hero .hero-visual {
  flex: 1;
  position: relative;
  height: 400px;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tog-hero .game-cube-animation {
  width: 200px;
  height: 200px;
  position: relative;
  transform-style: preserve-3d;
  animation: cubeRotate 15s infinite linear;
}

.tog-hero .game-cube-animation .cube-face {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(109, 40, 217, 0.1);
  border: 2px solid rgba(109, 40, 217, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  backface-visibility: visible;
}

.tog-hero .game-cube-animation .cube-face.front {
  transform: translateZ(100px);
}

.tog-hero .game-cube-animation .cube-face.back {
  transform: rotateY(180deg) translateZ(100px);
}

.tog-hero .game-cube-animation .cube-face.right {
  transform: rotateY(90deg) translateZ(100px);
}

.tog-hero .game-cube-animation .cube-face.left {
  transform: rotateY(-90deg) translateZ(100px);
}

.tog-hero .game-cube-animation .cube-face.top {
  transform: rotateX(90deg) translateZ(100px);
}

.tog-hero .game-cube-animation .cube-face.bottom {
  transform: rotateX(-90deg) translateZ(100px);
}

.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;
}

.about-section {
  background: linear-gradient(to bottom, #0f172a 0%, #020617 100%);
  padding: 80px 0;
  color: #f8fafc;
  font-family: "Space Grotesk", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-family: "Oxanium", sans-serif;
}

.section-title span {
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-content {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #cbd5e1;
}

.subtitle {
  font-size: 1.5rem;
  margin: 30px 0 15px;
  color: #f8fafc;
  font-family: "Oxanium", sans-serif;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  background: rgba(109, 40, 217, 0.1);
  border: 1px solid rgba(109, 40, 217, 0.2);
  padding: 30px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
  border-color: #6d28d9;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  font-family: "Oxanium", sans-serif;
}

.stat-label {
  color: #64748b;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

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

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.section-header h1 span {
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header h2 span {
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.7rem;
  }

  .section-header h1 {
    font-size: 1.7rem;
  }
}

.section-header p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

.tog-features {
  padding: 0 5% 5rem;
  background: linear-gradient(to bottom, #020617 0%, #0c1322 100%);
}

@media (max-width: 768px) {
  .tog-features {
    padding: 3rem 5% 5rem;
  }
}

.tog-features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tog-features .feature-card {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(109, 40, 217, 0.1);
  position: relative;
  overflow: hidden;
}

.tog-features .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
  border-color: #6d28d9;
}

.tog-features .feature-card .feature-icon {
  margin-bottom: 1.5rem;
}

.tog-features .feature-card .feature-icon .icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: rgba(109, 40, 217, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.tog-features .feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #f8fafc;
}

.tog-features .feature-card p {
  color: #64748b;
  margin-bottom: 1.5rem;
}

.tog-features .feature-card .feature-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  overflow: hidden;
}

.tog-features .feature-card .feature-wave::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 100%;
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
  animation: wave 2s linear infinite;
}

.tog-slots {
  padding: 5rem 5%;
  background: linear-gradient(to bottom, #020617 0%, #0c1322 100%);
  position: relative;
}

.tog-slots .container {
  position: relative;
}

.tog-slots .slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tog-slots .slot-card {
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.tog-slots .slot-card:hover {
  transform: translateY(-5px);
}

.tog-slots .slot-card:hover .slot-preview {
  box-shadow: 0 10px 25px rgba(109, 40, 217, 0.3);
  border-color: #6d28d9;
}

.tog-slots .slot-card:hover h3 {
  color: #a855f7;
}

.tog-slots .slot-card .slot-preview {
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(109, 40, 217, 0.2);
  transition: all 0.3s ease;
  background: linear-gradient(45deg, #0f172a, #16213d);
}

.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-preview:hover img {
  transform: scale(1.05);
}

.tog-slots .slot-card .slot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tog-slots .slot-card .slot-overlay .play-btn {
  padding: 0.8rem 1.8rem;
  background: #6d28d9;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.tog-slots .slot-card .slot-overlay .play-btn:hover {
  background: #a855f7;
  transform: translateY(-2px);
}

.tog-slots .slot-card:hover .slot-overlay {
  opacity: 1;
}

.tog-slots .slot-card h3 {
  font-size: 1.1rem;
  color: #f8fafc;
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0 0.5rem;
}

.tog-game-iframe {
  background: rgba(15, 23, 42, 0.95);
  padding: 80px 0;
}

.tog-game-iframe .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.tog-game-iframe .section-header h1 {
  font-size: 2.5rem;
  font-family: "Oxanium", sans-serif;
  color: white;
}

.tog-game-iframe .section-header h1 span {
  color: #4cc9f0;
}

.tog-game-iframe .section-header p {
  color: #cfd2da;
  font-size: 1rem;
  margin-top: 10px;
}

.tog-game-iframe .iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.tog-game-iframe .iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.tog-how-it-works {
  padding: 5rem 5%;
  background: linear-gradient(to bottom, #0f172a 0%, #020617 100%);
}

.tog-how-it-works .steps-container {
  display: flex;
  align-items: center;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tog-how-it-works .step-visual {
  flex: 1;
  position: relative;
}

.tog-how-it-works .step-visual img {
  border-radius: 15px;
  border: 2px solid rgba(109, 40, 217, 0.2);
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
}

.tog-how-it-works .step-visual .step-pulse {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  background: #f59e0b;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.tog-how-it-works .steps-grid {
  flex: 1;
  display: grid;
  gap: 1.5rem;
}

.tog-how-it-works .step-card {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(109, 40, 217, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tog-how-it-works .step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
  border-color: #6d28d9;
}

.tog-how-it-works .step-card .step-number {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  line-height: 1;
}

.tog-how-it-works .step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #f8fafc;
}

.tog-how-it-works .step-card p {
  color: #64748b;
  margin-bottom: 0;
}

.tog-how-it-works .step-card .step-arrow {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  font-size: 1.5rem;
  color: #6d28d9;
}

.tog-daily-games {
  padding: 5rem 5%;
  background: linear-gradient(to bottom, #020617 0%, #0f172a 100%);
}

.tog-daily-games .daily-games-container {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}

.tog-daily-games .daily-game-card {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.tog-daily-games .daily-game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
}

.tog-daily-games .daily-game-card.featured {
  transform: scale(1.05);
  z-index: 1;
}

.tog-daily-games .daily-game-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.tog-daily-games .daily-game-card .game-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #f59e0b;
  color: #0f172a;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  z-index: 2;
}

.tog-daily-games .daily-game-card img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tog-daily-games .daily-game-card:hover img {
  transform: scale(1.1);
}

.tog-daily-games .daily-game-card .game-info {
  background: rgba(15, 23, 42, 0.9);
  padding: 1.5rem;
  position: relative;
}

.tog-daily-games .daily-game-card .game-info h3 {
  font-size: 1.3rem;
  color: #f8fafc;
  margin-bottom: 0.5rem;
}

.tog-daily-games .daily-game-card .game-info .game-stats {
  display: flex;
  justify-content: space-between;
  color: #64748b;
  font-size: 0.9rem;
}

.tog-community {
  padding: 5rem 5%;
  background: linear-gradient(to bottom, #020617 0%, #0c1322 100%);
}

.tog-community .community-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
}

.tog-community .stat-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(109, 40, 217, 0.1);
  border: 3px solid #6d28d9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.tog-community .stat-circle:hover {
  transform: scale(1.05);
  background: rgba(109, 40, 217, 0.2);
}

.tog-community .stat-circle .stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tog-community .stat-circle .stat-label {
  color: #64748b;
  font-size: 0.9rem;
  text-align: center;
  max-width: 120px;
}

.tog-community .community-cta {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(15, 23, 42, 0.8);
  border-radius: 15px;
  border: 1px solid rgba(109, 40, 217, 0.1);
}

.tog-community .community-cta p {
  font-size: 1.2rem;
  color: #f8fafc;
  margin-bottom: 1.5rem;
}

.tog-community .community-cta .cta-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
}

.tog-community .community-cta .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(109, 40, 217, 0.3);
}

.tog-testimonials {
  padding: 5rem 5%;
  background: linear-gradient(to bottom, #0c1322 0%, #020617 100%);
}

.tog-testimonials .testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tog-testimonials .testimonial-card {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(109, 40, 217, 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: #6d28d9;
}

.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 #6d28d9;
}

.tog-testimonials .testimonial-card .player-info .player-details h4 {
  font-size: 1.1rem;
  color: #f8fafc;
  margin-bottom: 0.3rem;
}

.tog-testimonials .testimonial-card .player-info .player-details .player-rating {
  color: #f59e0b;
  letter-spacing: 2px;
}

.tog-testimonials .testimonial-card .testimonial-text {
  color: #64748b;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tog-testimonials .testimonial-card .player-game {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tog-testimonials .testimonial-card .player-game span {
  color: #64748b;
  font-size: 0.9rem;
}

.tog-testimonials .testimonial-card .player-game .game-badge {
  background: rgba(109, 40, 217, 0.1);
  color: #6d28d9;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.tog-disclaimer {
  padding: 5rem 5%;
  background: #0f172a;
}

.tog-disclaimer .disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.tog-disclaimer .disclaimer-content h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #f8fafc;
}

.tog-disclaimer .disclaimer-content .disclaimer-text {
  background: rgba(109, 40, 217, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid #f59e0b;
}

.tog-disclaimer .disclaimer-content .disclaimer-text p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.tog-disclaimer .disclaimer-content .disclaimer-text p:last-child {
  margin-bottom: 0;
}

.tog-disclaimer .disclaimer-content .disclaimer-text p strong {
  color: #f8fafc;
  font-weight: 600;
}

.casino-footer {
  background-color: #020617;
  color: #f8fafc;
  padding: 30px 20px;
  font-family: "Space Grotesk", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-logo-copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.copyright {
  color: #64748b;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 25px;
}

.footer-links a {
  color: #f8fafc;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #a855f7;
}

.disclaimer-box {
  background-color: rgba(109, 40, 217, 0.1);
  border-left: 4px solid #f59e0b;
  padding: 20px;
  border-radius: 4px;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-text {
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.age-badge {
  display: inline-block;
  background-color: #f59e0b;
  color: #020617;
  padding: 3px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .disclaimer-box {
    padding: 15px;
  }
}

@media (max-width: 1200px) {
  .tog-hero .container {
    flex-direction: column;
    gap: 3rem;
  }

  .tog-hero .hero-content,
  .tog-hero .hero-visual {
    margin-top: 30px;
    max-width: 100%;
    text-align: center;
  }

  .tog-hero .hero-stats {
    justify-content: center;
  }

  .tog-hero .hero-actions {
    justify-content: center;
  }

  .steps-container {
    flex-direction: column;
    gap: 3rem !important;
  }

  .step-visual {
    margin-bottom: 2rem;
  }

  .community-stats {
    gap: 2rem !important;
  }

  .stat-circle {
    width: 150px !important;
    height: 150px !important;
  }
}

@media (max-width: 992px) {
  .slots-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .daily-games-container {
    flex-direction: column;
    align-items: center;
  }

  .daily-game-card {
    max-width: 100% !important;
    margin-bottom: 2rem;
  }

  .daily-game-card.featured {
    transform: scale(1) !important;
  }

  .daily-game-card.featured:hover {
    transform: scale(1) translateY(-10px) !important;
  }
}

@media (max-width: 1000px) {
  .tog-nav {
    position: absolute;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0f172a;
    flex-direction: column;
    justify-content: flex-start;
    padding: 6rem 2rem 2rem;
    transition: all 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    display: none;
  }

  .tog-nav.active {
    right: 0;
    display: flex;
  }

  .tog-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(109, 40, 217, 0.1);
  }

  .tog-nav .mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(109, 40, 217, 0.1);
  }

  .tog-auth {
    display: none;
  }

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

  .tog-hero {
    padding: 100px 5% 60px;
  }

  .stat-circle {
    width: 120px !important;
    height: 120px !important;
  }

  .stat-circle .stat-value {
    font-size: 1.8rem !important;
  }

  .stat-circle .stat-label {
    font-size: 0.8rem !important;
  }

  .footer-content {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr !important;
    margin-top: 2rem;
  }

  .link-group {
    margin-bottom: 2rem;
  }

  .link-group h4::after {
    left: 50% !important;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .slots-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .tog-hero .hero-actions {
    flex-direction: column;
  }

  .tog-hero .hero-btn {
    width: 100%;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }

  .stat-circle {
    width: 100px !important;
    height: 100px !important;
  }

  .stat-circle .stat-value {
    font-size: 1.5rem !important;
  }

  .stat-circle .stat-label {
    font-size: 0.7rem !important;
  }
}

@media (max-width: 480px) {
  .slots-grid {
    grid-template-columns: 1fr !important;
  }

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

  .age-banner .container {
    flex-direction: column;
    gap: 0.5rem;
  }

  .age-banner p {
    margin-bottom: 0.5rem;
  }
}

.contact-section {
  background: linear-gradient(to bottom, #020617 0%, #0f172a 100%);
  padding: 80px 0;
  color: #f8fafc;
  font-family: "Space Grotesk", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-family: "Oxanium", sans-serif;
}

.section-title span {
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 1rem;
  color: #f8fafc;
}

input,
textarea {
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(109, 40, 217, 0.3);
  border-radius: 6px;
  color: #f8fafc;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #a855f7;
  box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.2);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  padding: 14px 30px;
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(109, 40, 217, 0.3);
}

/* Previous styles remain the same until .form-success */
.form-success {
  display: none;
  /* Hidden by default */
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10b981;
  border-radius: 6px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 0.5s ease;
}

.form-success svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.form-success p {
  color: #f8fafc;
  margin: 0;
  font-size: 1rem;
}

/* Add this new animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tog-login-section {
  padding: 5rem 5%;
  background: linear-gradient(to bottom, #0f172a 0%, #020617 100%);
}

.tog-login-section .login-form-container {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.8);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(109, 40, 217, 0.1);
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
}

.tog-login-section .tog-login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tog-login-section .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tog-login-section label {
  font-size: 1rem;
  color: #f8fafc;
  font-weight: 500;
}

.tog-login-section input {
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(109, 40, 217, 0.3);
  border-radius: 8px;
  color: #f8fafc;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.tog-login-section input:focus {
  outline: none;
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.tog-login-section input::-moz-placeholder {
  color: rgba(100, 116, 139, 0.7);
}

.tog-login-section input::placeholder {
  color: rgba(100, 116, 139, 0.7);
}

.tog-login-section .form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.tog-login-section .submit-btn {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.tog-login-section .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(109, 40, 217, 0.3);
}

.tog-login-section .forgot-password {
  color: #64748b;
  font-size: 0.9rem;
  text-align: center;
  transition: color 0.3s ease;
}

.tog-login-section .forgot-password:hover {
  color: #a855f7;
}

.tog-login-section .form-footer {
  text-align: center;
  margin-top: 1.5rem;
  color: #64748b;
  font-size: 0.95rem;
}

.tog-login-section .form-footer a {
  color: #a855f7;
  font-weight: 500;
  transition: color 0.3s ease;
}

.tog-login-section .form-footer a:hover {
  color: #6d28d9;
}

@media (max-width: 768px) {
  .tog-login-section {
    padding: 3rem 5%;
  }

  .tog-login-section .login-form-container {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .tog-login-section .section-header h2 {
    font-size: 1.6rem;
  }
 .tog-login-section .section-header h1 {
    font-size: 1.6rem;
  }
  .tog-login-section .section-header p {
    font-size: 1rem;
  }
}

.tog-register-section {
  padding: 5rem 5%;
  background: linear-gradient(to bottom, #0f172a 0%, #020617 100%);
}

.tog-register-section .register-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.8);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(109, 40, 217, 0.1);
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
}

.tog-register-section .tog-register-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tog-register-section .form-row {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .tog-register-section .form-row {
    flex-direction: column;
    gap: 1rem;
  }
}

.tog-register-section .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tog-register-section label {
  font-size: 1rem;
  color: #f8fafc;
  font-weight: 500;
}

.tog-register-section input[type=text],
.tog-register-section input[type=email],
.tog-register-section input[type=password] {
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(109, 40, 217, 0.3);
  border-radius: 8px;
  color: #f8fafc;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.tog-register-section input[type=text]:focus,
.tog-register-section input[type=email]:focus,
.tog-register-section input[type=password]:focus {
  outline: none;
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.tog-register-section input[type=text]::-moz-placeholder,
.tog-register-section input[type=email]::-moz-placeholder,
.tog-register-section input[type=password]::-moz-placeholder {
  color: rgba(100, 116, 139, 0.7);
}

.tog-register-section input[type=text]::placeholder,
.tog-register-section input[type=email]::placeholder,
.tog-register-section input[type=password]::placeholder {
  color: rgba(100, 116, 139, 0.7);
}

.tog-register-section .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin: 0.5rem 0;
}

.tog-register-section .checkbox-group input[type=checkbox] {
  min-width: 5px;
  min-height: 5px;
  accent-color: #6d28d9;
  margin-top: 3px;
}

.tog-register-section .checkbox-group label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 400;
  line-height: 1.5;
}

.tog-register-section .form-actions {
  margin-top: 1rem;
}

.tog-register-section .form-actions .submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.tog-register-section .form-actions .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(109, 40, 217, 0.3);
}

.tog-register-section .form-footer {
  text-align: center;
  margin-top: 1.5rem;
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.6;
}

.tog-register-section .form-footer p {
  margin-bottom: 0.5rem;
}

.tog-register-section .form-footer a {
  color: #a855f7;
  font-weight: 500;
  transition: color 0.3s ease;
}

.tog-register-section .form-footer a:hover {
  color: #6d28d9;
}

@media (max-width: 768px) {
  .tog-register-section {
    padding: 3rem 2%;
  }

  .tog-register-section .register-form-container {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .tog-register-section .section-header h2 {
    font-size: 1.8rem;
  }
 .tog-register-section .section-header h1 {
    font-size: 1.8rem;
  }
  .tog-register-section .section-header p {
    font-size: 1rem;
  }
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: #e0e0e0;
}

.checkbox-group input[type=checkbox] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  width: 5px;
  height: 5px;
  border: 2px solid rgba(109, 40, 217, 0.3);
  border-radius: 4px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  margin-top: 2px;
  flex-shrink: 0;
  transition: all 0.2s ease-in-out;
}

.checkbox-group input[type=checkbox]:checked {
  background-color: rgba(109, 40, 217, 0.3);
  border-color: rgba(109, 40, 217, 0.3);
}

.checkbox-group input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 11px;
  width: 10px;
  height: 15px;
  border: solid #0e0f12;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-group input[type=checkbox]:focus {
  outline: 2px solid rgba(109, 40, 217, 0.3);
}

.checkbox-group label {
  line-height: 1.4;
  cursor: pointer;
}

.legal-document-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 5%;
}

.legal-document {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 15px;
  padding: 2.5rem;
  border: 1px solid rgba(109, 40, 217, 0.3);
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
  color: #f8fafc;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.legal-document h1 {
  font-family: "Oxanium", sans-serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #f8fafc;
  text-align: center;
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-document h2 {
  font-family: "Oxanium", sans-serif;
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: #f8fafc;
}

.legal-document p {
  margin-bottom: 1rem;
  color: #cbd5e1;
}

.legal-document strong {
  color: #f8fafc;
  font-weight: 600;
}

@media (max-width: 768px) {
  .legal-document {
    padding: 1.5rem;
  }

  .legal-document h1 {
    font-size: 1.8rem;
  }

  .legal-document h2 {
    font-size: 1.3rem;
  }
}

/* Age Verification Popup */
.age-verification-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 23, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.age-verification-popup .age-verification-content {
  background: #0f172a;
  padding: 2rem;
  border-radius: 15px;
  max-width: 500px;
  text-align: center;
  border: 2px solid #6d28d9;
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.3);
}

.age-verification-popup .age-verification-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #f8fafc;
}

.age-verification-popup .age-verification-content p {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.age-verification-popup .age-verification-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-verification-popup .age-verification-buttons button {
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-verification-popup .age-verification-buttons .age-confirm-btn {
  background: #6d28d9;
  color: white;
}

.age-verification-popup .age-verification-buttons .age-confirm-btn:hover {
  background: #a855f7;
  transform: translateY(-2px);
}

.age-verification-popup .age-verification-buttons .age-deny-btn {
  background: transparent;
  color: #64748b;
  border: 1px solid #64748b;
}

.age-verification-popup .age-verification-buttons .age-deny-btn:hover {
  color: #f8fafc;
  border-color: #f8fafc;
}

/*# sourceMappingURL=main.css.map */