html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
      scroll-behavior: smooth;

}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

.section {
    position: relative;
    overflow: hidden; /* מבטל גלילה אנכית אם צריך */
}

html, body {
    overflow-x: hidden; /* מבטל גלילה אופקית */
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    position: relative;
}

body {
    background: url(../images/page-bg.jpg) center top no-repeat, url(../images/page-bg-bottom.jpg) center bottom no-repeat;
    width: 100%;
    background-color: #0d0505;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    color: #20162b;
}

a {
    transition: all 0.3s ease;
    color: #fadfdf;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #fadfdf;
}

p {
    margin-bottom: 20px;
}

h1,
h2,
h3 {
    color: #20162b;
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 20px;
}

table {
    width: 100%;
    margin-bottom: 20px;
}
table td {
    border-collapse: collapse;
    padding: 10px;
    border: 1px solid #a8bae3;
}

img {
    max-width: 100%;
}

caption {
    margin-bottom: 15px;
}

.hero-h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 25px;
  text-align: center;
  color: #ffcc00;
  text-shadow: 0 0 15px #000, 0 0 10px #ffcc00;
  margin-bottom: 30px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { text-shadow: 0 0 10px #ffcc00, 0 0 5px #000; }
  50% { text-shadow: 0 0 25px #fff000, 0 0 10px #000; }
  100% { text-shadow: 0 0 10px #ffcc00, 0 0 5px #000; }
    from {
    text-shadow: 0 0 10px #ffcc00, 0 0 20px #000;
  }
  to {
    text-shadow: 0 0 30px #ffd700, 0 0 15px #000;
  }
}

.hero-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #ccc;
  text-align: center;
  margin-bottom: 30px;
}

 /* מוסתר כברירת מחדל */
.platform-support {
  display: none;
}

    .logo-icon {
        margin-left: -80px;
        position: relative;
        top: 10px;
    }
    .logo-icon img {
        transition: 0.3s;
        margin-right: 45px;
    }


/* === Side Navbar - MMO RPG Style === */
.side-navbar {
  position: fixed;
  right: 25px;
  top: 35%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
}

.nav-btn {
  width: 65px;
  height: 65px;
  background: radial-gradient(circle at 30% 30%, #ffcc00, #ff8800);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  position: relative;
  cursor: pointer;
  animation: floatGlow 2s infinite ease-in-out;
}

.nav-btn a {
  color: #111;
  font-size: 24px;
  text-decoration: none;
}

.nav-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #ffd700, 0 0 25px #ff9900;
}

.nav-btn::after {
  content: attr(data-label);
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: 0.3s ease-in-out;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  text-shadow: 0 0 5px #000;
}

.nav-btn:hover::after {
  opacity: 1;
  right: 70px;
}

/* Active Button */
.nav-btn.active {
  background: linear-gradient(145deg, #00f0ff, #0066ff);
  box-shadow: 0 0 20px #00f0ff, 0 0 40px #0077ff;
  transform: scale(1.15);
}

/* Float Animation */
@keyframes floatGlow {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}

.nav-btn img {
  margin-top: 15px;
  width: 120px;
  height: 80px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 5px #000);
}

.nav-btn:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #ffd700);
}

@media (max-width: 1024px) {
    body .uwy.userway_p1 .userway_buttons_wrapper {
        top: 3px !important;
        left: 120px !important;
        z-index: 12 !important;
}
}

 @media (max-width: 768px) {
    body .uwy.userway_p1 .userway_buttons_wrapper {
        top: 3px !important;
        left: 120px !important;
        z-index: 12 !important;
    }
}
        .logo { margin-top: 0; }
    }
    .logo-icon {
        margin-left: -80px;
        position: relative;
        top: 10px;
    }
    .logo-icon img {
        transition: 0.3s;
        margin-right: 45px;
    }
    .download, .register {
    font-family: 'Heebo', sans-serif !important;
    display: inline-block;
    width: 280px;
    padding: 15px 20px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    border: none; /* 🔴 מסיר את המסגרת */
}

/* 🎨 מעבר צבעים חלק */
.download {
    background: linear-gradient(135deg, #ff4b4b, #ff6b6b);
    text-shadow: 0px 0px 10px rgba(255, 50, 50, 0.8);
}

.register {
    background: linear-gradient(135deg, #4b8aff, #6bb6ff);
    text-shadow: 0px 0px 10px rgba(50, 150, 255, 0.8);
}

/* 🖱️ אפקט hover */
.download:hover, .register:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 25px rgba(255, 255, 255, 0.2);
}

.hype-text {
  font-size: 18px;
  color: #ffcc00;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  text-shadow: 0 0 5px #000;
}

.animated-box {
  transition: all 0.5s ease;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.animated-box.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30px); /* תזוזה כלפי מעלה */
}


