/* Reset and Base Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #0f0f1a;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

/* CSS Variables */
:root {
  --primary-color: #1a1a2e;
  --secondary-color: #ff6b6b;
  --accent-color: #ffd700;
  --text-color: #e0e0e0;
  --bg-dark: #0f0f1a;
  --bg-section: #16162a;
  --gradient-primary: linear-gradient(135deg, #dc5555 0%, #ff9500 100%);
  --gradient-dark: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
  --container-max-width: 1400px;
  --container-padding: 5%;
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Header */
header {
  background: var(--gradient-dark);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--container-padding);
  max-width: var(--container-max-width);
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  width: 50px;
  height: 50px;
}
.logo-text {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Navigation */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--text-color);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.nav-links a:hover {
  color: var(--accent-color);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  border: none;
}
.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}
.btn-bonus {
  background: var(--gradient-primary);
  color: white;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}
.btn-cta {
  background: var(--gradient-primary);
  color: white;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}
.btn:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  padding: 0;
}
.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu-wrapper {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--bg-dark);
  padding: 1.5rem var(--container-padding);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.mobile-menu-wrapper.active {
  display: flex;
}
.mobile-menu-wrapper .nav-links {
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.mobile-menu-wrapper .nav-links li a {
  display: block;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: rgba(255, 107, 107, 0.1);
  font-weight: 500;
  transition: background 0.3s ease;
}
.mobile-menu-wrapper .nav-links li a:hover {
  background: rgba(255, 215, 0, 0.2);
  color: var(--accent-color);
}
.mobile-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.mobile-btn {
  text-align: center;
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.2s ease;
}
.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
  margin-top: 82px;
  background: #16162a;
  padding: 6rem var(--container-padding);
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  border-radius: 20px;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: var(--container-max-width);
  margin: 0 auto;
  width: 100%;
}
.hero-left {
  color: var(--text-color);
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 107, 107, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border: 1px solid var(--secondary-color);
  margin-bottom: 1.5rem;
  width: fit-content;
  backdrop-filter: blur(10px);
}
.trophy-icon {
  font-size: 1.2rem;
}
.hero-badge span:last-child {
  color: var(--accent-color);
  font-weight: 600;
}
h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 2s ease-in-out infinite alternate;
  line-height: 1.2;
}
@keyframes glow {
  from {
    filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.5));
  }
  to {
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
  }
}
.highlight {
  color: var(--accent-color);
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.hero-highlight {
  background: rgba(255, 107, 107, 0.1);
  border: 2px solid var(--secondary-color);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.hero-highlight p {
  margin: 0;
  color: var(--accent-color);
  font-weight: 500;
  font-size: 0.95rem;
}

/* Bonus Card */
.hero-right {
  display: flex;
  justify-content: center;
}
.bonus-card {
  background: rgba(255, 107, 107, 0.1);
  border: 2px solid var(--secondary-color);
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  max-width: 350px;
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.bonus-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.bonus-logo {
  width: 60px;
  height: 60px;
}
.bonus-content h2 {
  color: var(--text-color);
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 1rem;
}
.bonus-percentage {
  color: var(--accent-color);
  font-size: 1.5rem;
}
.bonus-amount {
  text-align: center;
  margin-bottom: 1.5rem;
}
.bonus-label {
  display: block;
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.bonus-value {
  display: block;
  color: var(--accent-color);
  font-size: 2rem;
  font-weight: bold;
}
.bonus-description {
  color: var(--text-color);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Main Content */
main {
  padding: 2rem var(--container-padding);
  max-width: var(--container-max-width);
  margin: 0 auto;
}
.content {
  padding: 2rem 0;
}
.section {
  margin-bottom: 4rem;
  background: var(--bg-section);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}
.dark-section {
  background: var(--bg-section);
}
.cta-section {
  background: transparent;
  padding: 0;
}
h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}
h3 {
  font-size: 1.8rem;
  margin: 1.5rem 0 1rem;
  color: var(--secondary-color);
}
h4 {
  font-size: 1.4rem;
  margin: 1rem 0 0.5rem;
  color: var(--accent-color);
}
.section-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
  opacity: 0.9;
}

/* Features List */
.features-list {
  margin: 2rem 0;
}
.features-list li {
  background: rgba(255, 107, 107, 0.1);
  margin-bottom: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 107, 0.3);
  position: relative;
  transition: all 0.3s ease;
}
.features-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
  border-color: var(--accent-color);
}
.features-list li::before {
  content: "✓";
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.game-category {
  background: rgba(255, 107, 107, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 107, 0.3);
  text-align: center;
  transition: all 0.3s ease;
}
.game-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  border-color: var(--accent-color);
}
.game-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}
.game-category h3 {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.game-category p {
  color: var(--text-color);
  opacity: 0.8;
}

/* Payment Grid */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.payment-card {
  background: rgba(255, 107, 107, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 107, 0.3);
  text-align: center;
  transition: all 0.3s ease;
}
.payment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  border-color: var(--accent-color);
}
.payment-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}
.payment-card h3 {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.payment-card p {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.payment-detail {
  color: var(--secondary-color);
  font-size: 0.9rem;
  font-weight: 500;
}
.payment-note {
  text-align: center;
  color: var(--accent-color);
  font-style: italic;
  margin-top: 2rem;
}

/* Payment Methods List */
.payment-methods-list {
  margin-top: 3rem;
  text-align: center;
}
.payment-methods-list h4 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}
.payment-methods-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.payment-method {
  background: rgba(255, 107, 107, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 107, 107, 0.3);
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.payment-method:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

/* Tables */
.table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
}
table,
.dark-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
}
th {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: bold;
}
td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color);
}
.highlight-cell {
  background: rgba(255, 215, 0, 0.2);
  font-weight: bold;
  color: var(--accent-color);
}
tr:hover {
  background: rgba(255, 107, 107, 0.1);
  transition: background 0.3s ease;
}

