:root {
  --color-primary: #2c5da8;
  --color-secondary: #ffcc01;
  --color-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-header: #ffffff;
  --color-footer: #f5f5f5;
  --font-main: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.fixed {
  overflow: hidden;
}

.wpz9x4 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.kj8m2n {
  background-color: var(--color-header);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.r4p9vx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.m3k7bq {
  display: flex;
  align-items: center;
  gap: 30px;
}

.x9n2wp img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.x9n2wp img:hover {
  transform: scale(1.05);
}

.t6h8jk {
  display: flex;
  gap: 25px;
  list-style: none;
}

.t6h8jk a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.t6h8jk a:hover {
  color: var(--color-primary);
}

.t6h8jk a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.t6h8jk a:hover::after {
  width: 100%;
}

.q5w7np {
  display: flex;
  align-items: center;
  gap: 15px;
}

.l2d4fx {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
}

.f8v3kp {
  background-color: var(--color-primary);
  color: white;
}

.f8v3kp:hover {
  background-color: #1e4380;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 93, 168, 0.3);
}

.y9m1zr {
  background-color: var(--color-secondary);
  color: #1a1a1a;
}

.y9m1zr:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 204, 1, 0.3);
}

.p7n4qw {
  color: var(--color-primary);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.p7n4qw::before {
  content: '●';
  color: #4ade80;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.b3k9mx {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
  z-index: 1001;
}

.b3k9mx span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-text);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.b3k9mx.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.b3k9mx.active span:nth-child(2) {
  opacity: 0;
}

.b3k9mx.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.s2v8kx {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-bottom: 40px;
}

.h6j2mn {
  position: relative;
  width: 100%;
  height: 100%;
}

.g4p7wq {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.g4p7wq.active {
  opacity: 1;
}

.g4p7wq img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.n8k3vp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  width: 90%;
  max-width: 800px;
}

.n8k3vp h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease;
}

.n8k3vp p {
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
  animation: fadeInUp 1.2s ease;
}

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

.w9v2bp {
  padding: 8px 0;
  background-color: #f9fafb;
  margin-bottom: 30px;
}

.c5h8kp {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
}

.c5h8kp a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.c5h8kp a:hover {
  color: #1e4380;
  text-decoration: underline;
}

.c5h8kp span {
  color: #6b7280;
}