/* אנימציית ירידה אחת לכולם */
@keyframes dropTogether {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* input, textarea {
  background: #fffeff;
  border: 1px solid #bb99ab;
  color: #20162b;
  padding: 25px 25px;
  position: relative;
  text-align: center;
  font-size: 18px;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  border-radius: 5px;
  transition: 0.3s;
}
input:hover, textarea:hover {
  border: 1px solid #e55454;
  box-shadow: 0px 0px 15px 0px rgba(229, 84, 84, 0.3);
}
input:focus, textarea:focus {
  border: 1px solid #e55454;
  box-shadow: 0px 0px 15px 0px rgba(229, 84, 84, 0.3);
} */

.button {
    transition: all 0.3s ease;
    cursor: pointer;
    background: url(../images/button.png) no-repeat;
    height: 161px;
    width: 430px;
    border: none;
    color: #fdfbfa;
    font-size: 30px;
    text-shadow: 0px 0px 10px rgba(253, 251, 250, 0.5);
    position: relative;
    z-index: 1;
    text-align: center;
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
}
.button:hover {
    filter: drop-shadow(0px 0px 10px rgba(194, 51, 51, 0.4)) brightness(120%);
    color: #fdfbfa;
}

.button {
    display: inline-block;
    text-decoration: none;
    line-height: 161px;
}

.button-small {
    background: url(../images/button-small.png) no-repeat;
    width: 136px;
    height: 70px;
    line-height: 70px;
    color: #efb5fe;
    font-size: 18px;
}

.content-button {
    background: url(../images/button-dark.png) no-repeat;
}
.content-button:hover {
    filter: brightness(120%);
}

:focus {
    outline: none;
}

::-webkit-input-placeholder {
    color: #20162b;
}

::-moz-placeholder {
    color: #20162b;
}

:-moz-placeholder {
    color: #20162b;
}

:-ms-input-placeholder {
    color: #20162b;
}

.newsBlock {
    float: right;
}


.logo {
    margin-top: 45px;
    margin-left: -80px;
    width: 500px;
    filter: brightness(130%) drop-shadow(0 0 15px #ff0000);
    animation: brightnessPulse 3s infinite ease-in-out, floatLogo 6s infinite ease-in-out;
}

/* אפקט מעבר ברייטנס רך וחי */
@keyframes brightnessPulse {
    0% {
        filter: brightness(120%) drop-shadow(0 0 15px #ff0000);
    }
    50% {
        filter: brightness(180%) drop-shadow(0 0 25px #ff4d4d);
    }
    100% {
        filter: brightness(120%) drop-shadow(0 0 15px #ff0000);
    }
}

/* אפקט ריחוף עדין של הלוגו */
@keyframes floatLogo {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}


.wrapper {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.container {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    height: 100%;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.flex-c {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.flex-s {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flex-s-c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.flex-c-c {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.bright:hover {
    filter: brightness(120%);
}

#section0 {
    background: url(../images/main-bg.jpg) center no-repeat;
    background-size: cover;
}

#section1 {
    background: url(../images/news-bg.jpg) center no-repeat;
    background-size: cover;
}

#section2 {
    background: url(../images/rank-bg.jpg) center no-repeat;
    background-size: cover;
}

#section3 {
    background: url(../images/features-bg.jpg) center no-repeat;
    background-size: cover;
}

#section5 {
    background: url(../images/evolution-bg.jpg) center no-repeat;
    background-size: cover;
}

#section6 {
    background: url(../images/fusion-bg.jpg);
    background-size: cover;
}

#section6::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 25%;
  height: 100%;
  background: linear-gradient(to left, rgba(0,0,0,0.7), transparent);
  z-index: 11;
}


#section7 {
    background: url(../images/wings-bg.jpg) center no-repeat;
    background-size: cover;
}

#section8 {
    background: url(../images/monsters-bg.png) center no-repeat;
    background-size: cover;
}

#section4 {
    background: url(../images/media-bg.jpg) center no-repeat;
    background-size: cover;
}
.section {
    transform: scale(1);
}
.section .scroll {
    opacity: 1;
}

.section.active {
    transform: scale(1);
    animation: scale 0.8s linear;
}
.section.active .scroll {
    opacity: 1;
    animation: op 2s linear;
}

@keyframes scale1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes op {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.scroll {
    position: fixed;
    right: 56px;
    top: 200px;
    transition: 5s;
    z-index: 20000;
}
.scroll a {
    display: block;
    color: #fff;
}
.scroll a .scroll-animation {
    width: 22px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 14px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.scroll a .scroll-animation:after {
    content: "";
    position: absolute;
    background-color: #fff;
    left: 50%;
    margin-left: -1px;
    height: 7px;
    width: 2px;
    animation: scroll 2s linear infinite;
}
.scroll a p {
    font-size: 10px;
    position: relative;
    margin-top: 15px;
    transition: 0.3s;
}
.scroll a p:after {
    content: "";
    background: url(../images/down-icon.png) no-repeat;
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    margin-top: 10px;
    height: 6px;
    width: 9px;
    transition: 0.3s;
}
.scroll a:hover p {
    margin-top: 8px;
}
.scroll a:hover p:after {
    margin-top: 5px;
}

@keyframes scroll {
    0% {
        top: -50px;
    }
    100% {
        top: 50px;
    }
}
.scroll-bottom a p:after {
    top: -80px;
    transform: rotate(180deg);
}

.install-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 0 10px;
}

.install-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 26px;
  color: #ffcc00;
  text-shadow: 0 0 10px #000;
  margin: 0;
}
/* מיקום מושלם ליד הסירטון */
.install-steps-container {
  position: absolute;
  bottom: 30px;
  right: -280px;
  width: 250px;
  background: linear-gradient(to bottom, #0e0e0e, #1a1a1a);
  padding: 20px;
  border-radius: 15px;
  border: 2px solid #ffcc00;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
  z-index: 10;
  animation: stepsBounce 0.6s ease forwards;
}

.install-steps-container.hidden {
  display: none;
}

.install-steps-container .step {
  margin-bottom: 20px;
  text-align: left;
  padding: 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 10px rgba(255, 204, 0, 0.1);
  transition: 0.3s ease;
  border-left: 4px solid #ffcc00;
}

.install-steps-container .step:hover {
  transform: scale(1.03);
  background: rgba(255, 204, 0, 0.05);
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
}

.install-steps-container .step h3 {
  color: #ffcc00;
  font-size: 18px;
  margin-bottom: 5px;
  font-family: 'Orbitron', sans-serif;
}

.install-steps-container .step p {
  color: #ccc;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
}



.steps-toggle-btn {
  background: linear-gradient(to right, #ffcc00, #ffaa00);
  color: #000;
  font-weight: bold;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.5);
  transition: 0.3s ease;
}

.steps-toggle-btn:hover {
  background: #ffd700;
  transform: scale(1.05);
  box-shadow: 0 0 20px #ffcc00;
}


.downloads-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 30px 60px;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 5;
}

