@import "tailwindcss";

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #1A0B2E;
}


.navbar {
    width: 100%;
    height: 92px;
    align-items: center;
    margin-top: 20px;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    font-size: 48px;
    font-weight: 700;
}

.tech {
    color: #ffffff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    color: #CFCFEA;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}


.subscribe-btn {
    padding: 10px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    color: white;

}

.nav-container img{
    display: none;
}


.banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
}

.back {
    position: absolute;
    width: 100%;
    top: 45%;
    left: 0;
    transform: translateY(-50%);
    z-index: 0;
}

.back img {
    width: 100%;
}

.hero-content {
    position: relative;
    width: 380px;
    height: 380px;
    z-index: 1;
}

.circle img {
    width: 100%;
}

.mic img {
    position: absolute;
    width: 120px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.text-area {
    text-align: center;
    margin-top: 40px;
    z-index: 2;
}

.text-area h2 {
    font-size: 60px;
    font-weight: 800;
    color: white;
}

.text-area p {
    margin-top: 15px;
    font-size: 18px;
    color: #CFCFEA;
    max-width: 600px;
}


.btn {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.spotify-btn {
    padding: 14px 30px;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    font-size: 15px;
    color: white;
    cursor: pointer;
    background: linear-gradient(90deg, #FF2FD1, #7B2CFF, #FFC247);
    transition: 0.3s ease;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}

.spotify-btn:hover {
    transform: scale(1.05);
    box-shadow: rgba(255, 47, 209, 0.5);
    display: flex;
}

.subscribe {
    padding: 14px 30px;
    border-radius: 999px;
    border: 2px solid #7B2CFF;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}

.subscribe:hover {
    background: #7B2CFF;
}


.app {
    color: white;
    padding: 50px 200px 120px 200px;
}

.section-container .data h2 {
    font-size: 48px;
    font: bold;
    text-align: center;
}

.section-container .data p {
    width: 1200px;
    height: 148px;
    text-align: center;
    margin: 0 auto;
    padding: 0 100px;
}

.section-container hr {
    width: 1200px;
    margin: 0 auto;
}

.details {
    margin-top: 80px;
    display: flex;
    justify-content: space-around;
}

.details h2 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #00FF88;
}

.details h5 {
    color: beige;
    text-align: center;
    margin: 0 auto;
}


.features-section {
    background: #1A0B2E;
    padding: 120px 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.features-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: #24123D;
    border-radius: 24px;
    padding: 32px;
    color: white;
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
}

.icon {
    width: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: #B8B3C7;
    line-height: 1.6;
}


.featured-section {
    background: #1A0B2E;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 60px;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.episode-card {
    background: #24123D;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease;
}

.episode-card:hover {
    transform: translateY(-6px);
}

.episode-image {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.episode-image iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.episode-content {
    padding: 20px;
}

.episode-content h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
}

.episode-content p {
    font-size: 14px;
    color: #B8B3C7;
    margin-bottom: 15px;
}

.duration {
    font-size: 13px;
    color: #00FF88;
}


.host-title {
    margin-top: 120px;
}

.host-card {
    background: #24123D;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;

}

.host-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.host-content h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
}

.host-content p {
    color: #B8B3C7;
    font-size: 15px;
    display: flex;
    gap: 10px;
    line-height: 1.6;
}

.episode-content .align {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.host-card .scl {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}


.footer {
    position: relative;
    background: #1A0B2E;
    padding: 120px 0;
    overflow: hidden;
    text-align: center;
}

.footer-bg {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 0;
}

.footer-bg img {
    width: 100%;
    opacity: 0.25;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
}

.footer-logo span {
    background: linear-gradient(90deg, #FF2FD1, #7B2CFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.platform {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #B8B3C7;
    cursor: pointer;
    transition: 0.3s ease;
}

.platform img {
    width: 18px;
}

.platform:hover {
    color: white;
}

.copyright {
    color: #8882A3;
    font-size: 14px;
}


/* Responsive  */


@media (max-width: 576px) {

    .nav-links {
        display: none;
    }

    .navbar {
        margin-top: 10px;
    }

    .logo {
        font-size: 28px;
    }

    .subscribe-btn {
        display: none;
        
    }

    .banner {
        height: auto;
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .hero-content {
        width: 260px;
        height: 260px;
    }

    .mic img {
        width: 80px;
    }

    .back {
        position: absolute;
        width: 100%;
        top: 34%;
        left: 0;
        transform: translateY(-50%);
        z-index: 0;
    }

    .text-area h2 {
        font-size: 36px;
    }

    .text-area p {
        font-size: 14px;
        padding: 0 20px;
    }

    .btn {
        flex-direction: column;
        gap: 15px;
    }

    .spotify-btn,
    .subscribe {
        width: 100%;
        justify-content: center;
    }

    .app {
        padding: 40px 20px 80px 20px;
    }

    .section-container .data h2 {
        font-size: 32px;
    }

    .section-container .data p {
        width: 100%;
        padding: 0;
        height: auto;
        font-size: 14px;
    }

    .section-container hr {
        width: 80%;
        margin-top: 60px;
    }

    .details {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .detail {
        width: 45%;
        text-align: center;
    }

    .details h2 {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 24px;
    }

    .features-title {
        font-size: 28px;
    }

    .episodes-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .host-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .host-content p {
        justify-content: center;
    }

    .host-card .scl {
        justify-content: center;
    }

    .host-img {
        width: 120px;
        height: 120px;
    }


.footer {
    position: relative;
    background: linear-gradient( #1A0B2E 0%, #1C0D34 100%);
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    width: 100%;
    top: 30%;
    left: 0;
    transform: translateY(-50%);
    z-index: 0;
}

.footer-bg img {
    width: 100%;
    opacity: 0.18;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo {
    font-size: 64px;
    font-weight: 800;
    color: #EDEDED;
    margin-bottom: 40px;
}


.footer-links {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 20px 60px;
    margin-bottom: 40px;
}

.platform {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #B8B3C7;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.platform img {
    width: 22px;
    opacity: 0.9;
}

.platform:hover {
    color: #ffffff;
}

.copyright {
    color: #8E88A7;
    font-size: 16px;
}
}