/* ───── Base & helpers ───── */
:root {
	--red: #e40000;
	--black: #000;
	--white: #fff;
	--gray-light: #f3f3f3;
	--max-w: 1120px;
}

*,
*::before,
*::after { box-sizing: border-box; }

body {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	color: var(--black);
	line-height: 1.6;
}

h1,h2,h3,h4 { margin: 0 0 .5em; line-height: 1.2; }

h1 { font-size: 2.3rem; font-weight: 600; }
h2 { font-size: 1.9rem; font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem;  font-weight: 600; }

p,ul,ol { margin: 0; }


.btn {
	/*display: inline-block;
	padding: .9rem 2.4rem;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	border: 2px solid var(--red);
	background: var(--red);
	color: var(--white);
	transition: background .25s, color .25s;
	
	width: 250px;
    text-align: center;*/
	padding: .9rem 3.5rem;
		text-transform: uppercase;
	text-decoration: none;
	color: #ffffff;
    font-size: 21px;
    font-family: 'TildaSans', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 600;
    border-radius: 4px 4px 4px 4px;
    background-color: #fc0109;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.btn:hover { /*background: var(--white); color: var(--red); */
	background-color: #ff3900;
        background-image: none;}

/* ───── HERO ───── */
/* ---------- HERO базовый ---------- */
.hero-section{
	/*position:relative;*/
	height:90vh;
	background:url("../img/Airbrush-n.jpeg") center/cover no-repeat;
	display:flex;
	align-items:center;                
	padding-left:40px;                
}


.hero-box{
	background:rgba(128,128,128,.65); 
	padding:4rem 3rem;
	max-width:600px;
	color:#fff;
	position: relative;
	left: 10%;
}

/* ---------- типографика ---------- */
.hero-title{
	margin:0 0 1.2rem;
	font:700 56px/1.1 'TildaSans',Arial,sans-serif;
}
.hero-sub{
	margin:0 0 2.8rem;
	font:700 30px/1.3 'TildaSans',Arial,sans-serif;
	color:#111;
}

/* ---------- кнопка ---------- */
.btn.btn--primary{padding:14px 46px;}

/* ───── PROMO ───── */
.promo-section   { padding: 4rem 1rem; }
.promo-inner     { max-width: var(--max-w); 
	margin: 0 auto; 
	text-align: center;
	border: 2px solid var(--red); 
	padding: 3rem 1rem;     
}
#promo-box > div > a {
	position: relative;
	top:65px;
}
.promo-title     { color: var(--black); margin: 0; font-size: 36px;
	font-family: 'TildaSans', Arial, sans-serif;    font-weight: 700;}
.promo-subtitle  {color: var(--black);     font-size: 24px;
    font-family: 'TildaSans', Arial, sans-serif;}

/* ───── HOT VIDEO (обновлённая раскладка) ───── */
.hot-video-section {
	padding: 4rem 1rem;
	background: var(--gray-light);
}

.hot-video-inner {
	max-width: var(--max-w);
	margin: 0 auto;
	display: flex;
	gap: 3rem;
	flex-wrap: wrap;
	align-items: center;
}
.hot-video-headline {color: #000000;
    font-size: 52px;
    font-family: 'TildaSans', Arial, sans-serif;}
.hot-video-right h3, .hot-video-ready {
	    color: #000000;
    font-size: 19px;
    font-family: 'Arial', Arial, sans-serif;
	font-weight:700;
}
.hot-video-right ol {	    color: #000000;
    font-size: 19px;
    font-family: 'Arial', Arial, sans-serif;
	font-weight:400;
}
/* 1. Блок картинок */
/* ───── HOT-VIDEO collage ───── */
.hot-video-images {
	position: relative;
	flex: 0 0 210px;         
	height: 320px;            
}


