body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.75;
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    color: #e0e0e0;
}

header {
    position: relative;
    height: 380px;
    overflow: hidden;
    margin-bottom: 50px;
}

.banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10,10,10,0.97));
    padding: 45px 20px 40px;
    text-align: center;
}

h1 {
    font-size: 3.3em;
    margin: 0 0 10px 0;
    color: #ffffff;
    text-shadow: 0 3px 10px rgba(0,0,0,0.9);
}

.tagline {
    font-size: 1.5em;
    color: #ddd;
    margin: 0 0 8px 0;
}

.subtitle {
    font-size: 1.2em;
    color: #aaa;
}

section {
    max-width: 820px;
    margin: 60px auto;
    padding: 0 25px;
}

h2 {
    color: #00a2ff;
    border-bottom: 3px solid #1f1f1f;
    padding-bottom: 14px;
    font-size: 1.85em;
}

/* Dividers */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #333, transparent);
    margin: 60px auto;
    max-width: 700px;
}

/* Offer Cards */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.offer-card {
    background: #1a1a1a;
    padding: 25px 22px;
    border-radius: 12px;
    border-left: 5px solid #00a2ff;
    transition: transform 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-card strong {
    display: block;
    color: #00a2ff;
    font-size: 1.25em;
    margin-bottom: 12px;
}

/* Featured Charts */
.featured {
    background: #1a1a1a;
    padding: 30px 20px;
    border-radius: 12px;
    margin: 35px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.featured img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .featured img {
        max-width: 88%;
    }
    header { height: 320px; }
    h1 { font-size: 2.7em; }
}

.connect-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    background: #00a2ff;
    color: white;
    padding: 16px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn:hover {
    background: #0088cc;
    transform: translateY(-4px);
}

footer {
    text-align: center;
    padding: 50px 20px 30px;
    color: #666;
    font-size: 0.95em;
}

footer a {
    color: #00a2ff;
    text-decoration: none;
}
