
.playing-nations-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.nation-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-button {
    background: #f39c12;
    color: white;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background: #000;
}

.tab-button.active {
    background: #000;
}

.nation-tabs-content {
    min-height: 400px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.nation-card {
    display: flex;
    gap: 30px;
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.nation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.nation-image {
    flex-shrink: 0;
}

.nation-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4a69bd;
}

.image-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    border: 3px solid #4a69bd;
}

.nation-content {
    flex: 1;
}

.nation-title {
    margin: 0 0 15px 0;
    font-size: 24px;
    color: #2c3e50;
}

.nation-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.view-more-btn {
    background: transparent;
    border: 2px solid #f39c12;
    color: #f39c12;
    padding: 10px 25px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: #f39c12;
    color: white;
}

@media (max-width: 768px) {
    .nation-card {
        flex-direction: column;
        text-align: center;
    }
    
    .nation-image {
        margin: 0 auto;
    }
}