:root{
  --green:#073d2a;
  --green2:#0f6846;
  --gold:#d8a13a;
  --orange:#f08a24;
  --cream:#f7f4ea;
  --text:#173126;
  --muted:#5c7468;
  --white:#fff;
  --shadow:0 18px 55px rgba(7,61,42,.12);
  --shadow-soft:0 10px 30px rgba(7,61,42,.10);
  --radius:30px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,"Noto Sans Armenian",sans-serif;
  background:
    radial-gradient(circle at 8% 0%,rgba(216,161,58,.20),transparent 34%),
    radial-gradient(circle at 90% 18%,rgba(15,104,70,.12),transparent 28%),
    linear-gradient(180deg,#f7f4ea 0%,#fff 38%,#eef7ef 100%);
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit}
img{max-width:100%}

.top-hero{
  position:relative;
  min-height:clamp(560px,82vh,820px);
  display:grid;
  place-items:center;
  overflow:hidden;
  background:var(--green);
  color:#fff;
  text-align:center;
  padding:90px 18px 70px;
  isolation:isolate;
}
.top-hero:after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:130px;
  background:linear-gradient(180deg,transparent,rgba(247,244,234,.95));
  z-index:-1;
}
.hero-bg{
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(180deg,rgba(7,61,42,.44),rgba(7,61,42,.86)),
    url("AT_05613.jpg") center 34%/cover no-repeat;
  transform:scale(1.03);
}
.hero-content{width:min(980px,100%);position:relative;z-index:1}
.brand-pill,.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(216,161,58,.18);
  color:#ffe08a;
  border:1px solid rgba(255,255,255,.26);
  font-weight:800;
  letter-spacing:.25px;
  backdrop-filter:blur(8px);
}

.mini-logo{width:30px;height:30px;border-radius:8px;box-shadow:0 4px 12px rgba(0,0,0,.16)}
h1{
  font-size:clamp(38px,6.8vw,84px);
  line-height:1.03;
  margin:22px 0 16px;
  text-wrap:balance;
}
h2{
  font-size:clamp(27px,3.8vw,46px);
  line-height:1.14;
  margin:0 0 18px;
  color:var(--green);
  text-wrap:balance;
}
p{
  font-size:clamp(16px,1.45vw,19px);
  line-height:1.75;
  margin:0 0 16px;
}
.hero-content p{
  font-size:clamp(18px,2.3vw,23px);
  max-width:820px;
  margin:0 auto 28px;
  color:#f7f2e7;
}
.hero-actions,.socials{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 24px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--gold),var(--orange));
  color:#fff;
  text-decoration:none;
  font-weight:900;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
  transition:transform .2s ease,box-shadow .2s ease,opacity .2s ease;
}
.btn:hover{transform:translateY(-2px);box-shadow:0 16px 34px rgba(0,0,0,.22)}
.btn.secondary{background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.36)}