.tab-download-video {
  width: 100%;
  max-width: 900px;
  height: 300px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
  margin: 30px auto 20px;
  display: block;
  z-index: 4;
}

.downloads-header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 50px;
  padding: 20px 20px 20px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(20, 20, 30, 0.95));
  border: 2px solid #ffcc00;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 204, 0, 0.25);
  animation: fadeGlow 2.5s ease-in-out infinite alternate;
}

.downloads-header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 25px;
  color: #ffcc00;
  text-shadow: 0 0 15px #000, 0 0 25px #ffcc00;
  margin-bottom: 10px;
  animation: glowTitle 3s ease-in-out infinite;
}

.downloads-header p {
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  color: #dddddd;
  max-width: 800px;
  margin: auto;
  line-height: 1.7;
  text-shadow: 0 0 5px #000;
}



.download-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.download-tab-button {
  background-color: #1f1f2e;
  border: 2px solid #444;
  color: #fff;
  padding: 14px 24px;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.download-tab-button.active,
.download-tab-button:hover {
  background-color: #ffcc00;
  color: #000;
  border-color: #ffcc00;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.6);
}

.download-tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.download-tab-content.active {
  display: block;
}

/* כפתור REGISTER NOW */
.button-submit {
  background: linear-gradient(to right, #ff9900, #ffd500);
  color: #000;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 35px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 204, 0, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: 1px 1px #fff;
}
.button-submit:hover {
  background: linear-gradient(to right, #ffaa00, #ffee00);
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255, 180, 0, 0.8);
}

/* קופסאת הרשמה */
.download-box {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 0 40px rgba(255, 204, 0, 0.25), inset 0 0 10px rgba(255,255,255,0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease-in-out;
}
.download-box:hover {
  box-shadow: 0 0 45px rgba(255, 204, 0, 0.4);
}

/* Having Error Box */
.error-box {
  background: linear-gradient(145deg, rgba(30, 30, 40, 0.85), rgba(10, 10, 20, 0.95));
  border-radius: 18px;
  padding: 40px 30px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 30px rgba(255, 204, 0, 0.3);
  color: #eee;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.error-box h2 {
  color: #ffcc00;
  font-size: 28px;
  margin-bottom: 15px;
}
.error-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}
.error-box a.download-btn {
  margin-top: 20px;
  background: #ffcc00;
  color: #000;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}
.error-box a.download-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 150, 0, 0.6);
}

.download-tab-content {
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


.download-box h2 {
  color: #ffcc00;
  margin-bottom: 20px;
  font-size: 26px;
}

.download-box p {
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
}

.download-btn {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(to right, #ff6600, #ffcc00);
  color: #000;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
  transition: 0.3s ease;
}

.download-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #ff6600;
}

.multi-links {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.multi-links a {
  padding: 10px 24px;
  background-color: #1f1f2e;
  color: #fff;
  border: 2px solid #ffcc00;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
  text-decoration: none;
}

.multi-links a:hover {
  background-color: #ffcc00;
  color: #000;
  box-shadow: 0 0 15px #ffcc00;
}

.update-log {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  margin-top: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.update-log h3 {
  color: #ffcc00;
  font-size: 22px;
  margin-bottom: 15px;
}

.update-log ul {
  list-style: none;
  padding-left: 0;
}

.update-log ul li {
  padding-left: 28px;
  margin-bottom: 10px;
  position: relative;
  font-size: 16px;
  color: #eee;
}

.update-log ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #00ff99;
  font-weight: bold;
}

.rightInfo {
    position: fixed;
    z-index: 2;
    right: 16px;
    top: 260px;
    display: none;
}
.rightInfo-block {
    position: relative;
    width: 150px;
    padding: 25px 0px;
    background: rgba(5, 13, 27, 0.8);
    text-align: center;
    margin: 0 auto;
    margin-bottom: 15px;
    font-family: [OpenSans];
}
.rightInfo-block::before {
    position: absolute;
    content: "";
    display: block;
    width: 48px;
    height: 48px;
    left: -15px;
    top: 50%;
    margin-top: -25px;
    border-radius: 50%;
    background: #050d1b;
    border: 2px solid #b25db2;
}
.rightInfo-block:first-of-type::before, .rightInfo-block:nth-child(2)::before {
    background: #050d1b url(../images/rightInfo-icons.png) center 14px no-repeat;
}
.rightInfo-block:last-of-type::before {
    background: #050d1b url(../images/rightInfo-icons.png) center -45px no-repeat;
}
.rightInfo-block p {
    margin-bottom: 10px;
}
.rightInfo-online {
    font-size: 14px;
    color: #fff;
}
.rightInfo-online p {
    font-size: 24px;
    color: #8bfdfe;
}
.rightInfo-time {
    font-size: 28px;
    color: #ff3a30;
    display: none;
}
.rightInfo-time p {
    font-size: 14px;
    color: #fff;
}
.rightInfo-time_your {
    margin-bottom: 50px;
}

.menuBlock {
    position: fixed;
    width: 100%;
    height: 85px;
    top: 0;
    left: 0;
    z-index: 3;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 1);
    background: url(../images/menu-bg.png) repeat-x;
}

.menuContainer-1 {
    justify-content: space-between;
    align-items: center;
}

.menuContainer-1:before {
    content: "";
    position: absolute;
    width: 100vw;
    height: 90px;
    top: 85px;
    left: 0;
}

.menuContainer {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menuContent {
    z-index: 2;
}

.menuContent ul {
    display: flex;
    align-items: center;
}
.menuContent ul li {
    margin: 0px 10px;
    transition: 0.3s;
}
.menuContent ul li a {
    display: block;
    height: 85px;
    line-height: 85px;
    color: #fff;
    font-size: 18px;
    padding: 0px 65px;
    position: relative;
    white-space: nowrap;
	text-shadow: 0px 0px 5px black;
}
.menuContent ul li a:before {
    content: "";
    width: 71px;
    height: 73px;
    background: url(../images/menu-point.png) no-repeat;
    position: absolute;
    left: -9px;
    top: 14%;
}
.menuContent ul li a:hover:before {
    background: url(../images/menu-point.png) no-repeat;

}
.menuContent ul li a.show:before {
    background: url(../images/menu-point.png) no-repeat;

}
.menuContent ul li a.show {
    color: #8ff7ff;
    background: #111f37;
}
.menuContent ul li a:hover {
    color: #8ff7ff;
    background: #111f37;
	text-shadow: 0px 0px 5px red;
}
.menuContent ul li ul {
    position: absolute;
    width: 100vw;
    left: 0;
    background: #050d1b;
    display: none;
    text-align: center;
}
.menuContent ul li ul li {
    display: inline-block;
}
.menuContent ul li ul li a {
    font-size: 18px;
}
.menuContent ul li ul li a:before {
    display: none;
}
.menuContent ul li ul li:hover {
    background: rgba(72, 19, 19, 0.6);
    color: #fff;
    text-shadow: 0px 0px 30px rgba(249, 63, 63, 0.9);
}
.menuContent ul li ul li:hover a {
    color: #fff;
}

.menuContent .active a {
    background: #050d1b;
    color: #ffffff;
    text-shadow: 0px 0px 30px rgba(249, 63, 63, 0.9);
}
.menuContent .active a:before {
    background: url(../images/menu-point.png) no-repeat;
}

.dropdown-menu a:after {
    content: "";
    background: url(../images/drop-down-icon.png) no-repeat;
    width: 11px;
    height: 7px;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -3px;
}
.dropdown-menu ul li a:after {
    display: none;
}

.dark-button {
    position: relative;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    height: 84px;
    width: 350px;
    padding-top: 30px;
    cursor: pointer;
    text-align: center;
}
.dark-button:hover {
    -webkit-filter: brightness(140%);
    filter: brightness(140%);
    background: rgba(80, 31, 55, 0.5);
    text-shadow: red 0px 0px 5px;
    border-radius: 5px;
    color: #fff;

}

.dark-button:before {
    content: "";
    top: 15px;
    left: 50px;
    position: absolute;
    background: url(../images/button-login-img.png) no-repeat;
    width: 47px;
    height: 47px;
    border: 2px solid#342f43;
    border-radius: 50%;
}

.login {
    text-transform: uppercase;
    padding-left: 10px;
}

.homeBlock {
    text-align: center;
    position: absolute;
    width: 100%;
    z-index: 200;
    top: 550px;
}

.homeButton {
    display: flex;
    justify-content: center;
}
.homeButton a {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    width: 456px;
    height: 207px;
    text-transform: uppercase;
    font-size: 36px;
    letter-spacing: 2px;
}
.homeButton a:hover {
    filter: brightness(120%);
}
.homeButton a span {
    display: block;
    width: 100%;
    font-size: 14px;
    letter-spacing: normal;
    text-transform: none;
    margin-top: 8px;
}
.homeButton .download {
    background: url(../images/button.png) no-repeat;
    text-shadow: 0px 0px 20px #ff6b6b;
    background-size: cover;
}

 .download-m {
    background: url(../images/button.png) no-repeat;
    text-shadow: 0px 0px 20px #ff6b6b;
    background-size: cover;
    display: none;
}

.homeButton .register {
    background: url(../images/button-dark.png) no-repeat;
    text-shadow: 0px 0px 20px #ec6bff;
    background-size: cover;
}
.social {
    display: flex;
    justify-content: center;
}

.social a {
    padding-top: 12px;
    width: 70px;
    height: 70px;
    background-color: rgb(5 13 27 / 0.2);
    transition: all 0.3s ease;
}

.social a:hover {
    margin-top: -7px;
    transition: all 0.3s ease;
    background-color: rgb(5 13 27 / 0.4);
}

.social span {
    margin-right: 40px;
}
.fp-tableCell {
    display: block;
}

.fp-tableCell:first-child .container {
    padding-top: 50px;
}

.block {
    width: 100%;
    max-width: 640px;
    padding-top: 140px;
}
@keyframes hoverEffect {
    0% {
        transform: scale(1);
        text-shadow: 5px 5px 5px black;
        color: #fff;
    }
    50% {
        transform: scale(1.1);
        text-shadow: 8px 8px 10px rgba(255, 255, 255, 0.3);
        color: #ffcc00;
    }
    100% {
        transform: scale(1);
        text-shadow: 5px 5px 5px black;
        color: #fff;
    }
}

.block h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 60px;
    color: #fff;
    position: relative;
    margin-left: 50px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0px;
    text-shadow: 5px 5px 5px black;
    transition: all 0.3s ease-out;
}

.block h1:hover {
    animation: hoverEffect 1.2s ease-in-out infinite;
}

.block h1 span {
    font-size: 36px;
}

.swiper-container {
    width: 100%;
    height: 100%;
    margin-left: 0px;
}

.swiper-slide {
    display: flex;
    background: #251521;
}
.swiper-slide img {
    display: block;
    max-height: 250px;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    width: auto;
    padding-left: 20px;
    padding-bottom: 5px;
}

.swiper-pagination-bullet {
    width: 25px;
    height: 4px;
    border-radius: 6px;
    background: #9f0707;
    opacity: 0.2;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #9f0707;
}

.newsTabBlock {
    background: #250d21;
    padding: 30px 0;
    width: 100%;
    position: relative;
    z-index: 10;
}

.newsTabs {
    display: flex;
    padding: 0 30px;
}
.newsTabs a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 30%;
    color: #8e4b83;
    font-size: 18px;
    background: #0f050d;
    cursor: pointer;
    margin-right: 1px;
    font-weight: 400;
}
.newsTabs a:hover {
    color: #fff;
    background: #000;
    text-shadow: 0px 0px 14px #000;
}
.newsTabs a.active {
    color: #fff;
    background: #000;
    text-shadow: 0px 0px 14px #000;
}
.newsTabs a:last-child {
    width: 10%;
    color: #fff;
    font-size: 22px;
    border-right: 0px;
}
.newsTabs a:last-child:hover {
    color: #fff;
}

.newstabsBlock {
    padding: 15px 0;
    display: none;
}
.newstabsBlock.active {
    display: block;
    animation: opas 0.5s linear;
}

@keyframes opas {
    0% {
        display: block;
        opacity: 0;
    }
    100% {
        display: block;
        opacity: 1;
    }
}
.color-red {
    color: #fa1b24;
}

.color-blue {
    color: #3da6f0;
}

.color-purple {
    color: #dd3df0;
}

.news {
    border-bottom: 1px dotted rgba(255, 255, 255, 0.08);
    height: 60px;
    margin: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
}
.news:hover {
    margin: 0px 10px 0px 10px;
    padding: 0 50px;
    background: rgba(0, 0, 0, 0.3);
}
.news a {
    color: #fff;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 5px;
}
.news-date {
    color: #a7789f;
    font-size: 14px;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.modal-event .modal-div {
    max-width: 830px;
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
    min-height: 510px;
}
.modal-event .modalCastle,
.nextBattle {
    background: #1c2b5a;
}
.modal-event .modalTitle h2 {
    color: white !important;
}
.nextBattle-div p {
    color: #c7c7c7 !important;
}
.nextBattle-div {
    color: #efefef !important;
}
.modal-event .modalCastle {
    width: 45%;
    background: #122358;
    padding: 35px 50px;
    position: relative;
}

.modal-event .modalContent {
    width: 55%;
    padding: 35px 50px;
}

.modal-event .modalTitle {
    margin-left: -50px;
    margin-right: -50px;
    padding: 0px 50px 20px 50px;
}
.catsleContent {
    text-align: center;
    margin-top: 2rem;
}

.actual-owner {
    color: #bd8888;
    font-size: 14px;
    margin-bottom: 20px;
}

.castl-img {
    margin-bottom: 20px;
}
.castl-img img {
    max-width: 110px;
}

.castl-name {
    color: #e1e1e2;
    font-size: 24px;
    font-weight: 600;
}

.eventsTabsBlock {
    padding-top: 20px;
    display: none;
}
.eventsTabsBlock ul li {
    padding: 10px 35px 10px 10px;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    color: #f8f6f6;
}
.eventsTabsBlock ul li span {
    color: #d2d2d2;
    font-size: 18px;
}
.eventsTabsBlock.active {
    display: block;
    animation: op 0.5s linear;
}

.nextBattle {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #0e1e4e;
    height: 140px;
    width: 100%;

}

.bonus-banner {
  margin-top: 0px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ffd700, #ffb700);
  color: #000;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
  animation: pulse 2.5s infinite;
}

.bonus-icon {
  width: 30px;
  height: 30px;
  vertical-align: middle;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.glass-card {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  margin: 20px auto;
  max-width: 800px;
  color: #fff;
  box-shadow: 0 0 30px rgba(0,0,0,0.4);
  animation: fadeIn 1s ease;
}
.card-icon {
  width: 24px;
  margin-right: 8px;
  vertical-align: middle;
}
.glass-card h2 {
  font-size: 20px;
  color: #ffd700;
  margin-bottom: 15px;
}
.glass-card p {
  font-size: 15px;
  line-height: 1.6;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

.feature-sidebar {
  position: absolute;
  top: unset;
  padding-top: 0%; 
  right: -220px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 5;
  font-family: 'Heebo', sans-serif;
  text-align: left;
  
}

.feature-box {
  background: rgba(0,0,0,0.5);
  border-radius: 15px;
  padding: 15px 25px;
  max-width: 280px;
  color: #fff;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
    opacity: 0;
  transform: translateY(-60px);
  animation: dropTogether 0.8s ease-out forwards;
}

.feature-box:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(255,255,255,0.3);
}

/* כשנעלמות */
.feature-sidebar.hidden .feature-box {
  opacity: 0 !important;
  transform: translateY(-30px);
  transition: all 0.4s ease-in-out;
}

.feature-title {
  font-size: 18px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-title.green { color: #00ffd5; }
.feature-title.gold { color: #ffae00; }
.feature-title.red { color: #ff4b4b; }

.feature-text {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}

.feature-box .icon {
  width: 60px;
  vertical-align: middle;
}

.feature-box.green {
  border-color: rgba(0, 255, 213, 0.5);
  box-shadow: 0 0 15px rgba(0, 255, 213, 0.3);
}

.feature-box.gold {
  border-color: rgba(255, 174, 0, 0.5);
  box-shadow: 0 0 15px rgba(255, 174, 0, 0.3);
}

.feature-box.red {
  border-color: rgba(255, 75, 75, 0.5);
  box-shadow: 0 0 15px rgba(255, 75, 75, 0.3);
}

.nextBattle-div {
    color: #bd8888;
    font-size: 16px;
    text-align: center;
}
.nextBattle-div p {
    color: #ff7474;
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 0px;
}
.blockTitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    margin-top: 35px;
}

.rankBlock {
    max-width: 600px;
    position: relative;
    z-index: 10;
}
.rankBlock h1 {
    margin-left: 22px;
}

.topBlock {
    position: relative;
    background: #0b1332;
}

.topBlock::after {
    position: absolute;
    right: 0;
    top: -50px;
    content: "";
    width: 536px;
    height: 358px;
    background: url("../images/top-players-icon.png") 0 0 no-repeat;
    background-size: cover;
    z-index: 3;
}

.topTabBlock {
    position: relative;
    z-index: 4;
}

.topTabs {
    display: flex;
    padding: 40px;
}
.topTabs a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    width: 170px;
    color: #528e9d;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    font-weight: 400;
}
.topTabs a:hover {
    color: #fff;
    background: #000;
    text-shadow: 0px 0px 14px #000;
}
.topTabs a.active {
    color: #fff;
    background: #000;
    text-shadow: 0px 0px 14px #000;
}

.toptabsBlock {
    display: none;
}

.toptabsBlock.active {
    display: block;
    animation: opas 0.5s linear;
}

.top-list {
    color: #f7ddbf;
    font-size: 16px;
}

.top-list li {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #1b2a58;
    margin: 0 40px;
    transition: all 0.3s ease;
}

.top-list li:not(.head-list):hover {
    padding: 15px 40px;
    margin: 0;
    background: #0b1a53;
    text-indent: -10px;
}

.top-list .head-list {
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 20px;
    border-bottom: none;
}

.top-list li span {
    display: block;
    width: 25%;
}

.top-list li span:nth-of-type(2) {
    width: 50%;
}

.top-list li span:last-of-type {
    text-align: right;
}

.xbuttons {
    padding: 45px;
    padding-top: 25px;
    justify-content: flex-start;
}

.xbuttons button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 45px;
    background: #040814;
    color: #98e0e5;
    border: none;
    margin-right: 2px;
    transition: all 0.3s ease;
}

.xbuttons button:hover {
    color: #fff;
    box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.5);
}


/* בלוק המשחק */
.gameBlock2 {
    background: linear-gradient(135deg, rgba(50, 10, 60, 0.8), rgba(20, 20, 40, 0.9));
    border-radius: 10px;
    padding: 55px 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    min-height: auto; /* מונע גובה קבוע גדול מדי */
    margin-top: 80px; /* מרחיק את הבלוק מה-NavBar */
}

/* כותרת הבלוק */
.gameBlock2 .blockTitle h1 {
    font-size: 35px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    color: #fff;
    text-align: center;
    margin: auto;
}

.gameBlock2 h2, 
.gameBlock2 h3 {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}

.gameBlock2 h2 span, 
.gameBlock2 h3 span {
    color: #a85af5;
}

/* תיבת המדיה */
.gameBlock2 .media {
    position: relative;
    margin-top: 20px;
}

iframe {
    max-width: 100%;
    height: auto;
    width: 100%;
    z-index: 9999; /* הגבוה ביותר */
    pointer-events: auto; /* מבטיח שה-iframe יהיה לחיץ */
    position: relative;
}


/* סרטון */
.gameBlock2 iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease-in-out;
}

.gameBlock2 iframe:hover {
    transform: scale(1.03);
}

/* תוכן נוסף מתחת לסרטון */
.gameBlock2 .description {
    margin-top: 20px;
    padding: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.gameBlock2 .description ul li::before {
    content: "★";
    color: #a85af5;
    margin-right: 10px;
    font-weight: bold;
    font-size: clamp(14px, 2vw, 22px);
    display: inline-block;
}


.gameBlock {
    max-width: 600px;
    position: relative;
    z-index: 10;
}

.marketBlock {
    max-width: 600px;
    float: right;
    position: relative;
    z-index: 10;
}

.more-btn {
    width: 125px;
    height: 50px;
    background: rgba(4, 9, 21, 0.8);
}

.more-btn:hover {
    background: #040814;
    box-shadow: 0 10px 20px 0 rgb(0 0 0 / 0.7);
}

.goods {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}

.goodBlock {
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.3);
    width: calc(50% - 16px);
    margin: 8px;
    position: relative;
    display: block;
    background: radial-gradient(#3c2a1d 0%, #2a1420 50%, #250d21 100%);
    overflow: hidden;
    height: 280px;
    transition: all 0.5s linear;
}

.goodBlock-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}
.good-info {
    text-align: center;
    font-size: 16px;
    max-width: 70%;
    white-space: nowrap;
    transition: 0.3s;
    margin-bottom: 20px;
}
.title-good {
    font-weight: normal;
    color: #fff;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.good-info .price {
    position: relative;
    color: #c0d107;
}
.coin-icon {
    position: absolute;
    margin-left: 10px;
    width: 15px;
    height: 15px;
    background: url("../images/coin-icon.png") 0 0 no-repeat;
}
.goodBlock-top img {
    display: block;
    transition: all 0.3s ease;
    margin-top: 30px;
}
.goodBlock-bottom {
    height: 60px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 280px;
    background: #010000;
    text-transform: uppercase;
}
.goodBlock:hover .good-info {
    margin-bottom: 60px;
}
.goodBlock:hover img {
    margin-top: 0;
}
.goodBlock:hover .goodBlock-bottom {
    top: 220px;
}

.top-media {
    margin-bottom: 10px;
}

.video-player {
    height: 250px;
    position: relative;
}

.top-media .video-player {
    width: 100%;
    flex-direction: column;
    justify-content: space-around;
    background: url("../images/media-img1.jpg") center 0 no-repeat;
    transition: 0.5s;
}

.bottom-media .video-player {
    width: 49%;
    flex-direction: column;
    justify-content: space-around;

    transition: 0.5s;
}

.bottom-media .video-player:first-of-type {
    background: url("../images/media-img2.jpg") center 0 no-repeat;
}

.bottom-media .video-player:last-of-type {
    background: url("../images/media-img3.jpg") center 0 no-repeat;
}

.video-player .title-video {
    position: absolute;
    bottom: 16px;
    opacity: 0;
    transition: 0.3s;
    color: #fff;
}

.video-player:hover {
    box-shadow: inset 0 -60px 40px -40px #000;
}

.video-player:hover .title-video {
    opacity: 1;
}

.video-player .start-video {
    position: absolute;
    top: calc(50%-40px);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    transform: rotate(90deg);
    font-size: 50px;
    background: none;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50%;
    transition: 0.5s;
    padding: 0;
    padding-bottom: 10px;
}

.video-player .start-video:hover {
    border: 1px solid #ccc;
    color: #ccc;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 1000;
}

#overlay.active {
    display: block;
}

#video_popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* מבטיח שהחלון תמיד באמצע */
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    text-align: center;
    z-index: 1001;
    display: none;
}

