*{

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

}

body{

    background:#0f172a;
    color:white;

}

/* Hero */

.hero{

    padding:50px 20px;

    text-align:center;

    background:linear-gradient(135deg,#0f172a,#1e293b,#111827);

}

.hero h1{

    font-size:42px;

    margin-bottom:10px;

}

.hero p{

    color:#cbd5e1;

    font-size:18px;

}

/* Table */

.table-section{

    width:95%;

    margin:50px auto;

}

.table-container{

    overflow-x:auto;

    border-radius:15px;

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

    box-shadow:0 10px 30px rgba(0,0,0,.35);

}

table{

    width:100%;

    border-collapse:collapse;

    min-width:1200px;

}

thead{

    background:#1d4ed8;

}

thead th{

    padding:18px;

    text-align:left;

    color:white;

    font-weight:600;

    position:sticky;

    top:0;

}

tbody tr{

    transition:.3s;

}

tbody tr:nth-child(even){

    background:#172554;

}

tbody tr:nth-child(odd){

    background:#1e293b;

}

tbody tr:hover{

    background:#2563eb;

}

td{

    padding:18px;

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

    vertical-align:middle;

}

.product-image{

    width:80px;

    height:80px;

    object-fit:cover;

    border-radius:10px;

    border:2px solid white;

}

.description{

    max-width:400px;

    line-height:1.6;

    color:#d1d5db;

}

.price{

    color:#22c55e;

    font-weight:bold;

    font-size:18px;

}

.rating{

    color:#facc15;

    font-size:18px;

}

::-webkit-scrollbar{

    height:8px;

}

::-webkit-scrollbar-thumb{

    background:#3b82f6;

    border-radius:10px;

}

::-webkit-scrollbar-track{

    background:#111827;

}

@media(max-width:768px){

.hero h1{

    font-size:30px;

}

.hero p{

    font-size:16px;

}

}