@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background: #0b0b0f;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.hero {
    text-align: center;
    padding: 160px 20px 110px;
    background: linear-gradient(180deg, #15121f, #0b0b0f);
}

.hero h1 {
    font-size: 55px;
    font-weight: 600;
    color: #bbaaff;
}

.hero p {
    font-size: 18px;
    margin-top: 10px;
    color: #d5ccff;
}

.sections {
    max-width: 1100px;
    margin: 40px auto 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    padding: 0 20px;
}

.section-box {
    background: rgba(30, 30, 45, 0.7);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.07);
    backdrop-filter: blur(5px);
    transition: .25s;
}

.section-box:hover {
    transform: translateY(-6px);
    border-color: rgba(187, 170, 255, 0.35);
}

.section-box h2 {
    margin-bottom: 10px;
    color: #dcdcff;
    font-weight: 600;
}

.section-box p {
    margin-bottom: 20px;
    color: #cfcdf5;
}

.section-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #6c3cff;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: .2s;
}

.section-btn:hover {
    background: #532ecc;
}

.affiliates {
    margin: 60px auto;
    text-align: center;
    padding: 0 20px;
}

.affiliates h2 {
    font-size: 32px;
    color: #bbaaff;
    margin-bottom: 40px;
}

.aff-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.aff-card {
    text-align: center;
}

.aff-card img {
    width: 170px;
    border-radius: 12px;
    transition: .25s;
}

.aff-card img:hover {
    transform: scale(1.07);
}

.aff-card h3 {
    margin-top: 10px;
    color: #eaeaff;
}
