.country-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .country-title {
        font-size: 32px;
        text-align: center;
        margin-bottom: 48px;
    }
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

@media (min-width: 768px) {
    .country-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 24px;
    }
}

.country-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
}

@media (min-width: 768px) {
    .country-item {
        padding: 24px;
    }

    .country-item:hover {
        transform: translateY(-4px);
        border-color: var(--primary);
    }
}

.flag-icon {
    width: 40px;
    height: 28px;
    margin-bottom: 6px;
    object-fit: cover;
    border-radius: 4px;
    background: #eee;
}

@media (min-width: 768px) {
    .flag-icon {
        width: 48px;
        height: 36px;
        margin-bottom: 12px;
    }
}

.country-name {
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 13px;
}

@media (min-width: 768px) {
    .country-name {
        font-size: 14px;
        margin-bottom: 4px;
    }
}

.platform-count {
    font-size: 11px;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .platform-count {
        font-size: 12px;
    }
}
