/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #1a1a1a;
  overflow-x: hidden;
  position: relative;
}

/* Общий фон для всех секций */
.site-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.site-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid #dc143c;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #dc143c;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navigation */
.nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #dc143c;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #dc143c;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Burger Menu */
.burger-checkbox {
  display: none;
}

.burger-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
}

.burger-line {
  position: absolute;
  height: 3px;
  width: 100%;
  background: #dc143c;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.burger-line:nth-child(1) {
  top: 0;
}

.burger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger-line:nth-child(3) {
  bottom: 0;
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
  margin-top: -1.5px;
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(2) {
  transform: scale(0);
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 50%;
  margin-bottom: -1.5px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-top: 2px solid #dc143c;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 1rem;
  color: #ffffff;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: #dc143c;
  color: #ffffff;
}

.cookie-accept:hover {
  background: #b91c3c;
}

.cookie-decline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #dc143c;
}

.cookie-decline:hover {
  background: #dc143c;
}

.cookie-link {
  color: #dc143c;
  text-decoration: none;
  font-size: 0.9rem;
}

.cookie-link:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #dc143c;
  font-weight: 600;
}

.feature-item i {
  font-size: 1.2rem;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(220, 20, 60, 0.3);
}

/* Sections */
section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

section .container {
  position: relative;
  z-index: 2;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(220, 20, 60, 0.5);
}

/* Offers Section */
.offers {
  background: rgba(45, 45, 45, 0.3);
}

.offers-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.offer-card {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid #dc143c;
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
  transition: all 0.3s ease;
}

.offer-card:hover {
  box-shadow: 0 15px 40px rgba(220, 20, 60, 0.4);
  transform: translateY(-5px);
}