#video_popup.active {
    display: block;
}

#video_iframe {
    width: 100%;
    height: 450px;
    display: block;
}


.copyright {
    color: #fff;
    font-size: 16px;
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 60px;
    line-height: 1.4;
    position: relative;
    z-index: 11;
    top: 60px;
}

.copyright a {
    color: #86f9fa;
}

.copyright p {
    color: #82abe0;
    margin-top: 10px;
}

.modal_div {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    opacity: 0;
    z-index: 999;
}
.modal_div {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.9);
  z-index: 9999;
  display: none;
}

.modal-div {
  background: linear-gradient(145deg, rgba(18, 18, 18, 0.95), rgba(34, 34, 34, 0.95));
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  max-width: 480px;
  width: 90%;
  margin: 5% auto;
  padding: 30px;
  color: #fff;
  font-family: 'Heebo', sans-serif;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.modal_close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 28px;
  color: #ffc107;
  cursor: pointer;
  transition: 0.3s;
}

.modal_close:hover {
  color: #fff;
  text-shadow: 0 0 10px #ffc107;
}

.modalTitle {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.modalTitle h2 {
  font-size: 24px;
  font-weight: 700;
  color: #ffdd57;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255, 221, 87, 0.6);
  margin: 0;
}

.class-list {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.class-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 15px;
  border-radius: 12px;
  border-left: 4px solid #ffc107;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s;
}

.class-box:hover {
  background: rgba(255, 255, 255, 0.07);
}

.class-box span:first-child {
  font-weight: bold;
  font-size: 16px;
  color: #ffdd57;
}

.class-box span:last-child {
  font-size: 14px;
  color: #ccc;
}


#overlay {
    z-index: 998;
    position: fixed;
    background-color: #0f0f0f;
    opacity: 0.8;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    display: none;
}