.hv-img {
	position: absolute;
	display: block;
	max-width: none;
	animation-duration: 0.8s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

/* iPne */
.hv-img--iphone {
	width: 190px;
	left: 110px;
	top: 20px;
	transform: rotate(-8deg);
	z-index: 2;
	animation-name: wobble-iphone;
}

/* AirPods */
.hv-img--pods {
	width: 150px;
	left: 0;
	top: 25px;
	transform: rotate(6deg);
	z-index: 3;
	animation-name: wobble-pods;
}

/* Watch */
.hv-img--watch {
	width: 130px;
	left: 70px;
	bottom: -10px;
	transform: rotate(10deg);
	z-index: 1;
	animation-name: wobble-watch;
}



@keyframes wobble-iphone {
	0%   { transform: rotate(-8deg); }
	100% { transform: rotate(-2deg); }
}

@keyframes wobble-pods {
	0%   { transform: rotate(6deg); }
	100% { transform: rotate(-2deg); }
}

@keyframes wobble-watch {
	0%   { transform: rotate(10deg); }
	100% { transform: rotate(4deg); }
}


.hot-video-left {
	flex: 1 1 250px;
}
.hot-video-headline {
	
}
.hot-video-caption {
	font-size: .75rem;
	color: #555;
}

.hot-video-right {
	flex: 1 1 300px;
}
.hot-video-ready { font-weight: 600; }

/* ───── GUIDELINES ───── */
.guidelines-section { padding: 4rem 1rem; }
.guidelines_wr {
	max-width: var(--max-w); margin: 0 auto;
	display:flex; gap:2.5rem; flex-wrap:wrap; align-items:center;
}
.guidelines__grid {
	display:flex; flex-direction:column; gap:2rem; flex:1 1 380px;
}
.guidelines__grid > div > h3 {
	font-size: 34px;
	    font-weight: 700;
	color: #000000;   
    font-family: 'TildaSans', Arial, sans-serif;;
	position: relative;
    left: -10%;
}
.guidelines__block ul, .guidelines__block p { list-style: disc;
font-size: 18px;
	    font-weight: 400;
	color: #000000;   
    font-family: 'TildaSans', Arial, sans-serif;;
	line-height: 28px;
}
.guidelines__block .icon {
	display: inline-flex;
	vertical-align: middle;
	margin-right: .4rem;
	width: 50px;             
	height: 50px;
}
.guidelines__block .icon img {
	width: 100%;
	height: 100%;
	display: block;
}

.guidelines__block .accept{ color:green; }
.guidelines__block .deny  { color:var(--red); }

.guidelines__collage { flex:1 1 300px; }
.guidelines__collage img { width:100%; height:auto; display:block; }
.guidelines__cta { text-align:center; margin-top:3rem; }

/* ───── TERMS ───── */
.terms-section {
	padding: 4rem 1rem;
	color: var(--white);
	background: url("../img/attractive_woman.jpg") center/cover no-repeat;
	
	height: 800px;
}
.terms-inner  { max-width:550px;     margin: 0 auto 0px 50%; height:80%;     display: flex;
    flex-direction: column;
    justify-content: space-around;}
#terms > div > a {margin: 0 auto;}
.terms-title  {     font-size: 36px;
    font-family: 'TildaSans', Arial, sans-serif; margin-bottom:1.5rem; position:relative; left: -10%;}
.terms-list   { list-style: disc inside; text-align:left; margin-bottom:2rem;     padding: 0;margin: 0 0 30px 0px; color: #ffffff;
    font-size: 18px;
    font-family: 'TildaSans', Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;}
.terms-footnote { margin-top:2rem; line-height:1.4; opacity:.9; color: #ffffff;
    font-size: 18px;
    font-family: 'TildaSans', Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;}

/* ───── PRIZE ───── */
.prize-section  { padding:4rem 1rem; }
.prize-inner    {
	max-width: var(--max-w); margin:0 auto;
	display:flex; gap:3rem; flex-wrap:wrap; align-items:center;
}
.prize-img      { flex:1 1 300px; text-align:center; }
.prize-img img  { max-width:350px; }
.prize-content  { flex:1 1 320px; }
.prize-content h2 {color: #000000;
    font-size: 36px;
    font-family: 'TildaSans', Arial, sans-serif;
    line-height: 42px;
    font-weight: 600;}
.prize-content h2 small { color: #000000;
    font-size: 22px;
    font-family: 'TildaSans', Arial, sans-serif;
    line-height: 1.15;
    font-weight: 700;}
.prize-content p {
	color: #000000;
    font-size: 18px;
    font-family: 'TildaSans', Arial, sans-serif;
    line-height: 24px;
    font-weight: 400;
}
.prize-mar {
	margin-bottom:30px;
}
.prize-dates    { font-size:.85rem; margin:2rem 0 3rem; }

/* ───── MOST LIKES ───── */
.likes-section  { padding:4rem 1rem; background:var(--gray-light); }
.likes-inner    {
	max-width: var(--max-w); margin:0 auto;
	display:flex; gap:3rem; flex-wrap:wrap; align-items:flex-start;
}
.likes-text     { flex:1 1 300px; }
.likes-text h2 {
	color: #000000;
    font-size: 36px;
    font-family: 'TildaSans', Arial, sans-serif;
	margin-bottom: 30px;
}
.likes-text-be {
	margin-bottom: 30px;
}
.likes-text p {
	color: #000000;
    font-size: 18px;
    font-family: 'TildaSans', Arial, sans-serif;
    line-height: 27px;
    font-weight: 400;
}
.likes-tip      { font-style:italic; }
.likes-disclaimer{ font-size:.75rem; margin-top:2rem; }
.likes-video    { flex:1 1 20px; }
.likes-video video { width:100%; border:1px solid #ccc; }

/* ───── Responsive tweaks ───── */
@media (max-width:600px){
	h1 { font-size:1.8rem; }
	.hot-video-headline{ font-size:1.6rem; }
	

	.hero-section{padding:0 16px;justify-content:center; background:url("../img/Airbrush-m.jpg") bottom/cover no-repeat;    height: 74vh;}
	.hero-box{max-width:100%;padding:2rem 1.4rem;text-align:center;left: 0;}
	.hero-title{font-size:34px;}
	.hero-sub{font-size:22px;margin-bottom:2rem;}
	.btn.btn--primary{padding:12px 36px;}

	.promo-title {
		padding-bottom:20px;
	}
	
	/*===============*/
	.hot-video-inner{
		position:relative;
		flex-direction:column;
		padding-top:10px;        
		align-items: flex-start;
	}

	/* ---------- Заголовок + подпись ---------- */
	.hot-video-left{
		order:0;
		width:50%;
		    flex: 1 1 100px;
	}

	.hot-video-headline{
		font-size:1.9rem;
		line-height:1.15;
		margin-bottom:12px;
	}
	.hot-video-caption{
		font-size:0.8rem;
		margin-bottom:0;
	}

	/* ---------- КОЛЛАЖ ---------- */
	.hot-video-images{
		position: absolute;
        right: 20px;
        top: 0px;
        width: 220px;
        height: 180px;
        pointer-events: none;
	}


	.hv-img--pods{
		width:120px;
		left:45px;
		top:0;
		transform:rotate(4deg);
	}

	
	.hv-img--iphone{
		width:140px;
		right:0;
		top:10px;
		transform:rotate(-6deg);
	}


	.hv-img--watch{
		width:105px;
		right:12px;
		top:90px;
		transform:rotate(10deg);
	}

	/* ---------- Инструкция ---------- */
	.hot-video-right{
		order:1;
		margin-top:24px;
		flex: 1 1 160px;
	}

	.hot-video-right h3{
		font-size:1.15rem;
		margin-bottom:10px;
	}
	.hot-video-right ol{
		padding-left:1.2rem;
		font-size:1rem;
	}

	.hot-video-ready{
		margin-top:12px;
	}
	/*===========*/
	.guidelines__grid > div > h3 {

    left: 0%; 
}
	.guidelines_wr {

    flex-direction: column-reverse;
}

	/*===========*/
	.terms-section {
	padding: 4rem 1rem 10rem 1rem;
	color: var(--white);
	background: url("../img/Airbrush2.png") center/cover no-repeat;
	
	height: 1100px;
}
	.terms-inner {
    max-width: 100%; 
    margin: 0 auto 0px 0%;
    height: 80%;
	}
	.terms-title  { left: 0%;}
	/*===========*/
.likes-inner {
   
    flex-direction: column-reverse;
}
.prize-img img {
    max-width: 100%;
}



}
