/* Yleiset tyylit */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #0b0b0b;
  color: #f5f5f5;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #fff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1c1c1c;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: 'Great Vibes', cursive;
  font-size: 32px;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.logo:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(12, 12, 12, 0.6); /* Puoli-läpinäkyvä tausta */
  backdrop-filter: blur(6px);
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #f5f5f5;
  padding: 10px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #ffd700;
  transition: width 0.3s ease;
}

.nav-menu li a:hover {
  color: #ffd700;
}

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

.nav-telegram {
  background-color: #0088cc;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: bold;
  font-family: 'Oswald', sans-serif;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease, transform 0.2s;
}

.nav-telegram:hover {
  background-color: #007ab3;
  transform: translateY(-2px);
}

.telegram-icon {
  margin-right: 6px;
  font-size: 16px;
  vertical-align: middle;
}

.hero {
  background: url('https://images.unsplash.com/photo-1605902711622-cfb43c4437c2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  position: relative;
}

.center-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 80px;
  color: #ffd700;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 2;
}

.center-logo .logo-crown {
  font-size: 1.2em;
}

.intro-blend {
  background: linear-gradient(to bottom, #0b0b0b 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 100px 20px 80px;
  text-align: center;
  color: #eaeaea;
}

.intro-blend h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  margin-bottom: 30px;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.intro-blend p {
  font-size: 20px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 25px;
  color: #d8d8d8;
}

.bonuses {
  padding: 60px 20px;
  background-color: #0f0f0f;
  text-align: center;
}

.bonuses h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #ffd700;
 font-family: 'Oswald', sans-serif;
}


h1, h2 {
  margin: 0;
  font-weight: bold;
}

main {
  padding: 2rem;
}