.modal-form {
    padding: 30px 55px 0px 55px;
}

.modal-form p {
    position: relative;
}
.modal-form p::before {
    content: "";
    position: absolute;
    width: 36px;
    height: 36px;
    border: 1px solid #1c2b5a;
    border-radius: 50%;
    left: -18px;
    top: 12px;
}
.modal-form p.username::before {
    background: #0b1332 url("../images/register&login-icons.png") center 8px no-repeat;
}
.modal-form p.email::before {
    background: #0b1332 url("../images/register&login-icons.png") center -22px no-repeat;
}
.modal-form p.password::before {
    background: #0b1332 url("../images/register&login-icons.png") center -58px no-repeat;
}

.modal-form input {
    width: 100%;
    background: #0b1332;
    box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: #fff;
    font-size: 16px;
    padding: 22px 30px;
    border: none;
}

.modal-form input::-webkit-input-placeholder {
    color: #fff;
}
.modal-form input::-moz-placeholder {
    color: #fff;
}
.modal-form input:-moz-placeholder {
    color: #fff;
}
.modal-form input:-ms-input-placeholder {
    color: #fff;
}

.enter-button {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.enter-button button {
    width: 100%;
    max-width: 290px;
    background: url("../images/button-dark.png") center no-repeat;
    background-size: cover;
    height: 130px;
    font-size: 24px;
    border: none;
    color: #fff;
}

.enter-button button:hover {
    -webkit-filter: brightness(140%);
    filter: brightness(140%);
}

.form-links {
    text-align: center;
    font-size: 18px;
    color: #fff;
    padding: 0px 55px 20px 55px;
}

.form-links .rules {
    color: #0b94ff;
    text-decoration: underline;
}

.button-btn {
    position: relative;
    z-index: 3;
    display: none;
}
.button-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    margin: 5px 0px;
}

