* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body{
    font-family: 'Roboto', sans-serif;
    background-color: black;
    background-image: url("../images/background.webp?v=d5f9eb00");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}
a {
  text-decoration: none;
  color: yellow;
}

li {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.main-section{
    padding-top: 80px;
}

.titel h1{
    font-family: 'Bebas Neue', serif;
    font-size: 64px;
    font-weight: 800;
    color: white;
    text-shadow: 1px 1px 2px #000, 0 0 10px #000; 
    text-align: center; 
}
.tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 15px; 
    margin-bottom: 60px;
    text-align: center;
}
.tabs a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  width: 100%;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px); 
  border: 2px solid #4a4a4a;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.9px;
  line-height: 1.2;
  color: white;
  transition: all 0.3s ease;
}

.tabs a:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.tabs a.active {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  color: #ffffff;
}


.about-section{
    padding: 80px 0;
}
.card-boxs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 30px;
   
}

.card{
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    background-color: #111111; 
    border: 3px solid #4a4a4a;
    height: 100%;
}
.card-top img{
    width: 100%;
    height: 200px;
}
.card-bottom{
    text-align: center;
    padding: 16px;
}

.card-info{
    text-align: center;
    font-size: 10px;
    color: white;
    margin-bottom: 10px;
}

h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: white

}
h3 a{
    color: white
}
.promo-box p{
    font-size: 14px;
    margin-bottom: 5px;
}
.grey{
    cursor: pointer;
    color: #4a4a4a;
}
.red{
    color: red;
}
.promo-code{
    position: relative;
    font-family: 'Orbitron', sans-serif;
    width: 100%;
    font-size: 12px;
    background-color: transparent;
    border: 2px solid #4a4a4a;
    color: #D4A017;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
}
.code-to-copy{
    cursor: pointer;
}
.copy-notification{
    position: absolute;
    top: -30px;  
    left: 50%;
    transform: translateX(-50%);
    background: #4caf50;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 10;
}
.bonus-link{
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    background-color: #007BFF;
}
.information-section{
    text-align: center;
    font-size: 20px;
    margin-bottom: 60px;
}
.footer{
    padding: 20px;
    text-align: center;
    background-color: #1a1a1a;
}
.email-wrapper {
    position: relative;
    display: inline-block;
}

.copied-message {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e0e0e0; /* сероватый фон */
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}
.email{
    font-size: 24px;
    margin-bottom: 20px
}

@media screen and (max-width: 1280px) {
    .card-boxs {
        gap: 10px;
    }

}
@media screen and (max-width: 995px) {
    .tabs {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .tabs li{
        width: 80%;
    }
    .card-boxs {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media screen and (max-width: 768px) {
    .titel h1{
    font-size: 48px;
    }
    .card-boxs {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (max-width: 575px){
    .titel h1{
    font-size: 30px;
    }
    .tabs li{
        width: 100%;
    }
    .card{
        border-radius: 15px;
    }
    .card-top img{
        width: 100%;
        height: 120px;
    }
    .card-bottom{
        padding: 10px 10px 20px 10px;
    }
  
    h3{
        font-size: 18px;
        margin-bottom: 5px;
    }
    .promo-code{
        padding: 2px;
        margin-bottom: 5px;
    }
    .bonus-link{
        padding: 2px;
    }

}
/* Phones: fixed backgrounds are unreliable on mobile browsers, so pin the image to the top at screen height */
@media screen and (max-width: 768px) {
    body {
        background-attachment: scroll;
        background-size: auto 100vh;
        background-position: center top;
    }
}

/* Language switcher */
.lang-switch {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 10;
    display: flex;
    gap: 4px;
    padding: 4px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 2px solid #4a4a4a;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.lang-switch a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    color: #cfcfcf;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.lang-switch a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}
.lang-switch a.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}
@media screen and (max-width: 575px) {
    .lang-switch {
        top: 12px;
        right: 50%;
        transform: translateX(50%);
    }
    .lang-switch a {
        min-width: 48px;
        height: 34px;
        font-size: 14px;
    }
}

/* Chinese: Roboto and Bebas Neue have no Chinese glyphs */
html[lang="zh-CN"] body,
html[lang="zh-CN"] .titel h1 {
    font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Hiragino Sans GB", sans-serif;
}
html[lang="zh-CN"] .titel h1 {
    font-weight: 700;
    letter-spacing: 2px;
}

/* Header skins (link to WhiteMarket) - size and spacing scale with screen width */
.titel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 5vw, 110px);
}
.titel h1 {
    flex: 0 1 auto;
}
.hero-skin {
    flex: 0 0 auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.hero-skin img {
    display: block;
    filter: drop-shadow(6px 10px 7px rgba(0, 0, 0, 0.65));
    height: auto;
    object-fit: contain;
    animation: skin-float 5s ease-in-out infinite;
}
.hero-skin-left img { width: clamp(92px, 21vw, 470px); }
.hero-skin-right img { width: clamp(92px, 21vw, 470px); animation-delay: -2.5s; }
.hero-skin:hover {
    transform: scale(1.05);
    filter: brightness(1.12);
}
@keyframes skin-float {
    0%, 100% { transform: translateY(0) rotate(-1.5deg); }
    50% { transform: translateY(-6px) rotate(1.5deg); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-skin img { animation: none; }
}

/* Header layout: skins beside the title on wide screens (1200px+), below it on smaller ones */
.main-section .container {
    max-width: 1800px;
}
@media screen and (min-width: 1200px) {
    .titel h1 {
        flex: 0 0 auto;
        white-space: nowrap; /* only the built-in line break, never squeezed into more lines */
    }
    /* Spanish title is longer: scale it a bit on mid-size desktops so it fits beside the skins */
    html[lang="es"] .titel h1 {
        font-size: min(64px, calc((48vw - 40px) / 12.2));
    }
    html[lang="zh-CN"] .titel h1 {
        font-size: min(64px, calc((48vw - 40px) / 10.2));
    }
}
@media screen and (max-width: 1199px) {
    .titel {
        flex-wrap: wrap;
        column-gap: 80px;
        row-gap: 14px;
    }
    .titel h1 {
        order: -1;
        flex: 1 0 100%;
    }
    .hero-skin-left img { width: 280px; }
    .hero-skin-right img { width: 280px; }
}
@media screen and (max-width: 575px) {
    .titel { column-gap: 40px; row-gap: 10px; }
    .hero-skin-left img { width: 145px; }
    .hero-skin-right img { width: 145px; }
}

@media screen and (max-width: 768px){body{background-image:url("../images/background-mobile.webp?v=2a613f62");}}
