@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* Common Styles for Gambino Slot Games */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-purple: #6b46c1;
  --secondary-purple: #9333ea;
  --accent-gold: #e1f263;
  --dark-bg: #091f09;
  --light-text: #f3f4f6;
  --gradient-primary: linear-gradient(
    135deg,
    #16a34a 0%,
    /* Emerald green */ #22c55e 50%,
    /* Medium green */ #86efac 100% /* Light mint green */
  );

  --gradient-secondary: linear-gradient(45deg, #f59e0b 0%, #eab308 100%);
  --shadow-glow: 0 0 20px rgba(121, 237, 26, 0.3);
}

body {
  font-family: "Raleway", sans-serif;
  background: #516343;
  min-height: 100vh;
  color: var(--light-text);
  line-height: 1.6;
}

/* Header Styles */
.header {
  background: #091f09;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(107, 70, 193, 0.3);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

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

.nav-menu a {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-secondary);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--light-text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */

.home-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.home-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -2;
}

.home-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 41, 55, 0.6);
  z-index: -1;
}

.home-hero-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 4rem 5%;
  height: 100%;
  gap: 2rem;
  flex-wrap: wrap;
}

.home-text-section {
  max-width: 600px;
}

.home-text-section h1 {
  font-size: 4rem;
  line-height: 1.2;
  color: var(--light-text);
  /* background: var(--light-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  font-weight: 800;
  margin-bottom: 1rem;
}

.home-text-section p {
  font-size: 1.2rem;
  color: var(--light-text);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-primary {
  padding: 0.75rem 1.5rem;
  background: var(--primary-purple);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: var(--secondary-purple);
}

.home-store-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 15px 20px;
  background: var(--dark-bg);
  border-radius: 10px;
  text-decoration: none;
}

.link-btn img {
  height: 40px;
}

.home-store-buttons .link-btn-text {
  margin: 0;
  display: flex;
  flex-direction: column;
  margin-left: 20px;
  font-size: 10px;
}

.top-btn-text {
  color: #cdc8c8;
}

.bottom-btn-text {
  font-weight: bold;
  font-size: 15px;
}

.link-btn.apple-btn {
  background-color: var(--light-text);
}

.top-btn-text.apple-btn-text {
  color: #2e2e2e;
}

.bottom-btn-text.apple-btn-text {
  color: #000;
  font-weight: bold;
  font-size: 19px;
}

.mobile-mockup {
  width: 280px;
  height: 550px;
  background: #111;
  border-radius: 30px;
  padding: 1rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.mockup-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* page hero section */
/* Hero Section */
.page-hero {
  padding: 120px 2rem 80px;
  text-align: center;
  /* background: var(--gradient-primary); */
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background: #00000000;
  padding: 20px 40px;
  backdrop-filter: blur(30px);
  border-radius: 33px;
}

.page-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-button {
  display: inline-block;
  background: var(--gradient-secondary);
  color: var(--dark-bg);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
  border: none;
  cursor: pointer;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
  background: var(--accent-gold);
  /* background: var(--gradient-secondary); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.card {
  background: rgba(25, 46, 33, 0.8);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(107, 70, 193, 0.3);
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
  border-color: var(--accent-gold);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.card p {
  opacity: 0.8;
  line-height: 1.6;
}

/* Review Section */
.review-section {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
} */

.section-subtitle {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
}

.review-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.review-card {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 1rem;
  width: 100%;
  max-width: 600px;
  box-shadow: var(--shadow-glow);
  opacity: 0;
  transition: opacity 0.6s ease, z-index 0.6s;
  z-index: 0;
}

.review-card.active {
  opacity: 1;
  z-index: 10;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reviewer .avatar {
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-glow);
}

.reviewer .name {
  font-weight: bold;
  font-size: 1rem;
}

.reviewer .stars {
  color: gold;
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.95rem;
  opacity: 0.9;
  text-align: left;
}

.review-date {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-arrows {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.nav-arrows button {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: white;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.nav-arrows button:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* screenshot section */
.ss-section {
  padding: 40px 20px;
}

.ss-container {
  max-width: 1300px;
  margin: 0 auto;
}

.ss-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #79ed1a;
  margin-bottom: 10px;
}

.ss-subtitle {
  font-size: 1.1rem;
  color: #cfcfcf;
  margin-bottom: 30px;
}

.ss-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.ss-left-panel {
  flex: 1 1 400px;
}

.ss-right-panel {
  flex: 1 1 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ss-right-panel img {
  width: 100%;
  max-height: 400px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  margin-top: 140px;
}

.ss-game-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ss-game-item {
  display: flex;
  gap: 15px;
  background-color: #0a1f0a;
  padding: 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s ease;
  border: 2px solid transparent;
}

.ss-game-item:hover {
  background-color: #154115;
}

.ss-game-item.active {
  border-color: #3eb63e;
  box-shadow: 0 0 10px #a18aff66;
}

.ss-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 6px;
  object-fit: cover;
}

.ss-game-item h3 {
  font-size: 1rem;
  color: white;
  margin-bottom: 5px;
}

.ss-game-item p {
  font-size: 0.9rem;
  color: #bbb;
}

/* Footer */
.footer {
  background: var(--dark-bg);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(107, 70, 193, 0.3);
}

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

.footer-section h3 {
  color: var(--accent-gold);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

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

.footer-section a {
  color: var(--light-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-gold);
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(107, 70, 193, 0.3);
  opacity: 0.6;
  font-size: 0.9rem;
}

.disclaimer {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.disclaimer p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #091f09;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(107, 70, 193, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  z-index: 10000;
  max-width: 400px;
  margin: 0 auto;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.cookie-button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--gradient-secondary);
  color: var(--dark-bg);
}

.cookie-decline {
  background: transparent;
  color: var(--light-text);
  border: 1px solid rgba(107, 70, 193, 0.5);
}

.cookie-button:hover {
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 900px) {
  .ss-content {
    flex-direction: column;
  }
  .ss-right-panel img {
    max-height: 300px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    border-top: 1px solid rgba(107, 70, 193, 0.3);
  }

  .nav-menu.active {
    display: flex;
  }

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

  .home-hero-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .home-store-buttons {
    flex-direction: column;
  }

  .mobile-mockup {
    align-self: center;
    display: none;
  }

  .text-section h1 {
    text-align: center;
  }

  .text-section p {
    font-size: 1.2rem;
  }

  /* page hero section */
  .page-hero h1 {
    font-size: 2.5rem;
  }

  .page-hero p {
    font-size: 1.1rem;
  }

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

  .ss-right-panel img {
    margin-top: 0;
  }

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

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

  .cookie-consent {
    left: 10px;
    right: 10px;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .home-hero {
    height: 70vh;
  }

  .home-hero-content {
    padding-bottom: 0;
  }

  .home-text-section h1 {
    font-size: 2.8rem;
  }

  .home-text-section p {
    font-size: 0.9rem;
  }

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

@media (max-width: 380px) {
  .home-hero {
    height: 80vh;
  }

  .home-hero-content {
    padding-bottom: 0;
  }

  .home-text-section h1 {
    text-align: center;
    font-size: 2.3rem;
    margin-top: 40px;
  }

  .home-text-section p {
    font-size: 0.8rem;
    text-align: center;
  }
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    box-shadow: var(--shadow-glow);
  }
  50% {
    box-shadow: 0 0 30px rgba(121, 237, 26, 0.6);
  }
}

.glowing {
  animation: glow 2s ease-in-out infinite;
}