.offer-content {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.offer-left {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.offer-logo-link {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.offer-logo-link:hover {
  opacity: 0.8;
}

.offer-logo img {
  max-width: 180px;
  height: auto;
  display: block;
}

.offer-right {
  flex: 1;
}

.offer-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
}

.offer-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.offer-stats-mobile {
  display: none;
}

.stat-item {
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: #cccccc;
  margin-bottom: 0.25rem;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #dc143c;
}

.stat-label {
  font-weight: 400;
}

.stat-value {
  font-weight: 700;
}

.stat-status {
  display: block;
  font-size: 0.9rem;
  color: #28a745;
  font-weight: 600;
}

.payment-methods {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  font-size: 1.5rem;
  color: #cccccc;
}

.offer-text {
  color: #cccccc;
  margin: 1rem 0;
  font-size: 1.1rem;
}

.offer-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #dc143c;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.offer-btn:hover {
  background: #b91c3c;
  box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

/* Reviews Section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid #dc143c;
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.review-rating {
  color: #ffc107;
}

.review-date {
  color: #cccccc;
  font-size: 0.9rem;
}

.review-text {
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.review-author {
  color: #dc143c;
  font-weight: 600;
}

/* Security Section */
.security {
  background: rgba(45, 45, 45, 0.3);
  position: relative;
  z-index: 1;
}

.security-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.security-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.security-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.security .container {
  position: relative;
  z-index: 2;
}

.security-content {
  text-align: center;
}

.security-text {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.certificates {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.certificate-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(220, 20, 60, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #dc143c;
  min-width: 250px;
}

.certificate-item i {
  font-size: 2.5rem;
  color: #dc143c;
}

.certificate-info h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.certificate-info p {
  color: #cccccc;
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid #dc143c;
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.faq-item h4 {
  color: #dc143c;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: #cccccc;
  line-height: 1.6;
}

/* Banners */
.banners {
  background: rgba(45, 45, 45, 0.3);
  padding: 40px 0;
}

.banners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.banner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 200px;
  height: 100px;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}

.banner-item:hover {
  border-color: #dc143c;
  box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
  transform: translateY(-2px);
}

.banner-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.banner-item-no-filter img {
  filter: none;
}

/* Contact Section */
.contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(220, 20, 60, 0.1);
  padding: 1.5rem 2rem;
  border-radius: 10px;
  border: 1px solid #dc143c;
}

.contact-item i {
  font-size: 1.5rem;
  color: #dc143c;
}

.contact-item a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  word-break: break-all;
}

.contact-item a:hover {
  color: #dc143c;
}

/* Footer */
.footer {
  background: #1a1a1a;
  border-top: 2px solid #dc143c;
  padding: 3rem 0 2rem;
}

.footer-content {
  text-align: center;
}

.responsibility {
  margin-bottom: 2rem;
}

.responsibility h4 {
  color: #dc143c;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.responsibility p {
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.legal-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #dc143c;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #333;
}

.age-warning {
  color: #dc143c;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.copyright {
  color: #cccccc;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 900px) {
  .burger-label {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
    overflow-y: auto;
    padding-top: 100px;
  }

  .burger-checkbox:checked ~ .nav {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
  }

  .nav-link {
    font-size: 1.3rem;
    padding: 1rem;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-image {
    display: none;
  }

  .section-title {
    font-size: 2rem;
  }

  .offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
  }

  .offer-left {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .offer-logo {
    margin-bottom: 0;
  }

  .offer-logo img {
    max-width: 120px;
    height: auto;
  }

  .offer-stats-desktop {
    display: none;
  }

  .offer-stats-mobile {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    align-items: center;
  }

  .offer-stats-mobile .stat-item {
    text-align: center;
  }

  .offer-stats-mobile .stat-item {
    text-align: center;
  }

  .offer-stats-mobile .stat-item:first-child {
    margin-bottom: 0.25rem;
  }

  .offer-stats-mobile .stat-item:first-child .stat-label {
    display: block;
    margin-bottom: 0.25rem;
  }

  .offer-stats-mobile .stat-item:first-child .stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
  }

  .offer-stats-mobile .stat-item:nth-child(2),
  .offer-stats-mobile .stat-item:nth-child(3) {
    display: inline-block;
    margin: 0 0.25rem;
    font-size: 0.85rem;
  }

  .offer-stats-mobile .stat-item:nth-child(2) .stat-label,
  .offer-stats-mobile .stat-item:nth-child(3) .stat-label {
    display: inline;
    margin-right: 0.25rem;
  }

  .offer-stats-mobile .stat-item:nth-child(2) .stat-value,
  .offer-stats-mobile .stat-item:nth-child(3) .stat-status {
    display: inline;
    font-weight: 600;
  }

  .offer-right {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .offer-title {
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
  }

  .certificates {
    gap: 1.5rem;
  }

  .certificate-item {
    min-width: auto;
    flex: 1 1 200px;
  }

  .banners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-items: center;
  }

  .banner-item {
    width: 100%;
    max-width: 200px;
    height: 100px;
  }

  .banners-grid .banner-item:nth-child(odd):last-child {
    grid-column: 1 / -1;
    max-width: 200px;
    justify-self: center;
  }

  section {
    padding: 0;
  }

  section:first-of-type {
    padding-top: 120px;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    padding-top: 40px;
  }

  .offers-grid {
    gap: 1rem;
    margin: 0;
  }

  .offer-card {
    padding: 1rem;
    margin: 0;
  }

  .payment-methods {
    font-size: 1.1rem;
    gap: 0.5rem;
    margin: 0.5rem 0;
  }

  .offer-text {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0.5rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .offer-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .legal-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .offer-stats-desktop {
    display: none;
  }

  .offer-stats-mobile {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
    align-items: center;
  }

  .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 200px;
  }

  .payment-methods {
    font-size: 1.1rem;
    gap: 0.5rem;
  }

  .banners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .banner-item {
    width: 100%;
    max-width: 150px;
    height: 75px;
    padding: 0.75rem;
  }

  .banners-grid .banner-item:nth-child(odd):last-child {
    grid-column: 1 / -1;
    max-width: 150px;
    justify-self: center;
  }

  .certificates {
    flex-direction: column;
    align-items: center;
  }

  .certificate-item {
    flex-direction: column;
    text-align: center;
    max-width: 250px;
  }

  .cookie-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cookie-btn {
    width: 200px;
  }

  .offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    align-items: start;
  }

  .offer-left {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .offer-logo img {
    max-width: 100px;
    height: auto;
  }

  .offer-stats-mobile .stat-item {
    text-align: center;
    font-size: 0.8rem;
  }

  .offer-stats-mobile .stat-item:first-child {
    margin-bottom: 0.2rem;
  }

  .offer-stats-mobile .stat-item:first-child .stat-label {
    display: block;
    margin-bottom: 0.2rem;
  }

  .offer-stats-mobile .stat-item:first-child .stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
  }

  .offer-stats-mobile .stat-item:nth-child(2),
  .offer-stats-mobile .stat-item:nth-child(3) {
    display: inline-block;
    margin: 0 0.2rem;
    font-size: 0.8rem;
  }

  .offer-stats-mobile .stat-item:nth-child(2) .stat-label,
  .offer-stats-mobile .stat-item:nth-child(3) .stat-label {
    display: inline;
    margin-right: 0.2rem;
  }

  .offer-stats-mobile .stat-item:nth-child(2) .stat-value,
  .offer-stats-mobile .stat-item:nth-child(3) .stat-status {
    display: inline;
    font-weight: 600;
  }

  .offer-right {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .offer-title {
    font-size: 1rem;
    margin: 0 0 0.4rem 0;
  }

  .payment-methods {
    font-size: 1rem;
    gap: 0.4rem;
    margin: 0.3rem 0;
  }

  .offer-text {
    font-size: 0.85rem;
    line-height: 1.3;
    margin: 0.3rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .offer-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    margin-top: 0.3rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-red {
  color: #dc143c;
}

.text-white {
  color: #ffffff;
}

.text-gray {
  color: #cccccc;
}

.glow {
  text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

/* Hide elements */
.hidden {
  display: none !important;
}

/* Smooth transitions */
* {
  transition: all 0.3s ease;
}
