/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #ff4fa3;
    --neon-pink: #ff6bc7;
    --soft-pink: #ff9bd4;
    --light-pink: #ffc5e6;
    --white: #ffffff;
    --light-bg: #fff5fa;
    --dark-text: #2d1b3d;
    --gradient-pink: linear-gradient(135deg, #ff4fa3, #ff9bd4);
    --gradient-soft: linear-gradient(135deg, #fff5fa, #ffe5f5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    background: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(255, 79, 163, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-pink);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 79, 163, 0.1), rgba(255, 155, 212, 0.1)),
                url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?w=1920&q=80') center/cover;
    background-attachment: fixed;
    text-align: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 79, 163, 0.3), rgba(255, 155, 212, 0.2));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 0 30px rgba(255, 79, 163, 0.8), 0 0 60px rgba(255, 79, 163, 0.5);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--light-pink);
    margin-bottom: 2rem;
    font-style: italic;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-pink);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 79, 163, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 79, 163, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-ai {
    background: rgba(255, 79, 163, 0.2);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 79, 163, 0.5);
}

.btn-ai:hover {
    background: rgba(255, 79, 163, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 79, 163, 0.5);
}

/* Platforms Bar */
.platforms-bar {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.platforms-text {
    margin-bottom: 1rem;
    color: var(--dark-text);
    font-weight: 500;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-pink);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon svg {
    width: 100%;
    height: 100%;
}

.platform-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.platform-icon-large img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.platform-icon:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(255, 79, 163, 0.8));
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--dark-text);
}

.about-text strong {
    color: var(--primary-pink);
    font-weight: 600;
}

.about-text em {
    color: var(--primary-pink);
    font-style: italic;
}

.about-text.highlight {
    background: var(--gradient-soft);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-pink);
    font-size: 1.2rem;
    margin-top: 2rem;
}

.song-list {
    list-style: none;
    padding: 1rem 0;
    margin: 1rem 0;
}

.song-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: var(--dark-text);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    background: var(--gradient-soft);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-pink);
    box-shadow: 0 10px 30px rgba(255, 79, 163, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: var(--dark-text);
}

/* Creator Section */
.creator {
    background: var(--gradient-soft);
}

.creator-content {
    max-width: 900px;
    margin: 0 auto;
}

.creator-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.creator-text strong {
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 1.3rem;
}

.fusion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.fusion-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.fusion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 79, 163, 0.3);
}

.fusion-icon {
    font-size: 2rem;
}

/* Music Section */
.music {
    background: var(--white);
}

.spotify-embed-container {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 20px;
    background: var(--gradient-pink);
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(255, 79, 163, 0.4);
    animation: fadeIn 1s ease;
}

.music-note {
    text-align: center;
    color: var(--dark-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.platform-icons-large {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-icon-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--gradient-soft);
    border-radius: 15px;
    text-decoration: none;
    color: var(--primary-pink);
    transition: all 0.3s ease;
    min-width: 120px;
}

.platform-icon-large svg {
    width: 40px;
    height: 40px;
}

.platform-icon-large span {
    font-weight: 600;
    font-size: 0.9rem;
}

.platform-icon-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 79, 163, 0.4);
    background: var(--gradient-pink);
    color: var(--white);
}

/* Videos Section */
.videos {
    background: var(--gradient-soft);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: var(--dark-text);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 79, 163, 0.3);
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    background: var(--gradient-pink);
    position: relative;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.watch-now {
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.video-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: var(--primary-pink);
}

.video-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--dark-text);
}

/* News Section */
.news {
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--gradient-soft);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 79, 163, 0.3);
}

.news-thumbnail {
    width: 100%;
    height: 200px;
    background: var(--gradient-pink);
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-pink);
}

.news-content p {
    margin-bottom: 1rem;
    color: var(--dark-text);
    line-height: 1.6;
}

.read-more {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--neon-pink);
    transform: translateX(5px);
}

/* Generic Card Grid (used for news, videos, music) */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

/* Explicit 4-column grids for music and videos on larger screens */
.music-grid,
.video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    /* set a minimum height so image can take ~80% portrait area */
    min-height: 420px;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255,79,163,0.18);
}

.card-link {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
}