.bonuses h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.bonus-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Bonus Top HILLO-palkki */
.bonus-top {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.bonus-item.hillo {
  max-width: 480px;
  padding: 2rem 5mm 2rem 5mm;
  border: 4px solid #ffd700;
  box-shadow: 0 0 20px #ffd700;
  background-color: #2b2929;
  position: relative;
  overflow: hidden;
}

/* Tämä säätää nimenomaan ylätilaa, esim. logolle */
.bonus-item.special {
  padding-top: 130px; /* voit säätää tarvittaessa */
}

/* Hillo-logo ylhäällä keskellä */
.casino-logo {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: auto;
  z-index: 2;
}

/* Casino-logo esim. keskelle vähän alemmaksi, jos haluat erikseen */
.casinia-logo {
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px; /* voit säätää */
  height: auto;
  z-index: 2;
}
/* Rivit, joissa 3 palkkia */
.bonus-row {
  display: flex;
  justify-content: center;
  gap: 30px; /* väli palkkien välillä */
  margin-bottom: 30px;
}

/* Bonus-itemit yleisesti rivillä */
.bonus-row .bonus-item {
  flex: 1 1 280px; /* leveys noin 280px */
  max-width: 320px;
  background-color: #222;
  border: 3px solid #ffd700;
  padding: 1.5rem;
  box-shadow: 0 0 12px rgba(229, 255, 0, 0.5);
}

/* Tekstien keskitys ja painikkeet pysyvät samana */

/* Responsiivisuus: Pienemmillä näytöillä rivit pinoutuvat */
@media (max-width: 1000px) {
  .bonus-row {
    flex-wrap: wrap;
    gap: 20px;
  }
  .bonus-row .bonus-item {
    flex: 1 1 45%;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .bonus-row {
    flex-direction: column;
    gap: 20px;
  }
  .bonus-row .bonus-item {
    flex: 1 1 100%;
  }
}

/* Otsikko (esim. HILLO) */
.bonus-heading {
  color: #ffd700;       /* kirkas vihreä */
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-align: center;
}

/* Kuvausteksti */
.bonus-description {
  color: #ffffff;           /* teksti */
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 1rem;
}

/* CTA-painike */
.cta-button {
  background-color: #00cc66;
  color: #f8f7f7;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #00e673;
  color: #000;
}

.bonus-row .bonus-item {
  background-color: #2c2929; /* tumma neutraali */
}



.bonus-logo-container {
  position: relative;
  margin-bottom: 1rem;
}

.bonus-logo {
  max-width: 160px;
}

.exclusive-badge {
  width: 120px; /* Säädä kokoa tähän */
  height: auto; /* Säilyttää mittasuhteet */
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.bonus-item.special {
  position: relative;
  padding-top: 120px; /* kasvatettu tila logolle */
}


.casinia-logo {
  position: absolute;
  top: -67px;  /* nostetaan vielä ylemmäs */
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: auto; 
  pointer-events: none;
  user-select: none;
  z-index: 10;
}

.winshark-logo {
  position: absolute;
  top: -110px;  /* nostetaan vielä ylemmäs */
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 10;
}

.buumi-logo {
  width: 300px;        /* Säädä tähän sopiva leveys */
  height: auto;        /* Säilyttää oikeat mittasuhteet */
  position: absolute;  /* Irroittaa muusta rakenteesta */
  top: -190px;           /* Kuinka korkealle menee */
  left: 50%;           /* Keskittää vaakasuunnassa */
  transform: translateX(-50%);
  z-index: 2;
}

.bonus-item.slotti {
  position: relative;
}

.slotti-logo {
  width: 450px;         /* Säädä tarpeen mukaan */
  height: auto;
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.bonus-item.lysti {
  position: relative;
}

.lysti-logo {
  width: 300px;          /* Säädä tarvittaessa esim. 120–160px */
  height: auto;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.bonus-item.nopein {
  position: relative;
}

.nopein-logo {
  width: 300px;            /* Säädä tarvittaessa, esim. 120–160px */
  height: auto;
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.bonus-item.possu {
  position: relative;
}

.possu-logo {
  width: 270px;              /* Tarvittaessa muuta esim. 120–160px */
  height: auto;
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.bonus-item.kruuna {
  position: relative;
}

.kruuna-logo {
  width: 180px;              /* Tarvittaessa muuta esim. 120–160px */
  height: auto;
  position: absolute;
  top: -118px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.bonus-item.shokki {
  position: relative;
}

.shokki-logo {
  width: 250px;              /* Tarvittaessa muuta esim. 120–160px */
  height: auto;
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.bonus-item.pommi {
  position: relative;
}

.pommi-logo {
  width: 300px; /* Voit säätää halutessasi */
  height: auto;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.bonus-item.jellona {
  position: relative;
}

.jellona-logo {
  width: 300px; /* Voit säätää halutessasi */
  height: auto;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}


.bonus-heading {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.bonus-description {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  background-color: #00cc66;
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #00994d;
}


.tips {
  padding: 60px 20px;
  background-color: #0f0f0f;
  text-align: center;
}

.tips h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ffd700;
  font-family: 'Oswald', sans-serif;
}

.tips ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.tips ul li {
  background-color: #1c1c1c;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #ffa500;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #1c1c1c;
  color: #888;
}

.disclaimer {
  padding: 60px 20px;
  background-color: #0d0d0d;
  color: #e6e6e6;
}

.disclaimer-box {
  max-width: 800px;
  margin: 0 auto;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.disclaimer-box h2 {
  font-family: 'Oswald', sans-serif;
  color: #ffd700;
  font-size: 28px;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 1px solid #333;
  padding-bottom: 15px;
}

.disclaimer-box ul {
  list-style-type: none;
  padding-left: 0;
}

.disclaimer-box ul li {
  padding: 10px 0;
  border-bottom: 1px solid #2a2a2a;
  font-size: 16px;
  line-height: 1.7;
}

.disclaimer-box ul li:last-child {
  border-bottom: none;
  margin-top: 20px;
  font-weight: 500;
  color: #ffd700;
}

/* Mobiililaitteille */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

}