.seo-content {
    margin-top: 30px;
    padding: 0 15px 20px;
}

.seo-tournament-card {
    background: linear-gradient(145deg, #1e2328 0%, #171b1f 100%);
    border: 1px solid #2d363d;
    border-radius: 8px;
    padding: 28px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.seo-tournament-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #2d363d;
}

.seo-tournament-header svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.seo-tournament-header h1 {
    font-size: 22px;
    line-height: 1.35;
    color: #e8eaed;
    margin: 0;
    font-weight: 600;
}

.seo-tournament-desc {
    line-height: 1.75;
    color: #a8b0b8;
    margin: 0 0 24px;
    font-size: 14px;
}

.seo-tournament-subtitle {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #5cb85c;
    margin: 0 0 16px;
}

.seo-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.seo-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #14181c;
    border: 1px solid #2a3238;
    border-radius: 6px;
    padding: 14px 16px;
}

.seo-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(92, 184, 92, 0.12);
    border-radius: 6px;
    flex-shrink: 0;
}

.seo-detail-icon svg {
    width: 18px;
    height: 18px;
    fill: #5cb85c;
}

.seo-detail-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.seo-detail-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7580;
}

.seo-detail-value {
    font-size: 14px;
    color: #d4d8dc;
    word-break: break-word;
}

.seo-tournament-footer {
    padding-top: 18px;
    border-top: 1px solid #2d363d;
}

.seo-tournament-footer p {
    margin: 0;
    line-height: 1.7;
    color: #8a939c;
    font-size: 13px;
}

.seo-tournament-footer a {
    color: #5cb85c;
    text-decoration: none;
    font-weight: 600;
}

.seo-tournament-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .seo-tournament-card {
        padding: 20px 18px;
    }

    .seo-details-grid {
        grid-template-columns: 1fr;
    }

    .seo-tournament-header h1 {
        font-size: 18px;
    }
}
