body {
    font-family: var(--font-family-body);
}

.new-v1-platforms,
.new-v1-platforms * {
    box-sizing: border-box;
}

.new-v1-platforms > main,
.new-v1-platforms > div {
    margin: 0 auto;
    font-family: var(--font-family-body);
    background-color: #ebeef6;
    color: var(--foreground);
    -webkit-font-smoothing: antialiased;
}

.new-v1-platforms-navbar {
    height: 56px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 16px;
    justify-content: space-between;
    background: var(--background);
}

@media (min-width: 768px) {
    .new-v1-platforms-navbar {
        height: 64px;
        padding: 0 32px;
    }
}

.new-v1-platforms-nav-brand {
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .new-v1-platforms-nav-brand {
        font-size: 20px;
    }
}

.new-v1-platforms-nav-links {
    display: none;
    gap: 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .new-v1-platforms-nav-links {
        display: flex;
    }
}

.new-v1-platforms-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.new-v1-platforms-page-header {
    display: grid;
    padding: 24px 16px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .new-v1-platforms-page-header {
        padding: 0 32px 24px;
    }
}

.new-v1-platforms-page-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .new-v1-platforms-page-title {
        font-size: 32px;
    }
}

.new-v1-platforms-page-description {
    font-size: 14px;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .new-v1-platforms-page-description {
        font-size: 16px;
    }
}

.new-v1-platforms-results-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 768px) {
    .new-v1-platforms-results-container {
        padding: 0 32px;
        gap: 16px;
    }
}

.new-v1-platforms-platform-card {
    display: flex;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px;
    background: var(--card);
    gap: 16px;
    align-items: flex-start;
    flex-direction: column;
}

@media (min-width: 640px) {
    .new-v1-platforms-platform-card {
        flex-direction: row;
        padding: 20px;
        gap: 20px;
    }
}

@media (min-width: 768px) {
    .new-v1-platforms-platform-card {
        padding: 24px;
        gap: 24px;
    }
}

.new-v1-platforms-platform-logo {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    object-fit: contain;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .new-v1-platforms-platform-logo {
        width: 64px;
        height: 64px;
    }
}

.new-v1-platforms-platform-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.new-v1-platforms-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
}

.new-v1-platforms-platform-name-group h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .new-v1-platforms-platform-name-group h3 {
        font-size: 18px;
        gap: 10px;
    }
}

.new-v1-platforms-country-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--secondary);
    color: var(--secondary-foreground);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .new-v1-platforms-country-pill {
        font-size: 11px;
    }
}

.new-v1-platforms-country-flag-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
}

.new-v1-platforms-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: #ecfdf5;
    color: #059669;
    font-size: 10px;
    font-weight: 600;
    border-radius: 99px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .new-v1-platforms-verified-badge {
        font-size: 11px;
    }
}

.new-v1-platforms-platform-tags {
    display: flex;
    gap: 6px;
    margin-top: 6px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .new-v1-platforms-platform-tags {
        gap: 8px;
    }
}

.new-v1-platforms-tag {
    font-size: 11px;
    color: var(--muted-foreground);
    background: var(--secondary);
    padding: 2px 8px;
    border-radius: 4px;
}

@media (min-width: 768px) {
    .new-v1-platforms-tag {
        font-size: 12px;
    }
}

.new-v1-platforms-feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.new-v1-platforms-feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--muted);
    color: var(--muted-foreground);
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .new-v1-platforms-feature-badge {
        font-size: 11px;
    }
}

.new-v1-platforms-feature-badge--highlight {
    background: var(--secondary);
    color: var(--secondary-foreground);
}

.new-v1-platforms-card-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 4px;
}

@media (min-width: 640px) {
    .new-v1-platforms-card-metrics {
        display: flex;
        gap: 32px;
        justify-content: flex-start;
    }
}

.new-v1-platforms-metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.new-v1-platforms-metric-label {
    font-size: 11px;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .new-v1-platforms-metric-label {
        font-size: 12px;
    }
}

.new-v1-platforms-metric-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .new-v1-platforms-metric-value {
        font-size: 14px;
    }
}

.new-v1-platforms-card-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
}

@media (min-width: 640px) {
    .new-v1-platforms-card-actions {
        align-items: flex-end;
        width: auto;
        min-width: 180px;
    }
}

.new-v1-platforms-rating-box {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 15px;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .new-v1-platforms-rating-box {
        font-size: 16px;
    }
}

.new-v1-platforms-star-icon {
    color: #f59e0b;
}

.new-v1-platforms-visit-btn {
    padding: 10px 16px;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    width: 100%;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .new-v1-platforms-visit-btn {
        padding: 8px 16px;
    }
}

.new-v1-platforms-visit-btn:hover {
    color: #93bfff;
}

.new-v1-platforms-secondary-btn {
    padding: 8px 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: transparent;
    color: var(--foreground);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .new-v1-platforms-secondary-btn {
        padding: 6px 12px;
    }
}

.new-v1-platforms-card-secondary-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Mobile-specific utility classes */
@media (max-width: 639px) {
    .mobile-hide {
        display: none !important;
    }

    .mobile-full-width {
        width: 100% !important;
    }
}
