* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #1f2937;
  background: #f7fbfc;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

html, body {
  height: 100%;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #0f172a;
  font-size: 28px;
  font-weight: 700;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, #ffffff 0 50%, #e52323 50% 100%);
  border: 4px solid #12b9c7;
  position: relative;
}

.logo-icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #12b9c7 0 50%, #ffffff 50% 100%);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: #334155;
  font-size: 16px;
  font-weight: 600;
  transition: 0.2s;
}

.main-nav a:hover {
  color: #12b9c7;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #e52323;
  color: #fff;
  font-weight: 700;
  transition: 0.2s;
}

.header-btn:hover {
  transform: translateY(-1px);
  background: #c81d1d;
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.burger span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 5px auto;
  background: #0f172a;
  border-radius: 999px;
}

/* HERO */
.hero {
  position: relative;
  padding-top: 130px;
  padding-bottom: 80px;
  background:
    radial-gradient(circle at top left, rgba(18, 185, 199, 0.25), transparent 35%),
    linear-gradient(135deg, #0da8b5 0%, #0c8fa1 60%, #0b7d8d 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.14) 38%,
    rgba(0, 0, 0, 0.05) 100%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  color: #fff;
}

.hero-label,
.section-label {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  background: rgba(255, 255, 255, 0.18);
  color: inherit;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
}

.hero-subtitle {
  max-width: 620px;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 28px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.btn-primary {
  background: #e52323;
  color: #fff;
  box-shadow: 0 12px 30px rgba(229, 35, 35, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #c81d1d;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-feature {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(8px);
}

.hero-feature strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.hero-feature span {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual img {
  width: 100%;
  max-width: 520px;
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
  object-fit: cover;
}

/* SECTIONS */
.section {
  padding: 90px 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-head .section-label {
  background: #e7f8fb;
  color: #0d8d9b;
}

.section-head h2,
.section-text h2,
.contacts-content h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  color: #0f172a;
}

.section-head p,
.section-text p,
.contacts-content p {
  margin: 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.75;
}

/* QUICK */
.quick-links {
  margin-top: -36px;
  position: relative;
  z-index: 2;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quick-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  color: inherit;
  transition: 0.2s;
}

.quick-card:hover {
  transform: translateY(-6px);
}

.quick-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.quick-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  color: #0f172a;
}

.quick-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
}

/* ABOUT */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.section-text .section-label,
.contacts-content .section-label {
  background: #e7f8fb;
  color: #0d8d9b;
}

.section-text p {
  margin-bottom: 18px;
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: #334155;
  font-size: 17px;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #0da8b5;
  font-weight: 700;
}

.image-card {
  width: 100%;
}

.image-placeholder {
  border-radius: 28px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  font-weight: 700;
  background-size: cover;
  background-position: center;
}

.image-placeholder-about {
  background:
    linear-gradient(rgba(8, 55, 70, 0.35), rgba(8, 55, 70, 0.35)),
    linear-gradient(135deg, #0db3c0, #0a7f90);
}

/* DRAWS */
.draw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.draw-image {
  min-height: 220px;
  border-radius: 0;
}

.image-placeholder-1 {
  background:
    linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.18)),
    linear-gradient(135deg, #12b9c7, #088495);
}

.image-placeholder-2 {
  background:
    linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.18)),
    linear-gradient(135deg, #e52323, #ff6868);
}

.image-placeholder-3 {
  background:
    linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.18)),
    linear-gradient(135deg, #12b9c7, #e52323);
}

.draw-body {
  padding: 24px;
}

.draw-body h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.draw-body p {
  margin: 0 0 16px;
  color: #64748b;
  line-height: 1.7;
}

.text-link {
  color: #0d8d9b;
  font-weight: 700;
}

