* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
  background: url('images/bg.webp') no-repeat center center fixed;
  background-size: cover;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

    body::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 0;
    }

    .container {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 40px 20px;
      width: 100%;
      max-width: 500px;
    }

    .logo {
      max-width: 200px;
      margin: 30px auto 20px auto;
      display: block;
    }

    .info-box {
      background-color: rgba(255, 215, 0, 0.1);
      border: 1px solid gold;
      color: white;
      font-size: 15px;
      padding: 12px 20px;
      border-radius: 8px;
      margin-bottom: 30px;
      line-height: 1.5;
    }

    .info-box span {
      color: gold;
      font-weight: bold;
    }

    .button-container {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-bottom: 30px;
    }

    .btn {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    
      background-color: gold;
      color: black;
      padding: 14px 22px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    
      background-color: #e6c200;
      transform: scale(1.05);
    }

    .footer {
      z-index: 1;
      text-align: center;
      color: #ddd;
      padding: 20px;
      font-size: 14px;
      background-color: black;
      width: 100%;
    }

    .footer span {
      color: gold;
      font-weight: bold;
      display: block;
      margin-top: 8px;
    }

    @media (max-width: 600px) {
      .btn {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    
        width: 80vw;
      }

      .info-box {
        font-size: 14px;
      }
    }

.social-top {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
}
.social-top a {
  color: gold;
  text-decoration: none;
  margin-right: 10px;
  font-size: 14px;
}


.social-top {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 9999;
}
.social-top a {
  color: gold;
  text-decoration: none;
  margin-right: 10px;
  font-size: 18px;
}


.social-top {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 9999;
  text-align: center;
}
.social-top img {
  width: 32px;
  height: 32px;
  margin: 0 6px;
  vertical-align: middle;
}



.social-top {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.social-top .social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.social-top img {
  width: 28px;
  height: 28px;
  margin-bottom: 2px;
}

.social-top .label {
  color: gold;
  font-size: 10px;
  line-height: 1;
  margin: 0;
}

button, .button {
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

button:hover, .button:hover {
  background-color: rgba(255,255,255,0.1);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  body {
  background: url('images/bg.webp') no-repeat center center fixed;
  background-size: cover;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

  h1 {
    font-size: 22px;
    padding: 10px;
    text-align: center;
  }

  button, .button {
    width: 90%;
    font-size: 16px;
  }
}


/* Cookie Bar & Footer - Gold Theme */

#cookieBar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: gold;
    text-align: center;
    padding: 6px 12px;
    font-size: 13px;
    z-index: 9999;
    border-top: 1px solid gold;
    box-shadow: 0 -2px 5px rgba(255, 215, 0, 0.3);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#cookieAccept {
    all: unset;
    display: inline-block;
    margin-left: 8px;
    background: black;
    color: gold;
    border: 1px solid gold;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
}

#cookieAccept:hover {
    background: gold;
    color: black;
    border-color: gold;
    transform: scale(1.05);
}

/* Footer Parlak */
.footer {
    z-index: 1;
    text-align: center;
    color: #c9dbff;
    padding: 20px;
    font-size: 14px;
    background-color: black;
    width: 100%;
    font-weight: bold;
    text-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700;
}


/* FIXED RESPONSIVE STYLES */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  background: url('images/bg.webp') no-repeat center center fixed;
  background-size: cover;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.container {
  max-width: 100%;
  padding: clamp(8px, 4vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button {
  width: 100%;
  max-width: 340px;
  margin: 12px auto;
  padding: 14px 18px;
  background: #ffd900;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s;
}

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

@media (max-width: 480px) {
  .button {
    max-width: 90vw;
  }
}
