/* ===================================================
            DYNAMIC SCRAPING PAGE
=================================================== */

.page-shell{
    width:min(1300px,92%);
    margin:auto;
}

/* ================= HERO ================= */

.hero{
    text-align:center;
    padding:80px 0 60px;
}

.hero-pill{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(124,58,237,.15);
    border:1px solid rgba(124,58,237,.35);
    color:#c4b5fd;
    margin-bottom:25px;
    font-weight:600;
}

.hero h1{
    font-size:62px;
    color:white;
    line-height:1.1;
    margin:0;
}

.gradient-text{
    display:block;
    background:linear-gradient(
    90deg,
    #3b82f6,
    #06b6d4,
    #7c3aed);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    max-width:760px;
    margin:30px auto;
    color:#94a3b8;
    line-height:1.8;
    font-size:18px;
}

/* ================= GRID ================= */

.cards-grid{

    display:grid;

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

    gap:28px;

    margin-bottom:60px;

}

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

.data-card{

    position:relative;

    overflow:hidden;

    padding:30px;

    border-radius:24px;

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

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:.35s;

}

.data-card::before{

    content:"";

    position:absolute;

    width:170px;

    height:170px;

    border-radius:50%;

    background:rgba(124,58,237,.18);

    filter:blur(70px);

    top:-70px;

    right:-70px;

}

.data-card:hover{

    transform:translateY(-10px);

    border-color:rgba(59,130,246,.35);

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

}

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

.card-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    color:white;

    margin-bottom:25px;

    background:linear-gradient(
    135deg,
    #3b82f6,
    #7c3aed);

}

.card-imdb .card-icon{

    background:linear-gradient(
    135deg,
    #f59e0b,
    #f97316);

}

/* ================= TEXT ================= */

.data-card h2{

    color:white;

    margin-bottom:15px;

    font-size:26px;

}

.data-card p{

    color:#94a3b8;

    line-height:1.8;

    margin-bottom:30px;

}

/* ================= BUTTON ================= */

.card-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border-radius:50px;

    background:linear-gradient(
    135deg,
    #3b82f6,
    #7c3aed);

    color:white;

    font-weight:600;

    transition:.35s;

}

.card-button:hover{

    transform:translateY(-5px);

}

/* ================= TABLE ================= */

.table-wrap{

    overflow:auto;

    border-radius:24px;

    padding:20px;

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

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    margin-bottom:80px;

}

/* TABLE */

.imdb-table{

    width:100%;

    border-collapse:collapse;

}

.imdb-table thead th{

    position:sticky;

    top:0;

    padding:16px;

    background:#18263f;

    color:white;

    font-size:15px;

    text-align:left;

    z-index:2;

}

.imdb-table tbody td{

    padding:14px;

    color:#dbeafe;

    border-bottom:1px solid rgba(255,255,255,.08);

}

/* Hover Row */

.imdb-table tbody tr{

    transition:.3s;

}

.imdb-table tbody tr:hover{

    background:rgba(59,130,246,.10);

}

/* Zebra */

.imdb-table tbody tr:nth-child(even){

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

}

/* IMAGE */

.thumb{

    width:85px;

    border-radius:10px;

    transition:.3s;

}

.thumb:hover{

    transform:scale(1.08);

}

/* NAME COLUMN */

.imdb-table td:nth-child(2){

    font-weight:600;

    color:white;

}

/* FOOTER */

.site-footer{

    text-align:center;

    padding:35px;

    border-top:1px solid rgba(255,255,255,.08);

    color:#94a3b8;

}

/* ================= MOBILE ================= */

@media(max-width:768px){

.hero h1{

font-size:42px;

}

.cards-grid{

grid-template-columns:1fr;

}

.table-wrap{

padding:12px;

}

.imdb-table{

font-size:14px;

}

.thumb{

width:60px;

}

}