/* Custom CSS for Radio Website - canliradyodinle.fm Style */

:root {
    --primary-blue: #2563eb;
    --secondary-blue: #1e40af;
    --light-blue: #3b82f6;
    --dark-blue: #1d4ed8;
    --gradient-start: #0ea5e9;
    --gradient-end: #2563eb;
    --text-light: #e2e8f0;
    --text-dark: #1e293b;
    --card-bg: rgba(255, 255, 255, 0.95);
    --border-color: #e2e8f0;
    --purple: #9c27b0;
}

.text-purple {
    color: var(--purple) !important;
}

.bg-purple {
    background-color: var(--purple) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}


/* Header Section */

.header {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: white !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand:hover {
    color: var(--text-light) !important;
}

.navbar-brand i {
    font-size: 2rem;
}

.search-container {
    position: relative;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    width: 300px;
    outline: none;
    transition: all 0.3s ease;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-box input:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.search-btn {
    position: absolute;
    right: 5px;
    background: none;
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light) !important;
}

.navbar-nav .nav-link i {
    font-size: 1.1rem;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* Hero Section */

.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.radio-wave-animation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radio-icon {
    font-size: 4rem;
    color: white;
    z-index: 10;
    position: relative;
}

.wave {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: wave-animation 2s infinite;
}

.wave1 {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.wave2 {
    width: 150px;
    height: 150px;
    animation-delay: 0.5s;
}

.wave3 {
    width: 200px;
    height: 200px;
    animation-delay: 1s;
}

@keyframes wave-animation {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}


/* Category Navigation */

.category-nav {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
}

.category-list {
    display: flex;
    list-style: none;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    margin: 0;
}

.category-list li a {
    display: block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-list li a:hover,
.category-list li a.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}


/* Main Content */

.main-content {
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


/* Player Section */

.player-section {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.current-radio-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.current-radio-info h5 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.current-radio-info p {
    color: #666;
    margin-bottom: 0;
}

.player-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.player-controls button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.player-controls button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-control .form-range {
    width: 100px;
}


/* Quick Access Section */

.quick-access-section {
    margin-bottom: 3rem;
}

.quick-access-item {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.quick-access-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quick-access-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: block;
}

.quick-access-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}


/* Radio Stations Section */

.radio-stations-section {
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.radio-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.radio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.radio-card.playing {
    border: 2px solid var(--primary-blue);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.radio-image {
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 10px;
}

.radio-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.radio-card:hover .radio-image img {
    transform: scale(1.05);
}

.radio-info {
    text-align: center;
}

.radio-info h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.radio-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.radio-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.radio-meta .badge {
    background: var(--primary-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.radio-meta .listeners {
    color: #666;
    font-size: 0.8rem;
}

.radio-meta .frequency {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.8rem;
}

.play-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-button:hover {
    background: var(--secondary-blue);
    transform: scale(1.1);
}

.play-button i {
    font-size: 1.2rem;
}


/* Radio Groups Section */

.radio-groups-section {
    margin-bottom: 3rem;
}

.radio-group-item {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.radio-group-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.radio-group-item h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.radio-group-item span {
    color: #666;
    font-size: 0.9rem;
}


/* About Section */

.about-section {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-content strong {
    color: var(--primary-blue);
    font-weight: 600;
}


/* Footer Section */

.footer-section {
    background: black;
    padding: 2rem 0;
    color: white;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-light);
}

.footer-section p {
    margin: 0;
    opacity: 0.8;
}


/* Notification */

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--card-bg);
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-content span {
    flex: 1;
}

.btn-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 20px;
    height: 20px;
}

.btn-close:hover {
    color: var(--text-dark);
}


/* Responsive Design */

@media (max-width: 768px) {
    .search-box input {
        width: 200px;
    }
    .category-list {
        padding: 0.5rem;
    }
    .category-list::-webkit-scrollbar {
        height: 4px;
    }
    .category-list::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
    }
    .category-list::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
    }
    .radio-card {
        margin-bottom: 1rem;
    }
    .radio-image {
        height: 120px;
    }
    .player-section {
        padding: 1.5rem;
    }
    .player-controls {
        flex-direction: row;
        justify-content: center;
    }
    .volume-control .form-range {
        width: 80px;
    }
}

@media (max-width: 576px) {
    .search-container {
        display: none !important;
    }
    .navbar-brand {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .quick-access-item {
        padding: 1.5rem;
    }
    .quick-access-item i {
        font-size: 2rem;
    }
    .radio-card {
        padding: 1rem;
    }
    .radio-info h5 {
        font-size: 1.1rem;
    }
    .about-section {
        padding: 2rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 200px;
    }
}


/* Animations */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}


/* Modern Player Styles */

.modern-player {
    border: 1px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
}

.modern-player-container {
    position: relative;
}


/* Live Indicator */

.live-indicator {
    position: relative;
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #dc3545;
    border-radius: 50%;
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}


/* Main Play Button */

.main-control-wrapper {
    position: relative;
}

.play-button-wrapper {
    position: relative;
    display: inline-block;
}

.modern-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #495057 0%, #6c757d 100%);
    color: white;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(73, 80, 87, 0.3);
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.modern-play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(73, 80, 87, 0.4);
}

.modern-play-btn:active {
    transform: scale(0.95);
}

.modern-play-btn i {
    margin-left: 2px;
}

.modern-play-btn.playing i {
    margin-left: 0;
}


/* Pulse Animation */

.pulse-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(73, 80, 87, 0.3);
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
}

.pulse-animation.active {
    animation: pulse-ring 2s infinite;
    opacity: 1;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}


/* Control Buttons */

.control-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #6c757d;
    background: white;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.control-btn:hover {
    background: #6c757d;
    color: white;
    transform: scale(1.1);
}


/* Player Info Cards */

.now-playing-card,
.volume-control-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.now-playing-card:hover,
.volume-control-card:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}


/* Status Badge */

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-ready {
    background: #e9ecef;
    color: #6c757d;
}

.status-playing {
    background: #d4edda;
    color: #155724;
}

.status-error {
    background: #f8d7da;
    color: #721c24;
}

.status-paused {
    background: #fff3cd;
    color: #856404;
}

.status-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    margin-right: 6px;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}


/* Volume Controls */

.volume-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #6c757d;
    background: white;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.volume-btn:hover {
    background: #6c757d;
    color: white;
    transform: scale(1.1);
}

.volume-percentage {
    background: #6c757d;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}


/* Modern Volume Slider */

.modern-volume-slider {
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, #6c757d 0%, #6c757d 50%, #e9ecef 50%, #e9ecef 100%);
    outline: none;
    transition: all 0.3s ease;
}

.modern-volume-slider:hover {
    transform: scaleY(1.2);
}

.modern-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #495057 0%, #6c757d 100%);
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(73, 80, 87, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(73, 80, 87, 0.4);
}

.modern-volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #495057 0%, #6c757d 100%);
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(73, 80, 87, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}


/* Action Buttons */

.action-btn {
    width: 100%;
    padding: 10px 16px;
    border-radius: 25px;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.favorite-btn:hover {
    border-color: #dc3545;
    background: #dc3545;
    color: white;
}

.share-btn:hover {
    border-color: #0d6efd;
    background: #0d6efd;
    color: white;
}


/* Responsive Design */

@media (max-width: 768px) {
    .modern-play-btn {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }
    .pulse-animation {
        width: 90px;
        height: 90px;
    }
    .control-btn {
        width: 36px;
        height: 36px;
    }
    .volume-btn {
        width: 32px;
        height: 32px;
    }
    .now-playing-card,
    .volume-control-card {
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .modern-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    .pulse-animation {
        width: 80px;
        height: 80px;
    }
    .control-buttons {
        gap: 8px;
    }
    .control-btn {
        width: 32px;
        height: 32px;
    }
}

.player-main-control .play-button-container {
    position: relative;
    display: inline-block;
}

.main-play-button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #495057 0%, #6c757d 100%);
    border: none;
    transition: all 0.3s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 4px 15px rgba(73, 80, 87, 0.3);
}

.play-icon {
    font-size: 2.5rem;
    margin-left: 3px;
}

.pulse-ring {
    width: 120px;
    height: 120px;
    border: 2px solid rgba(73, 80, 87, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.player-main-control button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.player-main-control button:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.player-main-control button:active {
    transform: scale(0.95);
}


/* Pulse Ring Animation */

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.play-button-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(102, 126, 234, 0.5);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
    z-index: 1;
}


/* Volume Slider Enhancements */

.volume-slider {
    background: linear-gradient(to right, #6c757d 0%, #6c757d 50%, #e9ecef 50%, #e9ecef 100%);
    transition: all 0.3s ease;
}

.volume-section .form-range {
    transition: all 0.3s ease;
}

.volume-section .form-range:hover {
    transform: scaleY(1.1);
}

.volume-section .form-range::-webkit-slider-thumb {
    background: linear-gradient(135deg, #495057 0%, #6c757d 100%);
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(73, 80, 87, 0.3);
    transition: all 0.3s ease;
}

.volume-section .form-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(73, 80, 87, 0.4);
}


/* Glass Effect for Player Info Sections */

.glass-effect {
    background: rgba(248, 249, 250, 0.9);
    border: 1px solid rgba(233, 236, 239, 0.5);
    transition: all 0.3s ease;
}

.now-playing-section,
.volume-section {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.now-playing-section:hover,
.volume-section:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


/* Additional Controls Hover Effects */

.additional-controls .btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.additional-controls .btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.additional-controls .btn-outline-secondary:hover {
    background-color: #6c757d;
    color: white;
    border-color: #6c757d;
}

.additional-controls .btn-outline-light {
    color: #495057;
    border-color: #dee2e6;
    background-color: #f8f9fa;
}

.additional-controls .btn-outline-light:hover {
    background-color: #e9ecef;
    color: #495057;
    border-color: #dee2e6;
}

.additional-controls .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.additional-controls .btn:hover::before {
    width: 100%;
    height: 100%;
}

.additional-controls .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


/* Skip Button Animations */

.player-main-control .btn-outline-primary {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.player-main-control .btn-outline-primary {
    border-color: #6c757d;
    color: #6c757d;
}

.player-main-control .btn-outline-primary:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #495057 0%, #6c757d 100%);
    border-color: transparent;
    color: white;
}


/* Stream Status Badge Animation */

.stream-status .badge {
    transition: all 0.3s ease;
    position: relative;
}

.stream-status .badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 8px;
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    transform: translateY(-50%);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-50%) scale(0.8);
    }
}


/* Responsive Adjustments for Modern Player */

@media (max-width: 768px) {
    .main-play-button {
        width: 80px;
        height: 80px;
        /* Improve mobile touch targets */
        min-height: 44px;
        min-width: 44px;
    }
    .play-icon {
        font-size: 2rem !important;
    }
    .pulse-ring {
        width: 100px;
        height: 100px;
    }
    .now-playing-section,
    .volume-section {
        padding: 1rem !important;
    }
    .additional-controls .btn {
        font-size: 0.8rem;
        padding: 0.375rem 0.75rem;
        min-height: 44px;
        /* Apple's recommended touch target size */
    }
}

@media (max-width: 576px) {
    .player-main-control button {
        width: 70px;
        height: 70px;
    }
    .player-main-control button i {
        font-size: 1.8rem !important;
    }
    .additional-controls .col-6 {
        margin-bottom: 0.5rem;
    }
}


/* Loading States */

.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* Scrollbar Styling */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}


/* Form Range Styling */

.form-range {
    background: transparent;
    cursor: pointer;
}

.form-range::-webkit-slider-track {
    background: rgba(255, 255, 255, 0.2);
    height: 4px;
    border-radius: 2px;
}

.form-range::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.form-range::-moz-range-track {
    background: rgba(255, 255, 255, 0.2);
    height: 4px;
    border-radius: 2px;
    border: none;
}

.form-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}


/* Focus States */

*:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

button:focus,
input:focus,
a:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}


