html, body {
  height: 100%;
  margin: 0;
}

/* Фоново изображение */
body {
  background-image: url('./background-snimka.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Orbitron', sans-serif;
  color: white;
}

/* Заглавия с Orbitron */
.orbitron {
  font-family: 'Orbitron', sans-serif;
}

/* Горен банер (горен десен ъгъл) */
.live-banner-link {
  background-color: #7c3aed;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-weight: bold;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.live-banner-link:hover {
  background-color: #6b21a8;
}

/* Хедър (меню) */
.header {
  background-color: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid #374151; /* border-gray-700 */
  padding: 0.75rem 1rem;
}

/* Лого в менюто */
.profile-logo {
  height: 2.5rem; /* 40px */
  width: 2.5rem;
  border-radius: 9999px;
  border: 2px solid white;
  box-shadow: 0 0 8px black;
}

/* Twitch бутон в менюто */
.live-button {
  background-color: #7c3aed;
  padding: 0.25rem 1.25rem;
  border-radius: 1rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.5);
  font-weight: 700;
  transition: background-color 0.3s ease;
}
.live-button:hover {
  background-color: #6b21a8;
}

/* Twitch лого в бутона */
.twitch-logo {
  height: 2.75rem; /* 44px */
  width: 2.75rem;
  margin-right: 0.75rem;
}

/* Мигаща червена точка */
.live-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #ff0000;
  border-radius: 50%;
  animation: blink 1.2s infinite;
  margin-right: 0.25rem;
}

@keyframes blink {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

/* Профилна снимка в основното съдържание */
.profile-pic {
  width: 8rem; /* 128px */
  height: 8rem;
  border-radius: 9999px;
  border: 4px solid white;
  box-shadow: 0 0 15px rgba(0,0,0,0.8);
  margin: 0 auto;
}

/* Заглавие на социални мрежи */
.section-title {
  background-color: rgba(0,0,0,0.8);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0,0,0,0.8);
  border: 1px solid #374151;
  display: inline-block;
}

/* Интро текст */
.intro {
  background-color: rgba(0,0,0,0.8);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0,0,0,0.8);
  border: 1px solid #374151;
  margin-top: 1rem;
  line-height: 1.5;
  font-size: 1.125rem;
  font-weight: 500;
}

/* Контейнер на линковете */
.links {
  margin-top: 2rem;
}

/* Общ стил за линковете */
.btn {
  display: block;
  width: 100%;
  padding: 0.75rem 0;
  border-radius: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* Цветове за всяка социална мрежа */
.btn-youtube {
  background-color: white;
  color: #2563eb; /* blue-700 */
}
.btn-youtube:hover {
  background-color: #bfdbfe; /* blue-100 */
}

.btn-twitch {
  background-color: white;
  color: #7c3aed; /* purple-700 */
}
.btn-twitch:hover {
  background-color: #ddd6fe; /* purple-100 */
}

.btn-instagram {
  background-color: white;
  color: #db2777; /* pink-600 */
}
.btn-instagram:hover {
  background-color: #fed7e2; /* pink-100 */
}

.btn-tiktok {
  background-color: white;
  color: black;
}
.btn-tiktok:hover {
  background-color: #e5e7eb; /* gray-200 */
}

.btn-x {
  background-color: white;
  color: #374151; /* gray-800 */
}
.btn-x:hover {
  background-color: #f3f4f6; /* gray-100 */
}
.social-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 8px;
}
.youtube-icon {
  width: 28px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
}

.header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid #4b5563;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  z-index: 50;
  box-sizing: border-box;
}

.header-left,
.header-center,
.header-right {
  display: flex;
  align-items: center;
}

.header-left {
  flex: 1;
}

.header-center {
  flex: 1;
  justify-content: center;
  gap: 2rem;
}

.header-right {
  flex: 1;
  justify-content: flex-end;
  gap: 1rem;
}

/* Лого */
.logo {
  height: 40px;
  width: 40px;
  border-radius: 9999px;
  border: 2px solid white;
  box-shadow: 0 0 10px rgba(255 255 255 / 0.3);
}

/* Навигационни линкове */
.nav-link {
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #9f7aea; /* лилаво */
}

/* Език */
.language-dropdown {
  position: relative;
}

.language-btn {
  background: transparent;
  border: none;
  color: white;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
  gap: 0.25rem;
}

.flag-icon {
  height: 24px;
  width: 24px;
  border-radius: 3px;
}

