:root {
  --ana-renk: #FFCD36;
  --menu-rengi: #131725;
  --yazi-rengi: #ffffff;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #131725;
  color: #111;
  scroll-behavior: smooth;
}

/* Navigation */
nav {
  background-color: var(--menu-rengi);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

nav img {
  height: 75px;
}

nav .buttons a {
  color: var(--yazi-rengi);
  background-color: transparent;
  border: 1px solid var(--ana-renk);
  padding: 0.5rem 1rem;
  margin-left: 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

nav .buttons a:hover {
  background-color: var(--ana-renk);
  color: #000;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  background: url('casino-banner.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 600px;
  animation: fadeIn 1.2s ease;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.hero-content a {
  background: var(--ana-renk);
  color: #000;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.hero-content a:hover {
  background: #f4b300;
}

/* Content Section */
.content {
  padding: 3rem 1rem;
  max-width: 1100px;
  margin: auto;
  display: grid;
  gap: 2rem;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.section img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.section img:hover {
  transform: scale(1.02);
}

.section h2 {
  font-size: 1.6rem;
  color: #ffffff;
}

.section p {
  line-height: 1.6;
  font-size: 1rem;
  color: #ffffff;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  nav .buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav .buttons a {
    margin-left: 0;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .section {
    flex-direction: row;
    align-items: center;
  }

  .section img {
    width: 50%;
  }

  .section-content {
    width: 50%;
    padding-left: 2rem;
  }
}