/* Hover Effects */

.hover-effect {
    transition: all 0.3s ease;
}

.hover-effect:hover {
    transform: translateY(-2px);
}


/* Radio Page Styles */

.radio-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.radio-link:hover {
    text-decoration: none;
    color: inherit;
}

.radio-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.player-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    text-align: center;
}

.player-controls {
    margin: 1.5rem 0;
}

.player-controls button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.player-controls button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.volume-control {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-control .form-range {
    width: 100px;
    accent-color: white;
}

.player-info {
    margin-top: 1rem;
}

.now-playing {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stream-status {
    font-size: 0.9rem;
}

.ad-container {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.3s ease;
}

.ad-container:hover {
    border-color: #adb5bd;
    background: #e9ecef;
}

.breadcrumb {
    background: transparent;
    padding: 0.5rem 0;
}

.breadcrumb-item a {
    color: var(--primary-blue);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.list-group-item {
    border: none;
    border-bottom: 1px solid #dee2e6;
    padding: 1rem;
}

.list-group-item:last-child {
    border-bottom: none;
}

.list-group-item:hover {
    background-color: #f8f9fa;
}


/* Social Share Buttons */

.btn-facebook {
    background-color: #1877f2;
    border-color: #1877f2;
}

.btn-facebook:hover {
    background-color: #166fe5;
    border-color: #166fe5;
}

.btn-twitter {
    background-color: #1da1f2;
    border-color: #1da1f2;
}

.btn-twitter:hover {
    background-color: #0d8bd9;
    border-color: #0d8bd9;
}

.btn-whatsapp {
    background-color: #25d366;
    border-color: #25d366;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    border-color: #1ebe57;
}


/* Responsive adjustments for radio page */

@media (max-width: 768px) {
    .player-container {
        padding: 1.5rem;
    }
    .player-controls button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .volume-control .form-range {
        width: 80px;
    }
    .radio-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    .ad-container {
        min-height: 150px !important;
    }
}

@media (max-width: 576px) {
    .player-container {
        padding: 1rem;
    }
    .volume-control {
        flex-direction: column;
        gap: 0.25rem;
    }
    .volume-control .form-range {
        width: 120px;
    }
}


/* Yeni Hero Section Tasarımı */

.hero-section-new {
    background: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(255, 255, 255, 1) 50%, rgba(25, 135, 84, 0.05) 100%);
    z-index: 1;
}

.hero-section-new .container {
    position: relative;
    z-index: 2;
}

.hero-content-new {
    padding: 20px 0;
}

.hero-title-new {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.hero-title-new span {
    display: inline-block;
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-new {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #6c757d;
}

.hero-buttons-new {
    margin-bottom: 2rem;
}

.hero-buttons-new .btn {
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-buttons-new .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-buttons-new .btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    border: none;
}

.hero-buttons-new .btn-outline-primary {
    border: 2px solid #0d6efd;
    color: #0d6efd;
    background: transparent;
}

.hero-buttons-new .btn-outline-primary:hover {
    background: #0d6efd;
    color: white;
}

.hero-stats {
    padding: 20px 0;
}

.stat-item {
    text-align: center;
    padding: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image-new {
    text-align: center;
    padding: 20px;
}

.hero-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}


/* SVG Animasyonları */

.radio-waves .wave-1 {
    animation: wave-pulse 2s ease-in-out infinite;
}

.radio-waves .wave-2 {
    animation: wave-pulse 2s ease-in-out infinite 0.5s;
}

.radio-waves .wave-3 {
    animation: wave-pulse 3s ease-in-out infinite;
}

.radio-waves .wave-4 {
    animation: wave-pulse 3s ease-in-out infinite 0.7s;
}

.music-notes text {
    animation: float 3s ease-in-out infinite;
}

.music-notes text:nth-child(2) {
    animation-delay: 0.5s;
}

.music-notes text:nth-child(3) {
    animation-delay: 1s;
}

.music-notes text:nth-child(4) {
    animation-delay: 1.5s;
}

.music-notes text:nth-child(5) {
    animation-delay: 2s;
}

.decorative circle {
    animation: pulse-dot 2s ease-in-out infinite;
}

.decorative circle:nth-child(2) {
    animation-delay: 0.5s;
}

.decorative circle:nth-child(3) {
    animation-delay: 1s;
}

.decorative circle:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes wave-pulse {
    0%,
    100% {
        opacity: 0.2;
        stroke-width: 2;
    }
    50% {
        opacity: 0.8;
        stroke-width: 4;
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-dot {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}


/* Responsive Design */

@media (max-width: 768px) {
    .hero-section-new {
        padding: 40px 0;
    }
    .hero-title-new {
        font-size: 2.2rem;
    }
    .hero-description-new {
        font-size: 1rem;
    }
    .hero-buttons-new .btn {
        font-size: 0.9rem;
        padding: 12px 24px;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .stat-label {
        font-size: 0.8rem;
    }
    .hero-svg {
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .hero-section-new {
        padding: 30px 0;
    }
    .hero-title-new {
        font-size: 1.8rem;
    }
    .hero-description-new {
        font-size: 0.95rem;
    }
    .hero-buttons-new .btn {
        display: block;
        margin-bottom: 10px;
        width: 100%;
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    .hero-buttons-new .btn:last-child {
        margin-bottom: 0;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .hero-svg {
        max-width: 280px;
    }
}


/* Yeni Section Tasarımları */


/* Section Title */

.section-title-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.section-title-new::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0;
}


/* Radio Groups Section */

.radio-groups-section-new {
    background: #ffffff;
    position: relative;
}

.radio-groups-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.02) 0%, rgba(255, 255, 255, 1) 50%, rgba(220, 53, 69, 0.02) 100%);
    z-index: 1;
}

.radio-groups-section-new .container {
    position: relative;
    z-index: 2;
}

.radio-group-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
    height: 100%;
}

.radio-group-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.group-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.radio-group-card:hover .group-icon {
    transform: scale(1.1);
}

.group-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.group-description {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.group-stats .badge {
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 20px;
}


/* About Section */

.about-section-new {
    background: #f8f9fa;
    position: relative;
}

.about-content-new {
    padding: 20px 0;
}

.about-content-new .lead {
    font-size: 1.2rem;
    line-height: 1.7;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #495057;
}

.feature-item i {
    font-size: 1.1rem;
}

.about-image-new {
    text-align: center;
    padding: 20px;
}

.about-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}


/* SVG Animasyonları - About */

.headphones {
    animation: headphone-pulse 3s ease-in-out infinite;
}

.sound-waves path {
    animation: sound-wave 2s ease-in-out infinite;
}

.sound-waves path:nth-child(2) {
    animation-delay: 0.5s;
}

.sound-waves path:nth-child(3) {
    animation-delay: 1s;
}

.sound-waves path:nth-child(4) {
    animation-delay: 1.5s;
}

.music-notes-about text {
    animation: note-bounce 2.5s ease-in-out infinite;
}

.music-notes-about text:nth-child(2) {
    animation-delay: 0.6s;
}

.music-notes-about text:nth-child(3) {
    animation-delay: 1.2s;
}

.music-notes-about text:nth-child(4) {
    animation-delay: 1.8s;
}

@keyframes headphone-pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes sound-wave {
    0%,
    100% {
        opacity: 0.3;
        stroke-width: 2;
    }
    50% {
        opacity: 0.8;
        stroke-width: 4;
    }
}

@keyframes note-bounce {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}


/* Responsive Design */

@media (max-width: 768px) {
    .section-title-new {
        font-size: 2rem;
    }
    .section-title-new::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .radio-group-card {
        padding: 25px;
    }
    .group-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .group-title {
        font-size: 1.3rem;
    }
    .about-content-new .lead {
        font-size: 1.1rem;
    }
    .about-svg {
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .section-title-new {
        font-size: 1.8rem;
    }
    .radio-group-card {
        padding: 20px;
    }
    .group-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .group-title {
        font-size: 1.2rem;
    }
    .about-content-new .lead {
        font-size: 1rem;
    }
    .feature-item {
        font-size: 0.9rem;
    }
    .about-svg {
        max-width: 250px;
    }
}


/* Popular Radios Section */

.popular-radios-section-new {
    background: #ffffff;
    position: relative;
}

.popular-radios-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.03) 0%, rgba(255, 255, 255, 1) 50%, rgba(25, 135, 84, 0.03) 100%);
    z-index: 1;
}

.popular-radios-section-new .container {
    position: relative;
    z-index: 2;
}

.popular-radio-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f1f3f4;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    height: 100%;
}

.popular-radio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.popular-radio-card:hover::before {
    opacity: 1;
}

.popular-radio-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.popular-radio-card>* {
    position: relative;
    z-index: 2;
}

.radio-icon-wrapper {
    margin-bottom: 25px;
}

.radio-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #0d6efd;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.popular-radio-card:hover .radio-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    color: white;
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.3);
}