/* Dark Cards */
.dark-card {
  background: rgba(255, 107, 107, 0.1);
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem 0;
  border: 1px solid rgba(255, 107, 107, 0.3);
  color: var(--text-color);
  transition: all 0.3s ease;
}
.dark-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
  border-color: var(--accent-color);
}
.mobile-features,
.security-features {
  padding: 0;
}
.mobile-features li,
.security-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color);
}
.mobile-features li:last-child,
.security-features li:last-child {
  border-bottom: none;
}
.mobile-features li::before,
.security-features li::before {
  content: "✓";
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Pros and Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}
.pros {
  border-left: 4px solid var(--accent-color);
}
.cons {
  border-left: 4px solid var(--secondary-color);
}
.pros ul,
.cons ul {
  padding: 0;
}
.pros li,
.cons li {
  padding: 0.5rem 0;
  color: var(--text-color);
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.testimonial {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  color: var(--text-color);
}
.stars {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* CTA Final */
.cta-final {
  text-align: center;
  background: var(--gradient-primary);
  color: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}
.cta-final h2 {
  color: white;
  margin-bottom: 1rem;
}

/* FAQ */
.faq {
  margin: 2rem 0;
}
.faq-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 107, 107, 0.1);
}
.faq-item summary {
  padding: 1.5rem;
  cursor: pointer;
  background: rgba(255, 107, 107, 0.1);
  transition: background 0.3s ease;
  color: var(--text-color);
}
.faq-item summary:hover {
  background: rgba(255, 107, 107, 0.2);
}
.faq-item[open] summary {
  background: var(--gradient-primary);
  color: white;
}
.faq-item p {
  padding: 1.5rem;
  margin: 0;
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-color);
}
.disclaimer {
  font-size: 0.9rem;
  opacity: 0.8;
  font-style: italic;
  color: var(--text-color);
  text-align: center;
  margin-top: 1rem;
}

/* Footer */
footer {
  background: var(--gradient-dark);
  padding: 3rem var(--container-padding) 1rem;
  margin-top: 4rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
}
.footer-section h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}
.footer-section ul {
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 0.5rem;
}
.footer-section a {
  color: var(--text-color);
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: var(--accent-color);
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.social-media {
  margin-top: 1.5rem;
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.social-link {
  display: inline-block;
  padding: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 107, 107, 0.1);
  transition: all 0.3s ease;
}
.social-link:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}
.age-restriction {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 10px;
  border: 2px solid var(--secondary-color);
}
.age-symbol {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 0.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.license-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 107, 107, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  border: 2px solid var(--secondary-color);
}
.age-restriction-large {
  flex-shrink: 0;
}
.age-symbol-large {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 1rem;
  border-radius: 50%;
  font-weight: bold;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.license-text {
  flex: 1;
}
.license-text p {
  margin-bottom: 0.5rem;
}
.license-text p:last-child {
  margin-bottom: 0;
}
.copyright {
  text-align: center;
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Enhanced Footer Styles */
.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 40px;
  height: 40px;
}

.footer-logo-text {
  color: var(--accent-color);
  font-size: 1.3rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-section {
  min-width: 200px;
}

.footer-section h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
}

.footer-section h4 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-section ul {
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
  transition: transform 0.2s ease;
}

.footer-section ul li:hover {
  transform: translateX(5px);
}

.footer-section a {
  color: var(--text-color);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-icon {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.social-media {
  margin-top: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 107, 107, 0.1);
  border: 2px solid rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
  font-weight: bold;
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--bg-dark);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.social-link.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #bc1888;
}

.social-link.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
}

.social-link.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.age-restriction {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 10px;
  border: 2px solid var(--secondary-color);
  text-align: center;
}

.age-symbol {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

.footer-bottom {
  border-top: 2px solid rgba(255, 107, 107, 0.3);
  padding-top: 2rem;
  margin-top: 3rem;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.license-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 107, 107, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid var(--secondary-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.age-restriction-large {
  flex-shrink: 0;
}

.age-symbol-large {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 2rem;
  width: 70px;
  height: 70px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.license-text {
  flex: 1;
}

.license-text p {
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.license-text p:last-child {
  margin-bottom: 0;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  margin: 1rem 0;
}

.copyright {
  text-align: center;
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Mobile Footer Adjustments */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .footer-brand {
    max-width: 100%;
  }

  .license-info {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

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

  .contact-info li {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-section {
    min-width: auto;
  }

  .social-link {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .age-symbol-large {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .license-info {
    padding: 1.5rem;
  }
}
