/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #2c2e36;
    color: white;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
}

.app-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #3a3d47 0%, #2c2e36 100%);
}

/* Sidebar Menu Styles */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: linear-gradient(180deg, #313341 0%, #25262F 100%);
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.sidebar-menu.open {
    left: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay.show {
    display: block;
    opacity: 1;
}

.sidebar-logo {
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo img {
    height: auto;
    width: 150px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.menu-items {
    flex: 1;
    padding: 20px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.menu-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.menu-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.menu-item:hover .menu-icon {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.12);
}

.menu-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.menu-text h3 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2px;
}

/* Social Media Icons */
.social-media-icons {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    background-color: #1e2026;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icon {
    width: 36px;
    height: 36px;
    margin: 0 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}

.social-icon i {
    font-size: 16px;
}

.sidebar-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.1);
}

.sidebar-footer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 5px 0;
    letter-spacing: 1px;
}

.sidebar-footer p:first-child {
    font-weight: 500;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(180deg, #3a3d47 0%, #333640 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.menu-button button, .frekans-button button {
    background-color: transparent;
    border: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    font-size: 12px;
    transition: transform 0.2s ease;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 500;
}

.menu-button button:hover, .frekans-button button:hover {
    transform: translateY(-2px);
}

.menu-button i, .frekans-button i {
    font-size: 24px;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo img {
    height: auto;
    width: 120px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

/* Now Playing Section */
.now-playing {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    background: linear-gradient(0deg, rgba(36, 38, 46, 0.6) 0%, rgba(58, 61, 71, 0.2) 100%);
}

.now-playing-text {
    margin-bottom: 30px;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 8px;
}

.now-playing-text:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 1px;
}

.player-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.song-image {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.placeholder-image {
    width: 100%;
    height: 100%;
}

.singer-img {
    background: linear-gradient(45deg, #794c74, #523a5c);
    animation: gradientPulse 10s ease infinite;
}

.turku-img {
    background: linear-gradient(45deg, #e4a23a, #c78639);
}

.slow-img {
    background: linear-gradient(45deg, #8c3a57, #6f2b43);
}

.arabesk-img {
    background: linear-gradient(45deg, #333333, #222222);
}

@keyframes gradientPulse {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.play-button i {
    color: #b31b34;
    font-size: 20px;
    margin-left: 3px; /* Offset for play icon */
}

.audio-wave {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin-bottom: 20px;
    opacity: 0.8;
}

.wave-left, .wave-right {
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 50"><path d="M0,25 L5,15 L10,35 L15,5 L20,45 L25,15 L30,25 L35,10 L40,40 L45,20 L50,30" stroke="rgba(255,255,255,0.7)" fill="none" stroke-width="2" /></svg>');
    background-repeat: repeat-x;
    width: 45%;
}

.wave-right {
    transform: scaleX(-1);
}

.song-info {
    text-align: center;
    margin-top: 15px;
}

.song-info h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.song-info p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Other Stations Section */
.other-stations {
    padding: 30px 20px;
    background: linear-gradient(0deg, rgba(36, 38, 46, 1) 0%, rgba(44, 46, 54, 0.8) 100%);
}

.stations-header {
    margin-bottom: 25px;
}

.stations-header h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.stations-header h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

.stations-header p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.stations-grid {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 15px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.stations-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.station-card {
    min-width: 150px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.station-card:hover {
    transform: translateY(-5px);
}

.station-image {
    position: relative;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.play-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease;
}

.station-card:hover .play-icon {
    transform: scale(1.1);
}

.play-icon i {
    color: #b31b34;
    font-size: 12px;
    margin-left: 2px;
}

.station-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.station-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .song-image {
        width: 130px;
        height: 130px;
    }

    .song-info h2 {
        font-size: 20px;
    }

    .song-info p {
        font-size: 14px;
    }
}

/* Uyku Modu Header ve Kapat Butonu Ortak Kullanım İçin */
.uyku-modu-container {
    background: linear-gradient(135deg, #3a3d47 0%, #2c2e36 100%);
    min-height: 100vh;
    padding-bottom: 30px;
}
.uyku-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: transparent;
}
.back-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 12px;
}
.back-button i {
    font-size: 24px;
    margin-bottom: 5px;
}
.placeholder-space {
    width: 40px;
}
.uyku-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
.uyku-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    text-align: center;
}
@media (max-width: 480px) {
    .uyku-title {
        font-size: 20px;
    }
    .uyku-header {
        padding: 10px 8px;
    }
    .back-button i {
        font-size: 20px;
    }
    .uyku-content {
        padding: 10px;
    }
} 