* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; 
    line-height: 1.6; 
    color: #333; 
    background-color: #fcfcfc; 
}
.container { width: 90%; max-width: 1200px; margin: auto; }

/* Grey Hero Section */
.hero {
    background-color: #333; /* Dark Grey replaces background image */
    color: #fff;
    padding: 100px 0;
    text-align: center;
}
.hero h1 { font-size: 2.8rem; letter-spacing: 4px; margin-bottom: 10px; }
.hero .subtitle { font-size: 1.1rem; color: #aaa; text-transform: uppercase; }

.section { padding: 60px 0; }
h2 { font-size: 2rem; margin-bottom: 30px; border-bottom: 3px solid #333; display: inline-block; }

/* Reels Card Layout */
.reels-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.card { background: #eee; padding: 40px; text-align: center; border-radius: 4px; }

@media (min-width: 768px) {
    .reels-grid { grid-template-columns: repeat(4, 1fr); }
    .hero h1 { font-size: 4.5rem; }
}

footer { background: #111; color: #666; text-align: center; padding: 40px 0; margin-top: 40px; }