@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #080a14;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.bg-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.partenaire-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 140px 20px 60px 20px;
    position: relative;
    z-index: 1;
}

.hero-section {
    text-align: center;
    margin-bottom: 50px;
}

.title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.purple-text {
    color: #8A2BE2;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.subtitle {
    font-size: 1.15rem;
    color: #b2b6c6;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.partners-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.partner-card {
    background: rgba(13, 16, 33, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(138, 43, 226, 0.18);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    box-sizing: border-box;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.card-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.6);
    color: #e0d5ff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}

.partner-logo {
    height: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.partner-info h3 {
    font-size: 1.6rem;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.partner-info p {
    color: #b2b6c6;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 25px;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Style Instant Gaming */
.ig-card {
    border-color: rgba(255, 154, 0, 0.2);
}

.ig-card:hover {
    border-color: rgba(255, 154, 0, 0.6);
    box-shadow: 0 15px 35px rgba(255, 154, 0, 0.15);
}

.ig-badge {
    background: rgba(255, 154, 0, 0.1);
    border-color: rgba(255, 154, 0, 0.6);
    color: #ffb03a;
}

.ig-icon-color {
    color: rgba(255, 154, 0, 0.5);
    font-size: 3.2rem;
}

.instant-gaming-banner {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
}

.ig-link {
    border-color: #ff9a00;
    background: rgba(255, 154, 0, 0.05);
}

.ig-link:hover {
    background: #ff9a00;
    box-shadow: 0 0 20px rgba(255, 154, 0, 0.4);
}