.arrow-icon {
  height: 16px;
  width: 16px;
  fill: white;
}

.language-menu {
  position: absolute;
  top: 110%;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 0.375rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  min-width: 100px;
  z-index: 100;
}

.language-menu.hidden {
  display: none;
}

.language-option {
  padding: 0.5rem 1rem;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
}

.language-option:hover {
  background: #9f7aea;
  cursor: pointer;
}

.flag-icon-small {
  height: 18px;
  width: 18px;
  border-radius: 3px;
}

/* LIVE бутон */
.live-button {
  background-color: #7c3aed; /* лилаво */
  color: white;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  box-shadow:     
    0 2px 4px rgba(124, 58, 237, 0.5),
    0 0 10px rgba(124, 58, 237, 0.7);
  transition: background-color 0.3s ease;
}

.live-button:hover {
  background-color: #6b21a8;
}

.live-icon {
  height: 28px;
  width: 28px;
}

.live-dot {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: #e0245e;
  animation: blink 1.5s infinite;
  box-shadow: 0 0 10px #e0245e;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}
.nav-link {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 2px solid white;
  border-radius: 0.75rem;
  background-color: transparent;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.nav-link:hover {
  background-color: #7c3aed;
  color: white;
  border-color: #7c3aed;
}
.nav-icon {
  width: 20px;      /* размер на иконата */
  height: 20px;
  vertical-align: middle;
  margin-right: 6px; /* разстояние между иконата и текста */
}
.nav-link {
  display: inline-flex;
  align-items: center;
  background-color: rgba(127, 90, 230, 0);
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.nav-link:hover {
  background-color: rgba(127, 90, 230, 1);
}
/* Стил за заглавията */
.heading-large-stroke {
  font-size: 6rem;
  font-weight: 700;
  color: white;
  -webkit-text-stroke: 1px black; /* контур за уебкит базирани браузъри */
  text-shadow: 1px black;         /* стандартен контур (за бъдещи браузъри) */
  text-align: center;
  margin-bottom: 0rem;
  font-family: 'Orbitron', sans-serif;
}
.watermark {
  position: fixed;
  bottom: 10px;
  left: 10px; /* тук сложи в ляво */
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: bold;
  pointer-events: none;
  user-select: none;
  z-index: 1000;
  font-family: 'Aerial', sans-serif;
}
.social-button {
  display: block;
  width: 100%;
  height: 60px;
  margin-bottom: 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.social-button:hover {
  transform: scale(1.05);
}

/* Индивидуални изображения */
.youtube-button {
  background-image: url('youtubebanner.png');
}

/* Индивидуални изображения */
.bwin-button {
  background-image: url('bwinpoker.png');
}

.twitch-button {
  background-image: url('twitch.png');
}

.instagram-button {
  background-image: url('instagrambanner.png');
}

.tiktok-button {
  background-image: url('tiktok.png');
}

.x-button {
  background-image: url('x.png');
}

.discord-button {
  background-image: url('discordbanner.png');
}
.social-button:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
}
.site-footer {
  width: 100%;          /* цяла ширина на видимия прозорец */
  position: fixed;    /* фиксиран, нормално позициониране */
  bottom: 0;             /* няма значение без фиксиране */
  left: 0;
  background-color: #000;
  color: #eee;
  padding: 1rem 2rem;
  font-weight: bold;
  font-size: 1rem;
  text-align: left;
  user-select: none;
    margin-top: 7px; 
  box-shadow: 0 -2px 5px rgba(0,0,0,0.5);
  display: flex;         /* за да се управлява по-добре съдържанието, ако се наложи */
  align-items: center;   /* вертикално центриране */
}
.custom-border {
  border: 1px solid #4854ff; /* Можеш да смениш цвета */
}
.custom-image {
  position: absolute;
  left: 55%; /* вместо 1694px */
  top: 12%;  /* вместо 82px */
}
@keyframes fadeInGlow {
  0% {
    opacity: 0;
    transform: scale(0.95);
    filter: brightness(0.5) drop-shadow(0 0 0px #bc04d4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1) drop-shadow(0 0 12px #bc04d4);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 0 8px #bc04d4);
    transform: scale(1);
  }
  50% {
    filter: brightness(1.2) drop-shadow(0 0 16px #bc04d4);
    transform: scale(1.05);
  }
}

.floating-image-effect {
  animation: fadeInGlow 1.2s ease-out forwards, pulseGlow 2.5s infinite ease-in-out;
}

/* MOBILNI USTROISTVA */
