

:root {
  --body-bg-color: #000000;
  --body-text-color: #ffffff;
  --heading-color: #ffffff;
  --hero-gradient1: #aea3a3;
  --hero-gradient2: #ffffff;
  --footer-bg-color: #57000063;
  --link-color: #ffffff;
  --header-bg-color: #ffffff;
  --font-family: 'Courier New', Courier, monospace;
  --nav-link-color: #e4e3e2;
  --footer-text-color: #ffffff;
  --header-text-color: #f2f2f2;
}
html {
  overflow-x: hidden;
}



body {
  background-image:  url('/images/lwdlay.webp');
  background-repeat: no-repeat;  
  background-size: cover;          
  background-position: center;       
  background-attachment: fixed;     
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--body-text-color) !important;
}


body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 2, 2, 0); 
  z-index: -1;
}



h1 {
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
    font-weight: 900;               /* много дебели букви */
    color: #ffffff;                 /* бял текст */
    background: rgba(255, 255, 255, 0.05); /* много лек прозрачен фон */
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-block;
    text-shadow:
        0 0 8px rgba(58, 51, 51, 0.6),
        0 0 15px rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(3px);     /* лек стъклен ефект */
    margin-bottom: 25px;
    position: relative;
}

/* декоративна линия отдолу – бяла, неон */
h1::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    margin-top: 10px;
    border-radius: 5px;
    background: #ffffff;
    box-shadow: 
        0 0 10px #131111,
        0 0 18px rgba(75, 71, 71, 0.7);
}

h2, h3 {
    position: relative;
    font-weight: 700;
    color: #ff0000;
    text-shadow: 
        0 0 10px #ff0000,
        0 0 20px #ff6600,
        0 0 35px #ffcc00;
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2rem) !important;
}

h3 {
    font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}

/* Малък декоративен неонов елемент под заглавията */
h2::after,
h3::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    margin-top: 6px;
    border-radius: 4px;
    background: linear-gradient(90deg, #ff0000, #ffcc00);
    box-shadow: 0 0 10px #ff0000, 0 0 20px #ffcc00;
}

p {
  margin-bottom: 0.5rem !important;
}
  
  section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}

h2, h3 {
  color: var(--heading-color) !important;
}



.content-area a {
  color: #ffd600 !important;
  text-decoration: none !important;
}

.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}

  .sidebar-page-list {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
  width: 279px;
}

.sidebar-page-list li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--heading-color);
}

.sidebar-page-list li::marker {
  color: var(--link-color);
  font-size: 1.2em;
}
.sidebar-page-list li:last-child {
  border-bottom: none;
}

.sidebar-page-list li a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--link-color);
}

.sidebar-page-list li a:hover {
  padding-left: 11px;
}
  
.error_page {
  min-height: 70vh;
}


  .footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
}

.footer a {
  text-decoration: none;
  color: var(--link-color) !important;
}
.footer a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}
  .footer img {
        filter: brightness(0) invert(1);
      }

 .navbar {
  background-color: transparent !important;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;

}
.navbar.scrolled {
  background-color: var(--header-bg-color) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-section {
  padding: 155px 0 50px;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}

.hero-section.with-bg {
  background-image: url('/images/tran-danh-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section.with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.384));
  opacity: 0.5;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

  
@media (max-width: 768px) {
  .hero-section {
    padding: 77px 0;
  }
  
}
  .navbar-light .navbar-nav .nav-link {
    color: var(--nav-link-color, #141414) !important;
  }

  .navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}
  /* Mobile nav */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(in srgb, var(--header-bg-color) 65%, transparent);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin: 7px 0;
  }

  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }

  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}


.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}

.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}

.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}

.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}

.dropdown.open .dropdown-menu {
  display: block;
}

@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }

  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}

            


    .contact-container {
  width: 500px;
  margin: 100px auto 35px;
  padding: 15px 21px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  color: black !important;
}

@media screen and (max-width: 768px) {
  .contact-container {
    width: 100%;
    padding: 15px;
  }
}
.contact-header {
  text-align: center;
  margin-bottom: 20px;
}

.contact-header i {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 10px;
}

.email-link {
  display: block;
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  color: #0d6efd;
  text-decoration: none;
}
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--link-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--footer-bg-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--link-color), transparent 20%);
  color: var(--footer-bg-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}




.styled-section {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 20px;
    color: #ff0000;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 20px #F5BB1F, 0 0 40px #ff0000, 0 0 60px #ff0000;
}

.styled-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,0,0,0.2) 0%, transparent 80%);
    animation: floatParticles 15s linear infinite;
    pointer-events: none;
}

.styled-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,0,0.1) 0%, transparent 70%);
    animation: floatParticles 20s linear infinite reverse;
    pointer-events: none;
}

@keyframes floatParticles {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(50px, 50px) rotate(360deg);
    }
}

.styled-section h2, 
.styled-section h3, 
.styled-section p {
    position: relative;
    z-index: 2;
}

.styled-section h2, .styled-section h3 {
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
}

.styled-section p {
    color: #ee975d;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffaf6e;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    overflow: hidden;
}

.styled-table th {
    background: rgba(255, 255, 0, 0.2);
    text-align: left;
    padding: 12px 15px;
    font-weight: bold;
    text-shadow: 0 0 5px #ff0000;
}

.styled-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255,255,0,0.2);
}

.styled-table tr:nth-child(even) {
    background: rgba(255, 255, 0, 0.05);
}

.styled-table tr:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

.styled-table th:first-child {
    border-top-left-radius: 12px;
}
.styled-table th:last-child {
    border-top-right-radius: 12px;
}


.video-section {
    text-align: center;
    padding: 40px 20px;
}

.video-section h2 {
    color: #ff0000; /* неоново червен заглавие ако искаш */
    margin-bottom: 20px;
}

.video-container {
    position: relative;
    width: 100%;
    margin: 0 auto; /* центриране по хоризонтала */
    padding-bottom: 56.25%; /* 16:9 аспект */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


.disclamer{
  color: #aea3a3;
  font-size: 11px;
}




.styled-ol {
    counter-reset: neon-counter;
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.styled-ol li {
    position: relative;
    margin: 18px 0;
    padding: 12px 20px 12px 55px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    color: #fff4a3;
    font-size: 1.1rem;
    line-height: 1.5;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.styled-ol li:hover {
    transform: translateX(6px);
    box-shadow: 0 0 15px #ff0000, 0 0 25px #ffcc00;
}

.styled-ol li::before {
    counter-increment: neon-counter;
    content: counter(neon-counter);
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: radial-gradient(circle, #ff0000 0%, #ffcc00 80%);
    color: #000;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 12px #ff0000, 0 0 20px #ffcc00;
}