/* INFO */
.info {
  background: linear-gradient(180deg, #ffffff 0%, #eef9fb 100%);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.info-box {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.info-box h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.info-box p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
}

/* CONTACTS */
.contacts-box {
  align-items: stretch;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  background: #fff;
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.contact-item {
  margin-bottom: 16px;
  font-size: 17px;
  color: #334155;
}

.contact-item strong {
  color: #0f172a;
  margin-right: 8px;
}

.map-placeholder {
  flex: 1;
  height: 100%;
  width: 100%;
  min-height: clamp(260px, 38vw, 420px);
  border-radius: 24px;
  background:
    linear-gradient(rgba(8, 55, 70, 0.28), rgba(8, 55, 70, 0.28)),
    linear-gradient(135deg, #0db3c0, #0a7f90);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  text-align: center;
  padding: 16px;
  transition: transform ease;
  will-change: transform;
}
.map-placeholder2 {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 16px;
}
.map-placeholder.cont_tab2.active {
  display: block;
}
.cont_map {
  overflow: hidden;
  border-radius: 24px;
  width: 100%;
  height: 100%;
}

.cont_map iframe {
  width: 100%;
  border: 0;
  display: block;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 54px;
  width: auto;
  display: block;
}
.cont_tab_nav {
  margin: 20px -8px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.cont_nav_btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: #ffffff;
  color: #334155;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transform: none;
}

.cont_nav_btn h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.cont_nav_btn:hover {
  transform: translateY(-3px);
  color: #0b8fa0;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.cont_nav_btn.active {
  background: linear-gradient(135deg, #0db3c0, #0b62a4);
  color: #ffffff;
  border-color: transparent;
}
.cont_tab {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cont_tab.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cont_tab2 {
  display: none;
}

.cont_tab2.active {
  display: block;
}
.cont_title {
  margin-bottom: 24px;
  color: #0f172a;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
}

.cont_l {
  width: 100%;
}

.cont_row_wrap {
  display: grid;
  gap: 14px;
}

.cont_row {
  position: relative;
  padding: 18px 20px 18px 52px;
  border-radius: 18px;
  background: #f7fbfc;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.cont_row::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 21px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0db3c0;
  box-shadow: 0 0 0 6px rgba(13, 179, 192, 0.14);
}

.cont_row_text {
  color: #334155;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
}

.cont_row_text a {
  color: #0b62a4;
  font-weight: 800;
  transition: 0.2s;
}

.cont_row_text a:hover {
  color: #e52323;
}
/* FOOTER */
.site-footer {
  padding: 32px 0;
  background: #0f172a;
  color: rgba(255, 255, 255, 0.85);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-links a:hover {
  color: #fff;
}

.draws-page {
  padding: 140px 0 80px;
}

.draws-head {
  margin-bottom: 36px;
  text-align: left;
}

.draws-head h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  color: #0f172a;
  font-weight: 700;
}

.draws-head p {
  margin-top: 14px;
  max-width: 800px;
  color: #304a5e;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

.draws-head-pr {
  margin-bottom: 36px;
  text-align: left;
}

.draws-head-pr h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  color: #0f172a;
  font-weight: 700;
}

.draws-head-pr p {
  margin-top: 14px;
  color: #304a5e;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

.draws-head p a {
    color: #304a5e;          /* цвет ссылки */
    text-decoration: underline; /* подчёркивание */
}

.draws-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.draw-card {
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: 0.3s ease;
}

.draw-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.draw-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.draw-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.draw-card:hover .draw-card-image img {
  transform: scale(1.04);
}

.draw-card-bottom {
  background: #fff;
  padding: 22px 26px;
}

.draw-card-bottom h3 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  font-weight: 700;
}

.period-card {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 140px;

  background: #fff;

  border-radius: 24px;

  color: #0f172a;
  text-align: center;

  font-size: 28px;
  font-weight: 700;

  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);

  transition: .25s ease;
}

.period-card:hover {
  transform: translateY(-4px);

  color: #0db3c0;

  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}
.draws-grid-period {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.result-header{

    margin-bottom:50px;

    text-align:center;
}

.result-header h1{
    margin:0;

    color:#0f172a;

    font-size:clamp(38px,5vw,58px);

    font-weight:700;
}

.winner-block{

    margin-bottom:35px;
}

.winner-block h2{

    margin-bottom:25px;

    color:#0f172a;
}

.winner-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:18px;
}

.winner-item{

    background:#fff;

    padding:20px;

    border-radius:18px;

    text-align:center;

    font-size:18px;

    font-weight:600;

    color:#0f172a;

    box-shadow:0 8px 24px rgba(0,0,0,.06);

    transition:.2s;
}

.participant-block h2{

    margin-bottom:25px;

    color:#0f172a;
}

.participant-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    
    column-gap:40px;

    row-gap:10px;

    -gap:8px 30px;
}

.participant-item{
    
    position:relative;

    padding-left:18px;

    line-height:1.6;
    
    font-weight:600;

    font-size:18px;

    color:#0f172a;


}

.participant-item::before{

    content:"";

    position:absolute;

    left:0;

    top:11px;

    width:6px;

    height:6px;

    border-radius:50%;

    background:#0db3c0;
}

.participant-phone{

    color:#64748b;

    font-weight:600;
}

.participant-name{

    color:#0f172a;

    font-weight:600;
}

/* MOBILE */
@media (max-width: 1200px) {
  .draws-grid-period {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1024px) {
  .hero-inner,
  .two-col,
  .contacts-box {
    grid-template-columns: 1fr;
  }

  .hero-features,
  .quick-grid,
  .draw-grid,
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    order: -1;
  }
  
  .winner-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .participant-grid{
        grid-template-columns:repeat(2,1fr);
        column-gap:30px;
    }
}

@media (max-width: 992px) {
  .draws-grid-period {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {

  .draws-grid {
    grid-template-columns: 1fr;
  }

  /*.draw-card-big {
    min-height: 340px;
  }*/

}

@media (max-width: 820px) {
  .main-nav,
  .header-btn {
    display: none;
  }

  .burger {
    display: block;
  }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  }

  .hero {
    padding-top: 120px;
  }

  .hero-features,
  .quick-grid,
  .draw-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .draws-grid-period {
    grid-template-columns: repeat(2, 1fr);
  }
  .cont_tab_nav {
    margin: 16px 0 22px;
    gap: 10px;
  }

  .cont_nav_btn {
    width: 100%;
    margin: 0;
    padding: 14px 18px;
    text-align: center;
  }

  .cont_tab {
    padding: 22px;
    border-radius: 22px;
  }

  .cont_title {
    margin-bottom: 18px;
  }

  .cont_row {
    padding: 16px 16px 16px 46px;
    border-radius: 16px;
  }

  .cont_row::before {
    left: 18px;
    top: 20px;
    width: 12px;
    height: 12px;
  }

  .cont_row_text {
    font-size: 16px;
  }

  .map-placeholder,
  .cont_map iframe {
    min-height: 280px;
    border-radius: 18px;
    width: 100%;
  }
  
  .result-header{
        margin-bottom:45px;
    }

    .result-header h1{
        font-size:42px;
    }

    .winner-block{
        margin-bottom:25px;
    }

    .winner-grid{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }

    .winner-item{
        padding:18px 12px;
        font-size:16px;
    }

    .participant-grid{
        grid-template-columns:1fr;
        gap:6px;
    }

    .participant-item{
        font-size:16px;
    }
}
@media (max-width: 560px) {
  .container {
    width: min(1200px, calc(100% - 24px));
  }

  .header-inner {
    min-height: 70px;
  }

  .logo {
    font-size: 22px;
  }

  .hero {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .quick-card,
  .info-box,
  .contacts-box {
    padding: 22px;
  }
  .logo-img {
    height: 42px;
  }
  
   .draws-page {
    padding: 120px 0 60px;
  }

  .draw-card {
    border-radius: 24px;
  }

  .draw-card-bottom {
    padding: 18px 20px;
  }

  .draw-card-bottom h3 {
    font-size: 20px;
  }

  /*.draw-card-big {
    min-height: 280px;
    border-radius: 24px;
  }

  .draw-card-content {
    padding: 24px;
  }*/
}
@media (max-width: 480px) {
  .cont_tab {
    padding: 18px;
  }

  .cont_nav_btn {
    font-size: 15px;
  }

  .cont_row_text {
    font-size: 15px;
  }
  
  .result-header h1{
        font-size:34px;
        line-height:1.2;
    }

    .winner-block h2,
    .participant-block h2{
        font-size:28px;
        margin-bottom:18px;
    }

    .winner-grid{
        grid-template-columns:1fr;
    }

    .winner-item{
        font-size:16px;
        padding:16px;
    }

    .participant-item{
        font-size:16px;
        line-height:1.5;
    }
    
    .participant-grid {
        margin-left: 12px;
        margin-right: 12px;
    }
}
@media screen and (max-width: 450px) {
    /*.cont_nav_btn {
        font-size: 1em;
        line-height: 1.3;
        padding: 10px 20px;
        border: solid 1px #ddd;
    }
    .cont_tab_nav {
        margin: 20px -15px;
    }*/
}