:root {
  --bg-dark: #0a090d;
  --bg-card: rgba(23, 22, 28, 0.7);
  --bg-card-hover: rgba(35, 33, 44, 0.85);
  --neon-purple: #7a1dff;
  --neon-purple-glow: rgba(122, 29, 255, 0.4);
  --neon-green: #39ff14;
  --neon-green-glow: rgba(57, 255, 20, 0.4);
  --neon-orange: #ffa227;
  --neon-orange-glow: rgba(255, 162, 39, 0.4);
  --text-main: #f8f7fc;
  --text-muted: #b0adbd;
  --border-color: rgba(228, 225, 237, 0.1);
  --border-hover: rgba(122, 29, 255, 0.5);
  --font-title: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(122, 29, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(57, 255, 20, 0.08) 0%, transparent 50%),
    linear-gradient(rgba(10, 9, 13, 0.9), rgba(10, 9, 13, 0.9)),
    url('images/background.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--neon-purple);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-green);
}

/* Typography & Layout */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 30%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px var(--neon-purple-glow);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 9, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

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

.logo-link img {
  height: 40px;
  width: auto;
  aspect-ratio: 2 / 1;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: var(--transition);
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-purple);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-main);
  text-shadow: 0 0 10px var(--neon-purple-glow);
}

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

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-play-now {
  padding: 0 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  height: 38px;
  box-sizing: border-box;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--neon-purple);
  color: #fff;
  box-shadow: 0 4px 20px var(--neon-purple-glow);
}

.btn-primary:hover {
  background: var(--neon-purple-glow);
  box-shadow: 0 4px 30px var(--neon-purple);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--neon-green);
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  padding: 8rem 2rem 4rem;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 80vh;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(122, 29, 255, 0.15);
  border: 1px solid var(--neon-purple);
  color: var(--text-main);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge span {
  color: var(--neon-green);
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.hero-image-wrapper img {
  width: 100%;
  display: block;
}

.hero-image-wrapper:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 20px 50px var(--neon-purple-glow);
}

/* Section Common styling */
.section-padding {
  padding: 5rem 2rem;
}

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

/* Overview Specs Grid */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.spec-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.spec-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-5px);
}

.spec-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  display: block;
}

.spec-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.spec-value {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neon-green);
}

/* Mechanics / Cards Layout */
.mechanics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.mechanic-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mechanic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--neon-purple);
}

.mechanic-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: 0 10px 30px rgba(122, 29, 255, 0.15);
  transform: translateY(-5px);
}

.mechanic-card:nth-child(even)::before {
  background: var(--neon-green);
}

.mechanic-card:nth-child(even):hover {
  box-shadow: 0 10px 30px rgba(57, 255, 20, 0.15);
}

.mechanic-card h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.mechanic-card p {
  color: var(--text-muted);
}

/* Figure / Image Display styling */
figure {
  margin: 3rem 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
}

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

figcaption {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  background: rgba(10, 9, 13, 0.5);
  text-align: center;
}

/* Paytable & Tabs */
.tabs-container {
  margin-top: 3rem;
}

.tab-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.tab-btn {
  background: transparent;
  color: var(--text-muted);
  border: none;
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--text-main);
}

.tab-btn.active {
  color: var(--neon-green);
  border-bottom: 3px solid var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green-glow);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

/* Tables styling */
.table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  text-align: left;
}

th, td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