.card-image {
    width: 100%;
    /* make image occupy roughly 80% of card height for a portrait feel */
    height: 80%;
    background-size: cover;
    background-position: center top;
    position: relative;
}

.card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1 1 auto;
}

.card-title {
    font-size: 1.25rem;
    color: var(--primary-pink);
    margin: 0;
}

.card-desc {
    color: var(--dark-text);
    font-size: 0.98rem;
    line-height: 1.5;
    margin-top: 0.25rem;
    flex: 1 1 auto;
}

.video-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    background: rgba(0,0,0,0.35);
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.card:hover .video-overlay {
    opacity: 1;
}

/* Platform badge (top-left) */
.platform-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    color: var(--primary-pink);
    font-weight: 700;
    z-index: 5;
}
.platform-badge.platform-tiktok { color: #000; background: #fff; }
.platform-badge.platform-youtube { color: #ff0000; background: #fff; }
.platform-badge.platform-spotify { color: #1DB954; background: #fff; }
.platform-badge.platform-vimeo { color: #1ab7ea; background: #fff; }
.platform-badge.platform-default { color: var(--primary-pink); background: rgba(255,255,255,0.9); }

.platform-badge img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

/* Modal styles */
.post-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 20000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.post-modal.active { display:flex; }
.post-modal-container {
    background: var(--white);
    width: 100%;
    max-width: 1000px;
    border-radius: 14px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 420px;
}
.modal-media {
    background-size: cover;
    background-position: center;
    min-height: 100%;
}
.modal-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.modal-desc { color: var(--dark-text); line-height: 1.6; }
.modal-embed { margin-top: 1rem; }
.modal-actions { margin-top: auto; }
.modal-close {
    position: absolute;
    right: 2.5rem;
    top: 2.5rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

@media (max-width: 900px) {
    .post-modal-container { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; }
    .card { min-height: 360px; }
    .card-image { height: 60%; }
}

/* Fan Club Section */
.fan-club {
    background: var(--gradient-pink);
    color: var(--white);
    text-align: center;
}

.fan-club .section-title {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.fan-club-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-subscribe {
    background: var(--white);
    color: var(--primary-pink);
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
    animation: pulse 2s infinite;
}

.btn-subscribe:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Chat Button (Floating) */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-pink);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 30px rgba(255, 79, 163, 0.5);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.chat-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(255, 79, 163, 0.7);
}

.chat-icon {
    font-size: 1.5rem;
}

/* Chat Modal */
.chat-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.chat-modal.active {
    display: flex;
}

.chat-container {
    background: var(--white);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(255, 79, 163, 0.4);
    animation: slideUp 0.3s ease;
}

.chat-header {
    background: var(--gradient-pink);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.chat-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease;
}

.chat-close:hover {
    transform: rotate(90deg);
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    background: var(--light-bg);
    max-height: 400px;
}

.message {
    margin-bottom: 1rem;
    animation: fadeIn 0.3s ease;
}

.bot-message {
    background: var(--gradient-soft);
    padding: 1rem;
    border-radius: 15px;
    border-bottom-left-radius: 5px;
    max-width: 80%;
}

.user-message {
    background: var(--gradient-pink);
    color: var(--white);
    padding: 1rem;
    border-radius: 15px;
    border-bottom-right-radius: 5px;
    max-width: 80%;
    margin-left: auto;
}

.chat-input-container {
    display: flex;
    padding: 1rem;
    gap: 0.5rem;
    border-top: 2px solid var(--light-pink);
}

.chat-input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--light-pink);
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input:focus {
    border-color: var(--primary-pink);
}

.chat-send {
    background: var(--gradient-pink);
    color: var(--white);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-send:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 79, 163, 0.4);
}

/* Footer */
.footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    color: var(--white);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    color: var(--primary-pink);
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(255, 79, 163, 0.8));
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .chat-button {
        bottom: 20px;
        right: 20px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .chat-text {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    /* Stack music and video cards vertically on mobile for better readability */
    .music-grid,
    .video-grid,
    .card-grid {
        grid-template-columns: 1fr;
    }
    .card {
        min-height: auto;
    }
    .card-image {
        height: 50%;
        min-height: 220px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .platform-icons,
    .platform-icons-large {
        gap: 1rem;
    }
    
    .features-grid,
    .fusion-grid {
        grid-template-columns: 1fr;
    }
}