/* African Radio Stations Pro - Frontend Styles */

.arsp-stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.arsp-station-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arsp-station-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.arsp-ad-zone {
    margin: 20px 0;
    text-align: center;
}

.arsp-top-ad {
    margin-bottom: 30px;
}

.arsp-bottom-ad {
    margin-top: 30px;
}

.arsp-sidebar-ad {
    margin: 20px 0;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #e9ecef;
}

#arsp-sticky-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 15px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

#arsp-sticky-player button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

#arsp-sticky-player button:hover {
    background: #005177;
}

.station-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.current-playing {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
}

@media (max-width: 768px) {
    .arsp-stations-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .station-content {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .station-header {
        padding: 20px;
    }
    
    .station-header > div {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    #arsp-sticky-player > div {
        flex-direction: column;
        gap: 10px;
    }


    
}

