/* =========================================
MITTIVAH CREATOR HUB
PART - 1
========================================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f6f8f5;
color:#222;
}

/* ===========================
CONTAINER
=========================== */

.container{
width:95%;
max-width:1300px;
margin:auto;
}

/* ===========================
HEADER
=========================== */

.hub-header{

background:linear-gradient(135deg,#1f6b2f,#43a047);

padding:45px 20px;

border-radius:0 0 30px 30px;

text-align:center;

color:#fff;

box-shadow:0 8px 25px rgba(0,0,0,.15);

margin-bottom:30px;

}

.hub-header h1{

font-size:38px;

font-weight:700;

margin-bottom:10px;

}

.hub-header p{

font-size:17px;

opacity:.95;

}

/* ===========================
STATS BOX
=========================== */

.creator-stats{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:18px;

margin:30px 0;

}

.stat-card{

background:#fff;

border-radius:20px;

padding:22px 15px;

text-align:center;

box-shadow:0 8px 20px rgba(0,0,0,.08);

transition:.35s;

}

.stat-card:hover{

transform:translateY(-6px);

}

.stat-card span{

font-size:34px;

display:block;

margin-bottom:10px;

}

.stat-card h4{

font-size:14px;

color:#666;

margin-bottom:8px;

font-weight:600;

}

.stat-card strong{

font-size:26px;

color:#1f6b2f;

font-weight:700;

}

/* =========================================
VIDEO GRID
PART - 2
========================================= */

.video-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:22px;

margin-top:35px;

margin-bottom:35px;

}

/* ===========================
VIDEO CARD
=========================== */

.video-card{

background:#fff;

border-radius:22px;

overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.35s ease;

position:relative;

}

.video-card:hover{

transform:translateY(-8px);

box-shadow:0 18px 40px rgba(0,0,0,.15);

}

/* ===========================
VIDEO
=========================== */

.video-card video{

width:100%;

height:420px;

display:block;

object-fit:cover;

background:#000;

}

/* ===========================
CREATOR INFO
=========================== */

.creator-info{

padding:16px;

background:#fff;

text-align:center;

}

.creator-info h3{

font-size:18px;

font-weight:700;

color:#1f6b2f;

margin-bottom:6px;

}

.creator-info p{

font-size:14px;

color:#666;

font-weight:600;

}

/* ===========================
VERIFIED BADGE
=========================== */

.creator-info h3::after{

content:" ✓";

color:#1f6b2f;

font-size:15px;

font-weight:bold;

}

/* ===========================
PLAY ICON
=========================== */

.video-card::before{

content:"▶";

position:absolute;

top:45%;

left:50%;

transform:translate(-50%,-50%);

width:65px;

height:65px;

background:rgba(255,255,255,.92);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

color:#1f6b2f;

opacity:0;

transition:.35s;

pointer-events:none;

}

.video-card:hover::before{

opacity:1;

}

/* =========================================
PART - 3
RESPONSIVE + PREMIUM EFFECTS
========================================= */

/* Floating Animation */

.video-card{

animation:floatCard 5s ease-in-out infinite;

}

.video-card:nth-child(even){

animation-delay:1s;

}

@keyframes floatCard{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-5px);

}

100%{

transform:translateY(0);

}

}

/* Premium Shine Effect */

.video-card::after{

content:"";

position:absolute;

top:-150%;

left:-40%;

width:45%;

height:300%;

background:rgba(255,255,255,.18);

transform:rotate(25deg);

transition:.8s;

pointer-events:none;

}

.video-card:hover::after{

left:150%;

}

/* Smooth Fade */

.video-card{

opacity:0;

animation:fadeUp .6s forwards;

}

.video-card:nth-child(1){animation-delay:.1s;}
.video-card:nth-child(2){animation-delay:.2s;}
.video-card:nth-child(3){animation-delay:.3s;}
.video-card:nth-child(4){animation-delay:.4s;}
.video-card:nth-child(5){animation-delay:.5s;}
.video-card:nth-child(6){animation-delay:.6s;}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(25px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/* Scrollbar */

::-webkit-scrollbar{

width:8px;

}

::-webkit-scrollbar-track{

background:#eef5ee;

}

::-webkit-scrollbar-thumb{

background:#1f6b2f;

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#2e7d32;

}

/* Tablet */

@media(max-width:992px){

.creator-stats{

grid-template-columns:repeat(2,1fr);

}

.video-grid{

grid-template-columns:repeat(2,1fr);

}

.video-card video{

height:340px;

}

}

/* Mobile */

@media(max-width:768px){

.hub-header{

padding:35px 15px;

}

.hub-header h1{

font-size:30px;

}

.hub-header p{

font-size:15px;

}

.creator-stats{

grid-template-columns:repeat(2,1fr);

gap:12px;

}

.video-grid{

grid-template-columns:repeat(2,1fr);

gap:12px;

}

.video-card video{

height:250px;

}

.creator-info{

padding:10px;

}

.creator-info h3{

font-size:14px;

}

.creator-info p{

font-size:12px;

}

}

/* Small Mobile */

@media(max-width:480px){

.video-grid{

grid-template-columns:repeat(2,1fr);

gap:10px;

}

.video-card video{

height:220px;

}

.stat-card{

padding:15px 10px;

}

.stat-card strong{

font-size:20px;

}

}