
.hero-bg {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(26, 26, 46, 0.95));
    position: relative;
    overflow: hidden;
}

.partner-level-section {
    margin-bottom: 3rem;
}

.level-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.level-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.level-title.emerald-level {
    background: linear-gradient(45deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.level-title.diamond-level {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.level-title.eisen-level {
    background: linear-gradient(45deg, #6b7280, #4b5563);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.level-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.emerald-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.diamond-badge {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.eisen-badge {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: rgba(136, 120, 204, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(136, 120, 204, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(136, 120, 204, 0.1);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(136, 120, 204, 0.2);
}

.emerald-card:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
}

.diamond-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

.eisen-card:hover {
    border-color: rgba(107, 114, 128, 0.5);
    box-shadow: 0 20px 60px rgba(107, 114, 128, 0.3);
}

.partner-header {
    background: linear-gradient(135deg, rgba(136, 120, 204, 0.2), rgba(168, 85, 247, 0.2));
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(136, 120, 204, 0.2);
}

.partner-logo {
    width: 80px;
    height: 80px;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.partner-level-indicator {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.emerald-indicator {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.diamond-indicator {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.eisen-indicator {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
}

.partner-content {
    padding: 2rem;
}

.partner-name {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Fredoka', sans-serif;
}

.partner-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #a855f7;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.partner-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.level-card {
    background: rgba(136, 120, 204, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(136, 120, 204, 0.15);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(136, 120, 204, 0.1);
}

.level-card:hover {
    transform: translateY(-10px);
}

.emerald-card:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
}

.diamond-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

.eisen-card:hover {
    border-color: rgba(107, 114, 128, 0.5);
    box-shadow: 0 20px 60px rgba(107, 114, 128, 0.3);
}

.level-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.emerald-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.diamond-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.eisen-icon {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.level-name {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Fredoka', sans-serif;
}

.level-benefits,
.requirements {
    text-align: left;
    margin-bottom: 1.5rem;
}

.level-benefits h5,
.requirements h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Fredoka', sans-serif;
}

.level-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.level-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #e2e8f0;
    font-size: 0.9rem;
}

.level-benefits li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.requirements p {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.contact-card {
    background: rgba(136, 120, 204, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(136, 120, 204, 0.15);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(136, 120, 204, 0.1);
}

.contact-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #8878cc, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
}

.contact-card h3 {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Fredoka', sans-serif;
}

.contact-card p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Fredoka', sans-serif;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #a855f7;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-note {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.contact-note p {
    color: #e2e8f0;
    margin: 0;
    font-size: 0.9rem;
}

.no-partners-card {
    background: rgba(136, 120, 204, 0.05);
    border: 1px solid rgba(136, 120, 204, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .level-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .partners
