.xp-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 24px auto;
}

.info-card {
    padding: 40px;
    margin-bottom: 60px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

.roadmap-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
}

.section-title {
    font-size: 48px;
}

.section-subtitle {
    font-size: 28px;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.section-desc {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 0;
}

.section-title.center-text,
.section-desc.center-text {
    text-align: center;
}

.xp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.xp-item {
    padding: 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.xp-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.xp-item.highlight {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
}

.xp-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.xp-label {
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
}

.badges-showcase {
    margin-top: 80px;
}

.badge-group {
    margin-bottom: 50px;
}

.group-title {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 24px;
    padding-left: 10px;
    border-left: 3px solid var(--primary);
    font-family: 'Space Grotesk', sans-serif;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}

.badge-item {
    aspect-ratio: 1 / 1;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 16px;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    box-sizing: border-box;
}

.badge-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.badge-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}

.badge-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.badge-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.badge-desc {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.action-area {
    text-align: center;
    margin-top: 80px;
    padding-bottom: 80px;
}

.btn-large {
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .xp-grid {
        grid-template-columns: 1fr;
    }

    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .badge-item {
        padding: 12px;
    }

    .badge-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .badge-name {
        font-size: 13px;
    }
}

.coins-info-section {
    margin-bottom: 80px;
}

.coins-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.column-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.earn-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.earn-card {
    padding: 20px;
    text-align: center;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.earn-amount {
    font-size: 20px;
    font-weight: 800;
    color: #fbbf24;
}

.earn-label {
    font-size: 12px;
    color: var(--text-muted);
}

.gold-glow {
    border-color: rgba(251, 191, 36, 0.3) !important;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.1);
}

.spend-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spend-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 16px;
}

.spend-icon {
    font-size: 24px;
}

.spend-text {
    display: flex;
    flex-direction: column;
}

.spend-text strong {
    font-size: 14px;
    color: white;
}

.spend-text span {
    font-size: 12px;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .coins-grid {
        grid-template-columns: 1fr;
    }
}