*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI', sans-serif;
    background:linear-gradient(135deg,#050505,#111,#1a1a1a);
    color:white;
}

/* CART */

.cart-icon{
    position:fixed;
    top:20px;
    right:20px;
    background:linear-gradient(135deg,#d4af37,#f4d03f);
    color:black;
    padding:12px 22px;
    border-radius:30px;
    font-weight:bold;
    cursor:pointer;
    z-index:9999;
    box-shadow:0 0 20px rgba(212,175,55,.5);
    transition:.3s;
}

.cart-icon:hover{
    transform:translateY(-3px) scale(1.05);
}

/* HERO */

.Top{
    width:92%;
    margin:30px auto;
    text-align:center;
    background:rgba(255,255,255,0.04);
    backdrop-filter:blur(15px);
    border:1px solid rgba(212,175,55,.4);
    border-radius:30px;
    padding:30px;
    box-shadow:0 10px 40px rgba(0,0,0,.6);
}

h1{
    font-size:85px;
    letter-spacing:15px;
    background:linear-gradient(90deg,#f7e27d,#d4af37,#fff0a5);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    margin-bottom:20px;
    text-shadow:0 0 30px rgba(212,175,55,.2);
}

.tagline{
    color:#d6d6d6;
    font-size:20px;
    letter-spacing:3px;
    margin-bottom:25px;
}

.Top img{
    width:100%;
    max-width:1300px;
    height:600px;
    object-fit:cover;
    border-radius:25px;
    border:2px solid rgba(212,175,55,.5);
    transition:.5s;
}

.Top img:hover{
    transform:scale(1.01);
}

/* HEADINGS */

h2{
    text-align:center;
    font-size:45px;
    margin:60px 0 35px;
    color:#f4d03f;
    letter-spacing:4px;
    text-transform:uppercase;
}

/* WATCH SECTION */

.Main{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
    padding:0 20px;
}

/* CARD */

.Sub{
    width:320px;
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    overflow:hidden;
    text-align:center;
    transition:.4s;
    box-shadow:0 8px 30px rgba(0,0,0,.4);
}

.Sub:hover{
    transform:translateY(-12px);
    border-color:#d4af37;
    box-shadow:0 15px 35px rgba(212,175,55,.25);
}

.Sub img{
    width:100%;
    height:260px;
    object-fit:cover;
    cursor:pointer;
    transition:.5s;
}

.Sub:hover img{
    transform:scale(1.08);
}

.Sub button{
    width:85%;
    height:48px;
    margin:20px;
    border:none;
    border-radius:30px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    background:linear-gradient(135deg,#d4af37,#f7dc6f);
    color:black;
    transition:.3s;
}

.Sub button:hover{
    transform:scale(1.05);
    background:white;
}

/* MODAL */

.modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    z-index:10000;
}

.modal-content{
    width:65%;
    max-width:700px;
    background:#111;
    margin:80px auto;
    padding:35px;
    border-radius:20px;
    border:1px solid #d4af37;
    box-shadow:0 0 30px rgba(212,175,55,.25);
}

.close{
    float:right;
    font-size:35px;
    color:#d4af37;
    cursor:pointer;
}

.modal-content h2{
    margin-top:0;
}

/* FOOTER */

footer{
    margin-top:80px;
    background:#0a0a0a;
    border-top:1px solid rgba(212,175,55,.3);
    text-align:center;
    padding:50px;
}

footer h3{
    color:#d4af37;
    font-size:28px;
    margin-bottom:10px;
    letter-spacing:3px;
}

footer p{
    color:#aaa;
}

/* SCROLLBAR */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{
    background:#d4af37;
    border-radius:10px;
}

::-webkit-scrollbar-track{
    background:#111;
}

/* MOBILE */

@media(max-width:768px){

    h1{
        font-size:42px;
        letter-spacing:5px;
    }

    h2{
        font-size:28px;
    }

    .Top img{
        height:260px;
    }

    .Sub{
        width:95%;
    }

    .modal-content{
        width:90%;
    }

    .cart-icon{
        font-size:14px;
    }
}