.section{
  width:min(1180px,calc(100% - 36px));
  margin:34px auto;
  padding:clamp(26px,4.4vw,50px);
  border-radius:var(--radius);
  background:rgba(255,255,255,.86);
  box-shadow:var(--shadow);
  border:1px solid rgba(7,61,42,.07);
}
.highlight{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);
  gap:clamp(22px,4vw,42px);
  align-items:center;
}
.highlight-text .eyebrow{background:rgba(216,161,58,.16);color:#9b6b12;border-color:rgba(216,161,58,.35)}
.winner-card{
  overflow:hidden;
  border-radius:28px;
  background:#fff;
  box-shadow:0 14px 46px rgba(7,61,42,.17);
}
.winner-card img{width:100%;display:block;aspect-ratio:4/5;object-fit:cover;object-position:center top}
.winner-card div{padding:22px;background:linear-gradient(135deg,#fff,#f8f0d7)}
.winner-card strong,.winner-card span{display:block}
.winner-card strong{font-size:22px;color:var(--green)}
.winner-card span{margin-top:6px;color:#6c5a26;line-height:1.5}
.glass{background:linear-gradient(135deg,rgba(7,61,42,.97),rgba(15,104,70,.93));color:#fff}
.glass h2,.new-draw h2{color:#fff}
.glass p,.new-draw p,.final-cta p{color:#f3f5ed}
.live-section{background:linear-gradient(135deg,#fff7e7,#ffffff)}
.gallery-section{padding-bottom:clamp(20px,3vw,34px)}
.gallery{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}
.gallery img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:22px;
  box-shadow:var(--shadow-soft);
  display:block;
}
.gallery img:nth-child(1){grid-column:span 3;height:360px}
.gallery img:nth-child(2){grid-column:span 3;height:360px}
.gallery img:nth-child(n+3){grid-column:span 2}
.thanks{background:linear-gradient(135deg,#fff,#f4fbf5)}
.new-draw{background:linear-gradient(135deg,#073d2a,#0f6846);color:#fff}
.new-draw .eyebrow{color:#ffe092}
.steps{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:24px;
}
.steps div{
  display:flex;
  gap:14px;
  padding:20px;
  border-radius:22px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
}
.steps strong{
  flex:0 0 42px;
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--gold);
  color:#fff;
  font-size:20px;
}
.steps span{line-height:1.6}
.cashback{border:2px solid rgba(216,161,58,.35)}
.final-cta{
  text-align:center;
  padding:clamp(42px,6vw,68px) 18px;
  background:var(--green);
  color:#fff;
}
.final-cta h2{color:#fff}
.final-cta p{max-width:860px;margin:0 auto 22px}
.socials a{
  padding:12px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  text-decoration:none;
  border:1px solid rgba(255,255,255,.22);
  font-weight:800;
  transition:background .2s ease,transform .2s ease;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.soc-icon{
  width:24px;
  height:24px;
  border-radius:50%;
  display:inline-grid;
  place-items:center;
  background:#fff;
  color:var(--green);
  font-weight:900;
  font-family:Arial,sans-serif;
  line-height:1;
}
.socials a:hover{background:rgba(255,255,255,.20);transform:translateY(-1px)}
footer{text-align:center;padding:28px;color:#496457}

@media(max-width:1100px){
  .gallery img:nth-child(1),.gallery img:nth-child(2){height:320px}
  .gallery img{height:230px}
}

@media(max-width:900px){
  .top-hero{min-height:560px;padding:78px 16px 58px}
  .hero-bg{background-position:center top}
  .highlight,.steps{grid-template-columns:1fr}
  .section{width:min(100% - 28px,720px);margin:24px auto;border-radius:24px}
  .winner-card{max-width:520px;margin:0 auto}
  .gallery{grid-template-columns:repeat(2,1fr);gap:12px}
  .gallery img,.gallery img:nth-child(1),.gallery img:nth-child(2),.gallery img:nth-child(n+3){grid-column:auto;height:230px}
  .gallery img:nth-child(1){grid-column:span 2;height:340px}
}

@media(max-width:560px){
  .top-hero{min-height:500px;text-align:left;place-items:end center;padding:64px 16px 52px}
  .hero-bg{
    background:
      linear-gradient(180deg,rgba(7,61,42,.25),rgba(7,61,42,.92)),
      url("AT_05613.jpg") 58% top/cover no-repeat;
  }
  .brand-pill,.eyebrow{padding:8px 13px;font-size:14px}
  h1{font-size:36px;line-height:1.08}
  h2{font-size:27px}
  p{font-size:16px;line-height:1.68}
  .hero-content p{font-size:17px;margin-left:0;margin-right:0}
  .hero-actions,.socials{justify-content:flex-start;gap:10px}
  .btn{width:100%;min-height:50px;padding:13px 18px}
  .section{width:calc(100% - 22px);padding:22px;margin:18px auto;border-radius:20px}
  .winner-card{border-radius:20px}
  .winner-card img{aspect-ratio:3/4}
  .winner-card div{padding:18px}
  .gallery{grid-template-columns:1fr}
  .gallery img,.gallery img:nth-child(1),.gallery img:nth-child(2),.gallery img:nth-child(n+3){grid-column:auto;height:auto;max-height:none;border-radius:16px}
  .steps div{padding:16px;border-radius:18px}
  .steps strong{flex-basis:36px;width:36px;height:36px;font-size:18px}
  .socials a{width:100%;text-align:center}
  footer{padding:22px 14px;font-size:14px}
}


.rules-section{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  background:linear-gradient(135deg,#fffaf0,#ffffff);
  border:2px solid rgba(216,161,58,.32);
}
.rules-copy{max-width:820px}
.rules-section .eyebrow{background:rgba(216,161,58,.16);color:#9b6b12;border-color:rgba(216,161,58,.35)}
.rules-btn{flex:0 0 auto}
@media(max-width:760px){
  .rules-section{display:block}
  .rules-btn{width:100%;margin-top:8px}
}