th {
  background: rgba(122, 29, 255, 0.1);
  color: var(--text-main);
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* FAQ Accordion */
.faq-accordion {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-header h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.faq-icon {
  font-size: 1.5rem;
  transition: var(--transition);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.5rem;
  color: var(--text-muted);
}

.faq-item.active {
  border-color: var(--neon-purple);
  background: var(--bg-card-hover);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--neon-purple);
}

.faq-item.active .faq-content {
  max-height: 1000px;
  padding-bottom: 1.5rem;
  transition: max-height 0.5s ease-in-out;
}

/* Custom Interactive Slot Demo Simulator Grid */
.demo-simulator-wrapper {
  background: radial-gradient(circle at center, rgba(122, 29, 255, 0.15) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 3rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.demo-title-container {
  margin-bottom: 2rem;
}

.demo-title-container p {
  color: var(--text-muted);
}

.slot-container {
  max-width: 480px;
  margin: 0 auto;
  background: #0d0c11;
  border: 4px solid #1a1822;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 0, 0, 0.9);
  position: relative;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: #050406;
  padding: 8px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.slot-cell {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.15s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.slot-cell.win-cell {
  background: rgba(57, 255, 20, 0.2);
  border-color: var(--neon-green);
  box-shadow: 0 0 15px var(--neon-green-glow);
  transform: scale(1.05);
}

.slot-cell.wild-cell {
  background: rgba(122, 29, 255, 0.2);
  border-color: var(--neon-purple);
  box-shadow: 0 0 15px var(--neon-purple-glow);
}

.slot-controls {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.slot-stats {
  display: flex;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.stat-item span {
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.stat-val {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
}

.stat-val.highlight {
  color: var(--neon-green);
  text-shadow: 0 0 5px var(--neon-green-glow);
}

.spin-btn {
  background: var(--neon-green);
  color: #000;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 0 20px var(--neon-green-glow);
}

.spin-btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 30px #fff;
}

/* Image Gallery Slider Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
  aspect-ratio: 16/10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.gallery-item:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 10px 25px var(--neon-purple-glow);
  transform: translateY(-3px);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--neon-green);
}

/* Footer styling */
.site-footer {
  background: #060507;
  padding: 5rem 2rem 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand img {
  height: 48px;
  width: auto;
  aspect-ratio: 2 / 1;
  display: block;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
}

.footer-nav h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.8rem;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--neon-purple);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--neon-green);
}

/* Language Selector Styles */
.lang-selector {
  position: relative;
  display: inline-block;
}

.lang-selected-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0 1rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 38px;
  box-sizing: border-box;
  text-decoration: none;
}

.lang-selected-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--neon-purple);
}

.lang-dropdown-list {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  background: #0d0c11;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  list-style: none;
  min-width: 160px;
  max-height: 200px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 200;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* Scrollbar inside language dropdown */
.lang-dropdown-list::-webkit-scrollbar {
  width: 6px;
}
.lang-dropdown-list::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.2);
}
.lang-dropdown-list::-webkit-scrollbar-thumb {
  background: var(--neon-purple);
  border-radius: 3px;
}

.lang-dropdown-list.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.lang-dropdown-list li a {
  display: block;
  padding: 0.7rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  text-align: left;
}

.lang-dropdown-list li a:hover,
.lang-dropdown-list li a.active {
  color: var(--text-main);
  background: rgba(122, 29, 255, 0.15);
}

/* Demo Game Modal Styles */
.demo-game-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 13, 0.98);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.demo-game-modal.active {
  opacity: 1;
  pointer-events: all;
}

.demo-modal-container {
  width: 90%;
  max-width: 960px;
  background: #0d0c11;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
  position: relative;
  display: flex;
  flex-direction: column;
}

.demo-iframe-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}

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

.demo-modal-footer {
  padding: 1.5rem;
  background: #09080c;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
}

.demo-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  z-index: 1010;
  transition: var(--transition);
}

.demo-modal-close:hover {
  color: var(--neon-purple);
}

/* Animation Keyframes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-section {
    padding-top: 6rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }
  
  .header-container {
    padding: 0.8rem 1rem;
  }

  .nav-links {
    gap: 1.2rem;
  }
  
  .site-header {
    padding: 0;
  }
  
  .header-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }
  
  .btn-play-now {
    padding: 0 1rem;
    font-size: 0.8rem;
    height: 34px;
    box-sizing: border-box;
  }
  
  .lang-selected-btn {
    padding: 0 0.8rem;
    font-size: 0.8rem;
    height: 34px;
    box-sizing: border-box;
  }

  /* Fullscreen Demo Modal on Mobile */
  .demo-modal-container {
    width: 100vw;
    height: 100vh;
    max-width: none;
    border-radius: 0;
    border: none;
  }

  .demo-iframe-wrapper {
    aspect-ratio: auto;
    flex-grow: 1;
    height: calc(100vh - 80px);
  }

  .demo-modal-footer {
    padding: 1rem;
    height: 80px;
  }

  .demo-modal-close {
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Accessibility & Usability Focus Indicators */
:focus-visible {
  outline: 2px solid var(--neon-green);
  outline-offset: 4px;
}

.faq-header:focus-visible {
  outline: 2px solid var(--neon-green);
  outline-offset: -2px;
  border-radius: 8px;
}

/* Contact Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

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

.form-group label {
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.9rem;
}

.form-control {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--neon-green);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.turnstile-container {
  min-height: 65px;
  display: flex;
  align-items: center;
}

.notice {
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  display: none;
}

.notice-success {
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.3);
  color: var(--neon-green);
}

.notice-error {
  background: rgba(255, 77, 77, 0.1);
  border: 1px solid rgba(255, 77, 77, 0.3);
  color: #ff4d4d;
}