.radio-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.popular-radio-card:hover .radio-title {
    color: #0d6efd;
}

.radio-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 25px;
    font-weight: 500;
}

.play-btn-popular {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
    position: relative;
    overflow: hidden;
}

.play-btn-popular::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.play-btn-popular:hover::before {
    width: 100%;
    height: 100%;
}

.play-btn-popular:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.4);
}

.play-btn-popular i {
    margin-left: 2px;
    position: relative;
    z-index: 2;
}


/* Özel ikon renkleri */

.popular-radio-card:nth-child(1) .radio-icon {
    color: #ffc107;
}

.popular-radio-card:nth-child(1):hover .radio-icon {
    background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
    color: white;
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.3);
}

.popular-radio-card:nth-child(2) .radio-icon {
    color: #dc3545;
}

.popular-radio-card:nth-child(2):hover .radio-icon {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.3);
}

.popular-radio-card:nth-child(3) .radio-icon {
    color: #20c997;
}

.popular-radio-card:nth-child(3):hover .radio-icon {
    background: linear-gradient(135deg, #20c997 0%, #1aa179 100%);
    color: white;
    box-shadow: 0 15px 35px rgba(32, 201, 151, 0.3);
}

.popular-radio-card:nth-child(4) .radio-icon {
    color: #6f42c1;
}

.popular-radio-card:nth-child(4):hover .radio-icon {
    background: linear-gradient(135deg, #6f42c1 0%, #59359a 100%);
    color: white;
    box-shadow: 0 15px 35px rgba(111, 66, 193, 0.3);
}


/* Playing State */

.popular-radio-card.playing {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-color: #0d6efd;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.2);
}

.popular-radio-card.playing .radio-icon {
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.3);
}

.popular-radio-card.playing .radio-title {
    color: #0d6efd;
}

.popular-radio-card.playing .play-btn-popular {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}


/* Responsive Design */

@media (max-width: 768px) {
    .popular-radio-card {
        padding: 30px 20px;
    }
    .radio-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    .radio-title {
        font-size: 1.2rem;
    }
    .radio-subtitle {
        font-size: 0.85rem;
    }
    .play-btn-popular {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .popular-radio-card {
        padding: 25px 15px;
    }
    .radio-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    .radio-title {
        font-size: 1.1rem;
    }
    .radio-subtitle {
        font-size: 0.8rem;
    }
    .play-btn-popular {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


/* Yeni Radyo Item Tasarımı */

.radio-item {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.radio-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.radio-number {
    min-width: 40px;
    margin-right: 15px;
}

.radio-number span {
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
}

.radio-logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    flex-shrink: 0;
}

.radio-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.radio-details {
    flex: 1;
    margin-right: 15px;
}

.radio-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 2px 0;
    color: #2c3e50;
}

.radio-frequency {
    font-size: 12px;
    color: #6c757d;
}

.radio-play {
    margin-left: auto;
}

.btn-play {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-play:hover {
    background: var(--secondary-blue);
    transform: scale(1.1);
}

.btn-play i {
    margin-left: 2px;
}

.radio-detail-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 60px;
    bottom: 0;
    z-index: 1;
}

.radio-item.playing {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid var(--primary-blue);
}

.radio-item.playing .btn-play {
    background: #f44336;
}

.radio-item.playing .btn-play:hover {
    background: #d32f2f;
}

.radio-item.playing .radio-name {
    color: var(--primary-blue);
}


/* Responsive Design */

@media (max-width: 768px) {
    .radio-item {
        padding: 12px;
    }
    .radio-logo {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }
    .radio-name {
        font-size: 14px;
    }
    .radio-frequency {
        font-size: 11px;
    }
    .btn-play {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .radio-item {
        padding: 10px;
    }
    .radio-number {
        min-width: 30px;
        margin-right: 10px;
    }
    .radio-number span {
        font-size: 12px;
    }
    .radio-logo {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
    .radio-name {
        font-size: 13px;
    }
    .btn-play {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}