:root { --gold: #D4AF37; --dark-bg: #0a0a0a; --panel-bg: #161616; --text-gray: #b0b0b0; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--dark-bg); color: white; font-family: 'Montserrat', sans-serif; }
.container { width: 90%; max-width: 1100px; margin: auto; }

/* Market Ticker Wrapper */
.market-ticker { width: 100%; border-bottom: 2px solid var(--gold); }

/* Banner */
.top-header { background: #000; padding: 15px 0; display: flex; justify-content: center; }
.banner-wrapper { position: relative; max-width: 850px; width: 95%; overflow: hidden; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.company-banner { width: 100%; height: auto; display: block; }
.glimmer { position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); transform: skewX(-20deg); animation: shine 6s infinite ease-in-out; }
@keyframes shine { 0% { left: -100%; } 20% { left: 120%; } 100% { left: 120%; } }

/* Nav */
.info-bar { background: var(--panel-bg); padding: 15px 0; border-bottom: 1px solid #222; position: sticky; top: 0; z-index: 1000; }
.info-bar .container { display: flex; justify-content: space-between; align-items: center; }
.btn-nav { padding: 10px 20px; font-size: 0.8rem; font-weight: bold; border-radius: 4px; text-decoration: none; text-transform: uppercase; }
.btn-gold { background: var(--gold); color: #000; }
.btn-dark { background: #333; color: var(--gold); margin-right: 10px; }

/* Content */
.hero-text { text-align: center; padding: 60px 0; }
.hero-text h1 { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 10px; }
.capital-badge { display: inline-block; margin-top: 25px; padding: 8px 20px; border: 1px solid var(--gold); color: var(--gold); font-size: 0.85rem; font-weight: bold; }

.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 80px; }
.product-card { background: var(--panel-bg); border-radius: 12px; overflow: hidden; border: 1px solid #222; transition: 0.4s; }
.product-card:hover { transform: translateY(-10px); border-color: var(--gold); }
.img-container { height: 400px; overflow: hidden; }
.img-container img { width: 100%; height: 100%; object-fit: cover; }
.product-info { padding: 30px; text-align: center; }
.product-info h3 { color: var(--gold); font-size: 1.5rem; }

footer { background: #050505; padding: 50px 0; text-align: center; border-top: 1px solid #111; }
.footer-logo { color: var(--gold); font-weight: bold; letter-spacing: 2px; }

@media (max-width: 768px) { .info-bar .container { flex-direction: column; gap: 15px; } .product-grid { grid-template-columns: 1fr; } }