/* style.css */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

body {
    min-height: 100vh;
    background: #000;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

#bg-video {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.7);
}

.glass-container {
    width: 94%;
    max-width: 1350px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(25px) saturate(170%);
    -webkit-backdrop-filter: blur(25px) saturate(170%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.4);
}

/* Header Styles */
.header-main { margin-bottom: 20px; }
.top-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.nav-left { display: flex; align-items: center; gap: 12px; }
.mac-dots { display: flex; gap: 8px; margin-right: 10px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #ff5f56; } .yellow { background: #ffbd2e; } .green { background: #27c93f; }
.nav-tabs { display: flex; gap: 6px; }
.tab-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white; padding: 8px 18px; border-radius: 8px;
    font-size: 13px; text-decoration: none; transition: 0.3s;
}
.tab-item.active { background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.5); }
.nav-right { display: flex; gap: 12px; align-items: center; color: white; font-size: 13px; }
.status-pill { background: rgba(255,255,255,0.12); padding: 6px 16px; border-radius: 8px; }
.search-input {
    width: 100%; background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 25px; border-radius: 30px; color: white; outline: none;
}

/* Grid & Cards */
.sub-nav { display: flex; justify-content: space-between; margin-bottom: 30px; color: white; font-size: 13px; }
.grid-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.product-card { background: rgba(0, 0, 0, 0.25); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 15px; overflow: hidden; }
.thumb-box { width: 100%; aspect-ratio: 16/9; background-size: cover; position: relative; }
.btn-code { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgba(255,255,255,0.15); border: 1px solid #fff; padding: 6px 20px; border-radius: 8px; color: white; backdrop-filter: blur(5px); }
.card-info { padding: 20px; color: white; }
.price-text { color: #ff9f43; font-weight: 600; }
.price-paid { color: #00d2d3; font-weight: 600; }