.info-title {
    font-size: 2.5rem;
    margin-bottom: 32px;
    color: #fff;
    letter-spacing: -0.5px;
}

.info-section h3 {
    color: var(--accent);
    font-size: 1.4rem;
    margin: 40px 0 16px;
}

.limits-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.limit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px 28px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: background 0.2s;
}

.limit-row:hover {
    background: rgba(255, 255, 255, 0.04);
}

.limit-label { color: var(--text-secondary); font-size: 15px; font-weight: 500;}
.limit-value { color: #fff; font-weight: 800; font-size: 16px; background: rgba(139, 92, 246, 0.2); padding: 4px 12px; border-radius: 8px;}

.description-text p {
    margin-bottom: 24px;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}