* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }
  body {
    background-color: #0b0f1a;
    color: #f5f5f5;
    overflow-x: hidden;
  }
  #loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #0f1a2b;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  .spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #ff4500;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
  }
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: none;
  }
  
  .custom-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #111;
    color: white;
    padding: 25px 30px;
    border-radius: 20px;
    text-align: center;
    width: 320px;
    z-index: 9999;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
    display: none;
  }
  
  .modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 20px;
    color: white;
    cursor: pointer;
  }
  
  .modal-logo {
    width: 120px;
    margin-bottom: 10px;
  }
  
  .modal-subtitle {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .modal-title {
    font-size: 18px;
    font-weight: bold;
    color: #ff6a00;
    margin: 5px 0;
  }
  
  .modal-desc {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
  }
  
  .modal-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(to right, #ff4e00, #ffa600); 
    color: black;
    border-radius: 20px;
    font-weight: bold;
    text-decoration: none;
  }
  
  

  header {
    background: linear-gradient(to right, #14233d, #254781);
    padding: 5px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  header img.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .buttons img {
    width: 25px;
    height: 25px;
  }
  
  .socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  
  .socials a {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
  }
  
  .socials a img {
    width: 25px;
    height: 25px;
  }
  
  .discord { background: #5865F2; }
  .telegram { background: #229ED9; }
  .instagram { background: #E1306C; }
  .skype { background: #00AFF0; }
  .youtube { background: #FF0000; }
  .kick { background: #53FC18; color: #000; }
  
  .etkinlik { background: linear-gradient(to right, #00ff00aa, #00ff00); }
  .etkinlik-kanali { background: linear-gradient(to right, #ffa500aa, #ffa500); }
  .sohbet-kanali { background: linear-gradient(to right, #ff00aa99, #ff0080); }
  
  .scrolling-bar {
    display: flex;
    align-items: stretch;
    background: #0f1a2b;
    overflow: hidden;
    height: 60px; 
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  .scrolling-fixed {
    flex: 0 0 auto;
    padding: 0 20px;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    background: #06101e;
    height: 100%; 
    border-right: 2px solid #1f2f4a;
    font-size: 14px;
  }
  
  .scrolling-fixed .star-icon {
    margin-right: 8px;
    color: #ffc107;
    font-size: 18px;
  }
  
  .scrolling-track {
    flex: 1;
    overflow: hidden;
    position: relative;
  }
  
  .scrolling-logos {
    display: flex;
    gap: 20px;
    animation: scroll-logos 30s linear infinite;
    padding-left: 20px;
    height: 100%; 
    align-items: center;
  }
  
  .scrolling-bar:hover .scrolling-logos {
    animation-play-state: paused;
  }
  
  .scrolling-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 3px 14px;
    background: linear-gradient(to right, rgba(25, 43, 70, 0.4) 50%, rgba(21, 226, 82, 0.3) 100%);
    border-radius: 32px;
    color: white;
    text-decoration: none;
    white-space: nowrap;
    height: 60px;
    min-width: 220px;
    width: 250px;
    transition: transform 0.3s ease;
  }
  .scrolling-card:hover {
    box-shadow: 0 0 20px rgba(255, 80, 0, 0.3);
  }
  
  .scrolling-card img {
    height: 26px;
    width: auto;
  }
  
  .scrolling-card span {
    font-weight: bold;
    font-size: 14px;
  }
  
  .scrolling-card button {
    margin-left: auto;
    background-color: #ff5722;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .scrolling-card:hover {
    transform: scale(1.03);
  }
  
  @keyframes scroll-logos {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  .gif-banner {
    width: 100%;
    height: auto;
    display: block;
  }

  .promo-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px !important;
    padding: 0px;
  }

  .card {
    position: relative;
    border-radius: 30px;
    padding: 25px;
    color: white;
    background: linear-gradient(to right, rgba(25, 43, 70, 0.4) 50%, rgba(21, 226, 82, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    max-width: 100%;
    
  }
  .card:hover {
    box-shadow: 0 0 25px rgba(255, 140, 0, 0.4);
    transform: scale(1.02);
    transition: all 0.6 ease;
  }

  .vip-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: white;
    color: orange;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: fit-content;
    white-space: nowrap;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
    z-index: 2;
  }

  .logo {
    height: 25px;
    margin-bottom: 10px;
  }

  .title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
  }

  .desc {
    font-size: 13px;
    color: #ccc;
  }

  .btn {
    margin-top: 15px;
    background: green;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    width: fit-content;
  }
  .btn:hover {
    background: rgb(54, 184, 54);
  }
  .promo-card {
    width: 180px;
    height: 800px;
    background-color: #001730;
    border-radius: 30px;
    color: white;
    font-family: sans-serif;
    text-align: center;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .promo-card img{
    width: 100px;
    height: 50px;
  }
  .promo-logo {
    width: 60px;
    height: auto;
  }
  
  .vip-badge {
    background-color: white;
    color: orange;
    font-weight: bold;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 20px;
    margin: 10px 0;
  }
  
  .vertical-logo {
    writing-mode: vertical-rl;
    transform: none; 
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
  }
  .vertical-image {
    transform: rotate(270deg);
    height: 100px; 
    width: auto;
  }
  
  
  .bonus-text h5 {
    font-size: 40px;
    color: orange;
    margin: 5px 0;
    font-weight: bold;
  }
  
  .bonus-text p {
    font-size: 20px;
    margin: 3px 0;
    color: #fff;
    font-weight: bold;
  }
  
  .promo-btn {
    background-color: orange;
    color: white;
    border: none;
    padding: 13px 40px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .promo-logo.bottom {
    margin-top: 10px;
  }
  .side-gif {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  z-index: 9999;
}


.side-gif.left-gif {
  left: 10px; 
}

.side-gif.right-gif {
  right: 10px; 
  max-width: calc(100% - 20px); 
  overflow: hidden; 
}
.floating-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  border-radius: 12px;
  padding: 10px 20px;
  z-index: 999;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  max-width: 500px;
  width: 90%;
  font-family: sans-serif;
}

.floating-banner-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-logo {
  width: 80px;
  height: 40px;
  border-radius: 6px;
}

.floating-text {
  flex: 1;
  font-size: 14px;
  font-weight: bold;
}

.floating-btn {
  background: linear-gradient(to right, #ff4e00, #ffa600); 
  color: black;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
}

.close-banner {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
  @media (max-width: 768px) {
    .side-gif {
      display: none;
    }
  
    .promo-container {
      padding: 10px; 
    }
    .buttons {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      padding: 10px;
    }
  
    .buttons button {
      width: 100%;
    }
    .scrolling-track {
      overflow: hidden;
      position: relative;
    }
  
    .scrolling-logos {
      display: flex;
      width: max-content;
      animation: scroll-logos 10s linear infinite;
    }
  
    @keyframes scroll-logos {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    
  }
  
  @media (max-width: 480px) {
  header {
    padding: 15px 10px;
  }

  header img.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
  }

  .socials {
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-center;
  }

  .socials a {
    width: 30px;
    height: 30px;
  }

  .socials a img {
    width: 20px;
    height: 20px;
  }

  .buttons {
    flex-direction: column;
    gap: 8px;
  }

  .buttons button {
    font-size: 14px;
    padding: 8px 12px;
    justify-content: center;
  }

  .buttons img {
    width: 20px;
    height: 20px;
  }
  .promo-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
  }
  .side-gif {
    display: none;
  }

  .promo-container {
    padding: 10px; 
  }
  .buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .buttons button {
    width: 100%;
  }
  .scrolling-logos{
    animation: scroll-logos 8s linear infinite !important;
  }
  .logo-card {
    font-size: 14px;
    padding: 8px 16px;
  }
}
@media (min-width: 1025px) {
  .promo-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0 20px;
  }

  .content-column {
    flex: 1;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .side-gif {
    position: sticky;
    top: 100px;
    width: 120px;
    height: auto;
  }

  .gif-banner {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .promo-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
    padding: 0;
  }
  .side-gif:first-of-type {
    transform: translateX(-140px); 
  }

  .side-gif:last-of-type {
    transform: translateX(140px); 
  }
}
.hadescoin-btn {
  background: linear-gradient(to right, #f6d365, #fda085);
  color: #000;
  font-weight: 700;
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(246, 211, 101, 0.5);
  position: relative;
  overflow: hidden;
  animation: pulse-glow 2s infinite;
}

.hadescoin-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

.hadescoin-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(246, 211, 101, 0.7);
}

.hadescoin-btn img {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 5px rgba(246, 211, 101, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(246, 211, 101, 0.8);
  }
  100% {
    box-shadow: 0 0 5px rgba(246, 211, 101, 0.5);
  }
}

@keyframes shine {
  0% {
    left: -100%;
    opacity: 0;
  }
  20% {
    left: 100%;
    opacity: 0.5;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}