.events-list {
    padding: 30px 40px;
    font-size: 16px;
    color: #fff;
}

.events-list li {
    padding: 10px 0;
}

.events-list li p {
    margin-bottom: 3px;
}

.events-list .starts-in {
    color: #bd52f1;
}

.events-list .time-before-event {
    color: #ff003c;
}

header {
    height: 600px;
    position: relative;
}

.page-logo {
    position: relative;
    top: 45%;
    width: 500px;
    text-align: center;
    filter: brightness(120%);
    margin: 0 auto;
}

.page-logo a:hover {
    filter: brightness(140%);
}

.wrapper {
    position: relative;
}

.contentWrapper {
    position: relative;
    z-index: 1;
}

.contentWrapper-title {
    background: linear-gradient(to right, #0a0a0a, #1c2b5a, #0a0a0a);
    padding: 60px 40px;
    text-align: center;
    border-top: 4px solid #ffcc00;
    border-bottom: 4px solid #ffcc00;
    box-shadow: 0 0 60px rgba(255, 204, 0, 0.3), 0 0 20px #000 inset;
    position: relative;
    z-index: 11000;
    border-radius: 16px 16px 0 0;
}

.contentWrapper-title h1 {
    margin: 0;
    color: #ffcc00;
    font-size: 42px;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 0 12px #000, 0 0 8px rgba(255, 204, 0, 0.5);
    position: relative;
    z-index: 2;
}


.content {
    background: linear-gradient(to bottom, #0a0a0a 0%, #111e3c 100%);
    padding: 60px;
    margin-bottom: 100px;
    color: #fff;
    font-size: 16px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.6) inset;
    z-index: 10000;
    position: relative;
}

.content h2 {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    text-shadow: 0px 0px 1px yellow;
    margin-bottom: -40px;
}
.content h3 {
    font-weight: 600;
    margin-bottom: 30px;
}
.content a:hover {
    text-decoration: none;
}
.content .date {
    font-size: 18px;
    margin-top: 50px;
}
.content .date span {
    font-size: 30px;
}

.button-to-the-top {
    position: absolute;
    bottom: -50px;
    left: 50%;
    margin-left: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #d6e8ff url("../images/to-the-top-icon.png") center 60px no-repeat;
    z-index: 0;
    transition: 0.3s;
}

.button-to-the-top:hover {
    box-shadow: 0 0 10px 0 #000;
    background-color: #d3e5fd;
}

.content-download {
    text-align: center;
}

.content-download h3 {
    color: #1c2b5a;
}

.content-download a {
    text-decoration: none;
}

.btn-download-file {
    display: block;
    width: 280px;
    height: 124px;
    text-transform: uppercase;
    font-size: 22px;
    background: url("../images/button-dark.png");
    background-size: cover;
    color: #fff !important;
    line-height: 5.6;
    margin: 0 auto 40px auto;
}

.btn-download-file:hover {
    filter: brightness(1.3);
}

.drivers-block {
    margin-top: 40px;
}

.drivers li {
    display: block;
    width: 32%;
}

.chekBlock {
    margin-bottom: 30px;
}

.checkbox {
    display: inline-block;
    padding-left: 35px;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
    user-select: none;
    color: #4c404d;
    font-size: 16px;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: -4px;
    left: 0;
    height: 26px;
    width: 26px;
    background-color: #7e5685;
    border-radius: 50%;
}

.checkbox input:checked ~ .checkmark {
    background-color: #7e5685;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox input:checked ~ .checkmark:after {
    display: block;
}

.checkbox .checkmark:after {
    left: 6px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
}

footer {
    height: 298px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    flex-direction: column;
    padding: 30px;
    margin-top: 140px;
}

.footer-logo {
    display: block;
    width: 100%;
    max-width: 365px;
}

.footer-logo:hover {
    filter: brightness(1.3);
}

footer a {
    color: #86f9fa;
}

footer p {
    color: #f7b7ac;
    margin: 0;
}


/*animation*/

.sparks {
    position: absolute;
    width: 1200px;
    left: 50%;
    margin-left: -800px;
    bottom: 0;
}
.sparks > div {
    position: absolute;
}
.sparks .spark_1 {
    background: url(../images/spark_1.png) no-repeat;
    width: 764px;
    height: 313px;
    right: 0;
    bottom: -320px;
    transform: scale(0.6);
    animation: spark-1 4s linear infinite;
    animation-delay: 1s;
}
@keyframes spark-1 {
    0% {
        bottom: -320px;
        transform: scale(0.6);
        opacity: 1;
    }
    25% {
        bottom: -240px;
        transform: scale(0.7);
        opacity: 1;
    }
    50% {
        bottom: -160px;
        transform: scale(0.8);
        opacity: 1;
    }
    75% {
        bottom: -80px;
        transform: scale(0.9);
        opacity: 0.5;
    }
    100% {
        bottom: 0px;
        transform: scale(1);
        opacity: 0;
    }
}
.sparks .spark_2 {
    background: url(../images/spark_2.png) no-repeat;
    width: 179px;
    height: 335px;
    right: 230px;
    bottom: -320px;
    transform: scale(0.6);
    animation: spark-1 4s linear infinite;
    animation-delay: 2s;
}
.sparks .spark_3 {
    background: url(../images/spark_3.png) no-repeat;
    width: 128px;
    height: 165px;
    right: 280px;
    bottom: -140px;
    transform: scale(0.6);
    animation: spark-3 4s linear infinite;
    animation-delay: 2s;
}
@keyframes spark-3 {
    0% {
        bottom: -140px;
        transform: scale(0.6);
        opacity: 1;
    }
    25% {
        bottom: -80px;
        transform: scale(0.7);
        opacity: 1;
    }
    50% {
        bottom: -20px;
        transform: scale(0.8);
        opacity: 1;
    }
    75% {
        bottom: 40px;
        transform: scale(0.9);
        opacity: 0.5;
    }
    100% {
        bottom: 100px;
        transform: scale(1);
        opacity: 0;
    }
}
.sparks .spark-big {
    background: url(../images/spark_4.png) no-repeat;
    width: 794px;
    height: 176px;
    right: 0;
    bottom: -180px;
    transform: scale(0.6);
    animation: spark-5 4s linear infinite;
}
.sparks .spark_5 {
    animation-delay: 2s;
    right: 40px;
}
@keyframes spark-5 {
    0% {
        bottom: -180px;
        transform: scale(0.6);
        opacity: 1;
    }
    25% {
        bottom: -120px;
        transform: scale(0.7);
        opacity: 1;
    }
    50% {
        bottom: -60px;
        transform: scale(0.8);
        opacity: 1;
    }
    75% {
        bottom: 0px;
        transform: scale(0.9);
        opacity: 0.5;
    }
    100% {
        bottom: 60px;
        transform: scale(1);
        opacity: 0;
    }
}
/*smog*/

.smog {
    position: absolute;
    top: 450px;
    left: 100px;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.smog .num1 {
    -webkit-animation: spreadSmog 7s infinite linear;
    animation: spreadSmog 7s infinite linear;
}
.smog .num2 {
    -webkit-animation: spreadSmog 15s infinite linear;
    animation: spreadSmog 15s infinite linear;
}
.smog .num3 {
    -webkit-animation: spreadSmog 40s infinite linear;
    animation: spreadSmog 40s infinite linear;
}
.smog .num1 {
    bottom: 0;
    left: -677px;
    width: 2354px;
    height: 1300px;
    opacity: 0;
}
.smog i {
    position: absolute;
    display: block;
    background: url(../images/sp_smog.png) no-repeat;
    transform-origin: 50% 100%;
}
.smog .num2 {
    bottom: 0;
    left: -677px;
    width: 2354px;
    height: 1300px;
    opacity: 0;
}
.smog .num3 {
    bottom: 0;
    left: -677px;
    width: 2354px;
    height: 1300px;
    opacity: 0;
}
@keyframes spreadSmog {
    0% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
        opacity: 0;
    }
    45% {
        transform: scale(0.75);
        -webkit-transform: scale(0.75);
        opacity: 1;
    }
    90% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0;
    }
}