:root {
    --bg-dark: #0a0b0d;
    --card-bg: #16181d;
    --iprint-blue: #00b4ff;
    --iprint-orange: #ff9900;
    --text-light: #e0e0e0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* Increased Banner Height */
.hero { 
    position: relative;
    width: 100%; 
    height: 400px; /* Increased from 250px */
    border-bottom: 4px solid var(--iprint-orange);
    overflow: hidden;
}

.banner-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block;
    filter: brightness(0.7);
}

.banner-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.banner-overlay h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 0 20px var(--iprint-blue);
    letter-spacing: 5px;
}

/* Stream Grid */
.stream-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    gap: 40px;
    padding: 60px 0;
}

.stream-card {
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid #2a2d35;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.card-header {
    padding: 25px;
    background: linear-gradient(to right, #1c1f26, #121418);
    border-bottom: 1px solid #2a2d35;
}

.card-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #fff;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 180, 255, 0.1);
    color: var(--iprint-blue);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 2px;
    border: 1px solid var(--iprint-blue);
}

.badge-orange {
    background: rgba(255, 153, 0, 0.1);
    color: var(--iprint-orange);
    border: 1px solid var(--iprint-orange);
}

.status-dot {
    height: 10px;
    width: 10px;
    background-color: #ff3b3b;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px #ff3b3b;
    animation: pulse 1.5s infinite;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; 
    background: #000;
}

.stream-feed {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: none;
    object-fit: contain;
}

.card-footer {
    padding: 20px;
    font-size: 1rem;
    background: #121418;
    border-top: 1px solid #222;
}

.highlight { color: var(--iprint-blue); }
.highlight-orange { color: var(--iprint-orange); }

footer {
    text-align: center;
    padding: 60px 0;
    opacity: 0.5;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 700px) {
    .stream-grid { grid-template-columns: 1fr; }
    .hero { height: 300px; }
    .banner-overlay h1 { font-size: 1.5rem; }
}
