/* Alapbeállítások */
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  background: #000 url('https://blckline.hu/shop/assets/img/BlckLine_Logo1.png') center/cover no-repeat;
  color: white;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
}

/* Füstvideó */
#smoke-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  filter: brightness(1.1) contrast(1.2);
  animation: smoothFade 27s ease-in-out infinite;
}

@keyframes smoothFade {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 0.1;
  }

  20% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.4;
  }

  80% {
    opacity: 0.4;
  }

  95% {
    opacity: 0.1;
  }

  100% {
    opacity: 0;
  }
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: inherit;
  filter: brightness(0.55) blur(8px);
  opacity: 0.85;
  z-index: 0;
}

/* Logó */
.pulse-logo {
  position: fixed;
  top: -10px;
  left: 20px;
  width: 120px;
  z-index: 10;
  animation: pulseGlow 3s infinite ease-in-out;
}

.pulse-logo img {
  width: 100%;
  filter: drop-shadow(0 0 15px #ff3333);
}

@keyframes pulseGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 10px #ff3333);
  }

  50% {
    filter: drop-shadow(0 0 25px #ff3333);
  }
}

/* Header + hamburger */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: transparent;
  backdrop-filter: none;
  z-index: 120;
}


.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger div {
  width: 28px;
  height: 3px;
  background: #ff3333;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger:hover div {
  box-shadow: 0 0 10px #ff3333;
}

#hamburger {
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: fixed;
  top: 18px;
  left: 20px;
  z-index: 150;
}


.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: -70%;
  width: 70%;
  height: 100%;
  background: #0a0a0a;
  flex-direction: column;
  padding-top: 80px;
  transition: left .3s ease;
  z-index: 110;
}

.mobile-menu.active {
  display: flex;
  left: 0;
}

.mobile-menu a {
  padding: 15px 25px;
  border-bottom: 1px solid #ff3333;
  color: #ff3333;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: all .3s;
}

.mobile-menu a:hover {
  color: #fff;
  background: rgba(255, 51, 51, 0.1);
}

#dim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 95;
}

#dim.show {
  opacity: 1;
  pointer-events: auto;
}

/* Tartalom */
.content {
  margin-top: 50px;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeIn 1.8s ease forwards;
  padding: 0 4vw;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content h1 {
  margin-top: 50px;
  font-family: 'Audiowide', cursive;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 0 30px #ff3333;
  display: inline-block;
  position: relative;
}

.line-text {
  color: #000;
  font-weight: 900;
  text-shadow: 0 0 5px #ff3333, 0 0 15px rgba(255, 51, 51, .6), 0 0 30px rgba(255, 51, 51, .3);
  -webkit-text-stroke: .6px #ff3333;
}

.content p {
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  color: #ccc;
  margin-bottom: 40px;
}

table {
  margin: auto
}



/* Főoldali gombok */
.button-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 20px);
  margin-bottom: 40px;
}

.button-container a {
  position: relative;
  padding: 10px 25px;
  border: 2px solid #ff3333;
  border-radius: 8px;
  text-decoration: none;
  color: #ff3333;
  font-weight: 600;
  overflow: hidden;
  transition: all .3s ease;
}

.button-container a:hover {
  color: #fff;
  box-shadow: 0 0 25px #ff3333;
  transform: scale(1.05);
}

/* Szabályok doboz */
.rules-box {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 51, 51, 0.25);
  border-radius: 12px;
  backdrop-filter: blur(4px);
  padding: 22px;
  max-width: 900px;
  margin: 12px auto 26px auto;
  box-shadow: 0 0 25px rgba(255, 51, 51, 0.12);
}

.rules-box td.copyable-rule {
  padding: 10px;
  border-bottom: 1px solid rgba(255, 51, 51, 0.08);
  color: #eee;
  cursor: pointer;
  transition: 0.2s;
}

.rules-box td.copyable-rule:hover {
  color: #ff3333;
  transform: scale(1.02);
}

/* Másolás üzenet */
#success-message {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  padding: 12px 25px;
  border-radius: 8px;
  border: 1px solid #ff3333;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(255, 51, 51, 0.6);
  z-index: 999;
  text-align: center;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 6px 0 30px 0;
}

.pagination a {
  padding: 10px 14px;
  border-radius: 8px;
  border: 2px solid rgba(255, 51, 51, 0.9);
  color: #ff3333;
  text-decoration: none;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.45);
  transition: all .18s ease;
}

.pagination a:hover {
  background: #ff3333;
  color: #000;
  box-shadow: 0 0 15px rgba(255, 51, 51, 0.75);
  transform: translateY(-2px);
}

.pagination a.current {
  background: #ff3333;
  color: #000;
  box-shadow: 0 0 20px rgba(255, 51, 51, 0.9);
}

.footer {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  color: #aaa;
  font-size: 13px;
  font-family: 'Audiowide', cursive;
  z-index: 2;
  background-color: transparent;
}

.footer a {
  color: #ff3333;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (min-width: 769px) {
  header {
    display: none !important;
  }
}

@media (max-width:768px) {
  .hamburger {
    display: flex;
    margin-right: 40px;
  }

  .pulse-logo {
    position: absolute;
    width: 90px;
    top: 14px;
    left: 14px;
  }

  header {
    padding: 12px 26px;
  }

  .content {
    margin-top: 100px;
  }

  .footer {
    position: relative;
    font-size: 12px;
    bottom: 10px;
  }

  .button-container{
    display: none;
  }

  .pagination{
    margin-bottom: 80px;
  }


  
  .no-pagination{
    margin-bottom: 40px !important; 
  }
}