.z7m4nq {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.z7m4nq:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.j3p9wk {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.j3p9wk h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.j3p9wk ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.j3p9wk ul li {
  background-color: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.j3p9wk ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.j3p9wk ul li a:hover {
  opacity: 0.8;
}

.v2n8kx {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.v2n8kx h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

.k9m3vp {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.p4w7jk {
  background-color: rgba(255,255,255,0.15);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.p4w7jk:hover {
  transform: scale(1.05);
}

.p4w7jk h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.p4w7jk .amount {
  font-size: 36px;
  font-weight: 700;
  margin: 15px 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.q8n2vx {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  color: #1a1a1a;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.q8n2vx h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

.x3k7mp {
  background-color: rgba(255,255,255,0.3);
  border-radius: 8px;
  overflow-x: auto;
}

.x3k7mp table {
  width: 100%;
  border-collapse: collapse;
}

.x3k7mp th,
.x3k7mp td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.x3k7mp th {
  background-color: rgba(0,0,0,0.1);
  font-weight: 600;
}

.x3k7mp tr:hover {
  background-color: rgba(255,255,255,0.2);
}

.m7v4kp {
  margin-bottom: 30px;
}

.m7v4kp h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

.h9p2nq {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.w4k8mx {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.w4k8mx::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.w4k8mx:hover {
  transform: translateY(-10px);
}

.w4k8mx h3 {
  font-size: 24px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.w4k8mx p {
  margin-bottom: 15px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.w4k8mx .timer {
  background-color: rgba(255,255,255,0.2);
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.w4k8mx .prize {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1;
}

.b5n9wp {
  margin-bottom: 30px;
}

.b5n9wp h2 {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.b5n9wp .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.b5n9wp iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.t9k6mx {
  line-height: 1.8;
  margin-bottom: 30px;
}

.t9k6mx h1,
.t9k6mx h2,
.t9k6mx h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.t9k6mx h1 {
  font-size: 36px;
}

.t9k6mx h2 {
  font-size: 28px;
}

.t9k6mx h3 {
  font-size: 22px;
}

.t9k6mx p {
  margin-bottom: 15px;
}

.t9k6mx ul,
.t9k6mx ol {
  margin-bottom: 15px;
  padding-left: 30px;
}

.t9k6mx li {
  margin-bottom: 8px;
}

.t9k6mx table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
}

.t9k6mx th,
.t9k6mx td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.t9k6mx th {
  background-color: var(--color-primary);
  color: white;
  font-weight: 600;
}

.t9k6mx tr:hover {
  background-color: #f9fafb;
}

.t9k6mx img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.r8p3kx {
  margin-bottom: 30px;
}

.r8p3kx h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

.v5m9kp {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.n2w7qx {
  border-bottom: 1px solid #e5e7eb;
}

.n2w7qx:last-child {
  border-bottom: none;
}

.k4p8mx {
  width: 100%;
  padding: 20px;
  background-color: white;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.k4p8mx:hover {
  background-color: #f9fafb;
}

.k4p8mx::after {
  content: '+';
  font-size: 24px;
  transition: transform 0.3s ease;
}

.k4p8mx.active::after {
  transform: rotate(45deg);
}

.j7n3wp {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.j7n3wp.active {
  max-height: 500px;
  padding: 20px;
}

.x6m2nq {
  margin-bottom: 30px;
}

.x6m2nq h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

.p9k5vx {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.w7m3kp {
  background-color: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.w7m3kp:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.v4n8kx {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.v4n8kx img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.q2p7mx h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.k9v3wp {
  display: flex;
  gap: 3px;
  margin-bottom: 15px;
}

.star {
  color: #ffcc01;
  font-size: 18px;
}

.h3k9vp {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.h3k9vp h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.m5w8kp {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.m5w8kp input,
.m5w8kp textarea {
  padding: 12px 15px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.m5w8kp input:focus,
.m5w8kp textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.m5w8kp textarea {
  min-height: 120px;
  resize: vertical;
}

.m5w8kp button {
  padding: 12px 30px;
  background-color: var(--color-secondary);
  color: #1a1a1a;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.m5w8kp button:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 204, 1, 0.3);
}

.n7k4px {
  background-color: var(--color-footer);
  padding: 50px 0 30px;
  margin-top: 60px;
}

.p2w9kx {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.v8m3kp h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.v8m3kp ul {
  list-style: none;
}

.v8m3kp ul li {
  margin-bottom: 10px;
}

.v8m3kp ul li a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.v8m3kp ul li a:hover {
  color: var(--color-primary);
}

.q3k7vp {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.q3k7vp img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.q3k7vp img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.w9n5kx {
  border-top: 1px solid #e5e7eb;
  padding-top: 30px;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
}

.b8m4vp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e4380 100%);
  color: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
  max-width: 300px;
  animation: slideIn 0.5s ease;
}

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

.b8m4vp h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.b8m4vp p {
  margin-bottom: 15px;
  font-size: 14px;
}

.b8m4vp a {
  display: block;
  text-align: center;
  background-color: var(--color-secondary);
  color: #1a1a1a;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.b8m4vp a:hover {
  background-color: #e6b800;
  transform: scale(1.05);
}

.y4k2vx {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
  border-radius: 8px;
  margin-bottom: 30px;
}

.y4k2vx img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.m9p4kx h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.m9p4kx p {
  font-size: 14px;
  color: #2d3436;
}

.m9p4kx a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

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

@media (max-width: 768px) {
  .t6h8jk {
    display: none;
  }
  
  .b3k9mx {
    display: flex;
  }
  
  .t6h8jk.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: white;
    padding: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    z-index: 999;
  }
  
  .n8k3vp h1 {
    font-size: 32px;
  }
  
  .n8k3vp p {
    font-size: 16px;
  }
  
  .h9p2nq,
  .p9k5vx {
    grid-template-columns: 1fr;
  }
  
  .h9p2nq {
    overflow-x: auto;
    display: flex;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 15px;
  }
  
  .w4k8mx {
    min-width: 280px;
    scroll-snap-align: start;
  }
  
  .b8m4vp {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .r4p9vx {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .q5w7np {
    width: 100%;
    justify-content: space-between;
  }
}

.wp-block-gallery {
  display: none;
}

.elementor-widget-container {
  display: none;
}

.yoast-schema-graph {
  display: none;
}
@media (max-width: 480px) {
  .r4p9vx {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .l2d4fx,
  .p7n4qw {
    display: none;
  }

  .q5w7np {
    width: auto;
  }
}
/* Мобильные кнопки в бургер-меню */
.t6h8jk-mobile-buttons {
  display: none;
}

@media (max-width: 768px) {
  .t6h8jk-mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
    margin-top: 5px;
    width: 100%;
  }

  .t6h8jk-mobile-buttons .l2d4fx {
    display: block;
    text-align: center;
    width: 100%;
  }

  .t6h8jk-mobile-buttons .p7n4qw {
    justify-content: center;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .r4p9vx {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .q5w7np .l2d4fx,
  .q5w7np .p7n4qw {
    display: none;
  }

  .q5w7np {
    width: auto;
  }
}