/* Global Reset & Typography */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --bg-dark: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --primary: #caff33;
    /* Neon Lime - Pop & Cool */
    --accent: #a855f7;
    /* Purple Glow */
    --text-main: #ffffff;
    --text-muted: #888888;
    --glass: rgba(0, 0, 0, 0.6);
    --border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(168, 85, 247, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(202, 255, 51, 0.1) 0%, transparent 40%);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Navigation Bar (Top) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, transparent 100%);
    backdrop-filter: blur(5px);
}

.brand {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.brand span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.socials {
    display: flex;
    gap: 20px;
}

.social-icon {
    font-size: 18px;
    opacity: 0.7;
}

.social-icon:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    overflow: hidden;
}

/* Hero Slider */
.hero-bg-slider {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    mask-image: linear-gradient(to left, black 20%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 20%, transparent 100%);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    /* Yüzün görünmesi için üstten hizala */
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s ease-in-out, transform 8s linear;
}

.slide.active {
    opacity: 0.6;
    transform: scale(1.1);
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.artist-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(202, 255, 51, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 30px;
    /* Boşluk artırıldı */
    border: 1px solid rgba(202, 255, 51, 0.2);
}

.hero-title {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.1;
    /* Satır aralığı açıldı, harfler kesilmeyecek */
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-btn {
    padding: 16px 40px;
    background: var(--primary);
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.hero-btn:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(202, 255, 51, 0.4);
}

/* Default State: Hide Mobile Extra on Desktop */
.mobile-extra {
    display: none;
}

/* Radio / Playlist Section */
.radio-section {
    padding: 80px 10%;
    background: rgba(0, 0, 0, 0.3);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
}

.section-title span {
    color: var(--primary);
}

.radio-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.song-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.song-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.song-card.active {
    border-color: var(--primary);
    background: rgba(202, 255, 51, 0.05);
}

.song-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.song-info {
    flex: 1;
}

.song-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.song-artist {
    font-size: 13px;
    color: var(--text-muted);
}

.play-icon-overlay {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0;
    transform: scale(0.5);
    transition: 0.3s;
}

.song-card:hover .play-icon-overlay,
.song-card.active .play-icon-overlay {
    opacity: 1;
    transform: scale(1);
}

.song-card.active .play-icon-overlay i::before {
    content: "\f04c";
}

/* Bottom Player Bar */
.radio-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.radio-info {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 30%;
}

.radio-thumb {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    animation: spin 10s linear infinite;
    animation-play-state: paused;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(202, 255, 51, 0.2);
}

.playing .radio-thumb {
    animation-play-state: running;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.radio-text h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.radio-text p {
    font-size: 12px;
    color: var(--text-muted);
}

.radio-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 40%;
}

.ctrl-btns {
    display: flex;
    align-items: center;
    gap: 25px;
}

.ctrl-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}

.ctrl-btn:hover {
    color: var(--text-main);
}

.play-main {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--text-main);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.play-main:hover {
    transform: scale(1.1);
    background: var(--primary);
}

.progress-area {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    width: 0%;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: 0.2s;
}

.progress-area:hover .progress-fill::after {
    opacity: 1;
}

.radio-volume {
    width: 30%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.vol-slider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

/* Mouse Note Effect */
.note {
    position: fixed;
    pointer-events: none;
    animation: floatUp 1.2s ease-out forwards;
    z-index: 99999;
    font-size: 24px;
    font-weight: bold;
    filter: drop-shadow(0 0 8px var(--primary));
    opacity: 0;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg) scale(0.8);
        opacity: 1;
    }

    100% {
        transform: translateY(-80px) rotate(20deg) scale(1.2);
        opacity: 0;
    }
}

/* About Section */
.about-section {
    padding: 60px 10%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(202, 255, 51, 0.05) 100%);
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.about-img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 20px 20px 0px rgba(202, 255, 51, 0.1);
    filter: grayscale(100%);
    transition: 0.5s;
}

.about-img:hover {
    filter: grayscale(0%);
    box-shadow: 20px 20px 0px var(--primary);
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-img {
        width: 100%;
        height: auto;
        margin-top: 30px;
        box-shadow: 10px 10px 0px rgba(202, 255, 51, 0.1);
    }
}

/* Responsive Customization */
@media (max-width: 768px) {
    .navbar {
        padding: 20px;
        justify-content: center;
    }

    /* HIDE Menu & Header Socials on Mobile */
    .nav-menu {
        display: none !important;
    }

    .socials {
        display: none !important;
    }

    /* Logo Center */
    .brand {
        font-size: 24px;
        width: 100%;
        justify-content: center;
    }

    .hero-section {
        flex-direction: column;
        height: auto;
        padding: 120px 20px 40px;
        text-align: center;
    }

    .hero-bg-slider {
        width: 100%;
        opacity: 0.5;
        /* Mobilde biraz daha belirgin olsun */
        mask-image: none;
        -webkit-mask-image: none;
        height: 60vh;
        top: 0;
    }

    /* Mobilde yüzün görünmesi için resmi üstten hizala */
    .slide {
        background-position: top center !important;
    }

    .hero-content {
        margin-top: 80px;
        width: 100%;
    }

    .hero-title {
        font-size: 42px;
    }

    /* SHOW Mobile Extra */
    .mobile-extra {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }

    .contact-btn-mobile {
        background: transparent;
        border: 1px solid var(--primary);
        color: var(--primary);
        margin-bottom: 25px;
        width: auto;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 30px;
        font-size: 16px;
    }

    .contact-btn-mobile:hover {
        background: var(--primary);
        color: #000;
    }

    .mobile-socials {
        display: flex;
        gap: 25px;
        justify-content: center;
    }

    .mobile-socials .social-icon {
        font-size: 28px;
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    /* Player Bar Compact */
    .radio-bar {
        width: 100%;
        bottom: 0;
        border-radius: 0;
        border-bottom: none;
        border-left: none;
        border-right: none;
        padding: 10px 15px;
        z-index: 9999;
    }

    .radio-info {
        width: 30%;
    }

    .radio-thumb {
        width: 40px;
        height: 40px;
    }

    .radio-text h4 {
        font-size: 12px;
    }

    .radio-text p {
        display: none;
    }

    .radio-controls {
        width: 60%;
        justify-content: flex-end;
    }

    .ctrl-btn {
        font-size: 16px;
        margin: 0 5px;
    }

    .play-main {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .radio-volume {
        display: none;
    }
}

/* Hide toggle if exists */
.mobile-toggle {
    display: none;
}


