/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: #090B14;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #090B14 0%, #0F1219 30%, #151821 70%, #0F1219 100%);
    color: white;
    overflow: hidden;
    padding: 80px 0;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Logo Styles */
.logo-container {
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s ease-out;
    position: relative;
}

.logo-image {
    width: 140px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 25px rgba(211, 255, 86, 0.4));
    animation: logoGlow 4s ease-in-out infinite alternate;
    position: relative;
    z-index: 3;
}

/* Musical Genre & Mood Bubbles */
.genre-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.genre-bubble {
    position: absolute;
    background: rgba(211, 255, 86, 0.08);
    border: 1px solid rgba(211, 255, 86, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: #D3FF56;
    animation: float 10s ease-in-out infinite;
    backdrop-filter: blur(15px);
    padding: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.genre-bubble:nth-child(1) { width: 80px; height: 80px; top: 10%; left: 5%; animation-delay: 0s; }
.genre-bubble:nth-child(2) { width: 60px; height: 60px; top: 20%; right: 10%; animation-delay: 1s; }
.genre-bubble:nth-child(3) { width: 100px; height: 100px; bottom: 15%; left: 15%; animation-delay: 2s; }
.genre-bubble:nth-child(4) { width: 70px; height: 70px; top: 65%; right: 20%; animation-delay: 3s; }
.genre-bubble:nth-child(5) { width: 50px; height: 50px; bottom: 25%; right: 8%; animation-delay: 4s; }
.genre-bubble:nth-child(6) { width: 90px; height: 90px; top: 35%; left: 8%; animation-delay: 5s; }
.genre-bubble:nth-child(7) { width: 65px; height: 65px; top: 75%; left: 25%; animation-delay: 6s; }
.genre-bubble:nth-child(8) { width: 75px; height: 75px; top: 45%; right: 5%; animation-delay: 7s; }
.genre-bubble:nth-child(9) { width: 55px; height: 55px; bottom: 35%; left: 5%; animation-delay: 8s; }
.genre-bubble:nth-child(10) { width: 85px; height: 85px; top: 15%; left: 30%; animation-delay: 9s; }
.genre-bubble:nth-child(11) { width: 70px; height: 70px; top: 55%; right: 15%; animation-delay: 10s; }
.genre-bubble:nth-child(12) { width: 60px; height: 60px; bottom: 45%; right: 25%; animation-delay: 11s; }
.genre-bubble:nth-child(13) { width: 80px; height: 80px; top: 25%; left: 20%; animation-delay: 12s; }
.genre-bubble:nth-child(14) { width: 65px; height: 65px; top: 85%; left: 10%; animation-delay: 13s; }
.genre-bubble:nth-child(15) { width: 75px; height: 75px; top: 5%; right: 30%; animation-delay: 14s; }
.genre-bubble:nth-child(16) { width: 55px; height: 55px; bottom: 15%; left: 35%; animation-delay: 15s; }
.genre-bubble:nth-child(17) { width: 90px; height: 90px; top: 70%; right: 8%; animation-delay: 16s; }
.genre-bubble:nth-child(18) { width: 60px; height: 60px; bottom: 5%; right: 20%; animation-delay: 17s; }
.genre-bubble:nth-child(19) { width: 80px; height: 80px; top: 40%; left: 12%; animation-delay: 18s; }
.genre-bubble:nth-child(20) { width: 70px; height: 70px; bottom: 55%; right: 12%; animation-delay: 19s; }
.genre-bubble:nth-child(21) { width: 65px; height: 65px; top: 30%; right: 25%; animation-delay: 20s; }
.genre-bubble:nth-child(22) { width: 85px; height: 85px; bottom: 25%; left: 8%; animation-delay: 21s; }
.genre-bubble:nth-child(23) { width: 55px; height: 55px; top: 90%; left: 20%; animation-delay: 22s; }
.genre-bubble:nth-child(24) { width: 75px; height: 75px; top: 50%; left: 25%; animation-delay: 23s; }
.genre-bubble:nth-child(25) { width: 60px; height: 60px; bottom: 65%; right: 18%; animation-delay: 24s; }

/* Slogan Styles */
.slogan {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #D3FF56, #B8E63F, #9DD228);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1.2s ease-out 0.4s both;
    position: relative;
    z-index: 3;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #E0E0E0;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease-out 0.7s both;
    line-height: 1.7;
    opacity: 0.9;
}

/* Button Styles */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out 1s both;
}

.btn {
    padding: 16px 36px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(45deg, #D3FF56, #B8E63F);
    color: #090B14;
    box-shadow: 0 8px 25px rgba(211, 255, 86, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(211, 255, 86, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #D3FF56;
    border: 2px solid rgba(211, 255, 86, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(211, 255, 86, 0.1);
    border-color: rgba(211, 255, 86, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 255, 86, 0.2);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.2rem;
}

/* Section Transitions */
.section-transition {
    height: 120px;
    background: linear-gradient(180deg, transparent 0%, rgba(211, 255, 86, 0.03) 50%, transparent 100%);
    position: relative;
    margin: 0;
}

.section-transition::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(211, 255, 86, 0.2), transparent);
    transform: translateY(-50%);
}

/* Features Section */
.features {
    padding: 140px 0;
    background: linear-gradient(180deg, #0F1219 0%, #151821 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(211, 255, 86, 0.3), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D3FF56, transparent);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.2rem;
    color: #E0E0E0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: linear-gradient(145deg, #1A1F2E, #151821);
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(42, 47, 62, 0.5);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D3FF56, transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(211, 255, 86, 0.15);
    border-color: rgba(211, 255, 86, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    letter-spacing: -0.2px;
}

.feature-card p {
    color: #E0E0E0;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* App Showcase */
.app-showcase {
    padding: 140px 0;
    background: linear-gradient(180deg, #090B14 0%, #0F1219 100%);
    position: relative;
}

.app-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(211, 255, 86, 0.3), transparent);
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.showcase-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.showcase-text p {
    font-size: 1.2rem;
    color: #E0E0E0;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.showcase-features {
    list-style: none;
}

.showcase-features li {
    padding: 1rem 0;
    color: #E0E0E0;
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.showcase-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D3FF56;
    font-weight: bold;
    font-size: 1.2rem;
}

/* App Mockup */
.app-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mockup-screen {
    width: 380px;
    height: 640px;
    background: linear-gradient(145deg, #1A1F2E, #151821);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 1px solid rgba(42, 47, 62, 0.8);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.4s ease;
}

.mockup-screen:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.mockup-content {
    background: linear-gradient(145deg, #151821, #0F1219);
    height: 100%;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(42, 47, 62, 0.8);
}

.mockup-title {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 1.3rem;
    letter-spacing: -0.2px;
}

.mockup-status {
    font-size: 0.9rem;
    color: #D3FF56;
    background: rgba(211, 255, 86, 0.1);
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 600;
}

.mockup-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 22px;
    overflow-y: auto;
}

.chat-message {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 85%;
    animation: messageSlide 0.5s ease-out;
}

.chat-message.received {
    align-self: flex-start;
}

.chat-message.sent {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(45deg, #D3FF56, #B8E63F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    color: #090B14;
    font-weight: 600;
}

.message-content {
    background: rgba(42, 47, 62, 0.8);
    padding: 15px 20px;
    border-radius: 20px;
    max-width: 100%;
    backdrop-filter: blur(10px);
}

.chat-message.sent .message-content {
    background: linear-gradient(45deg, #D3FF56, #B8E63F);
    color: #090B14;
}

.message-text {
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.chat-message.sent .message-text {
    color: #090B14;
    font-weight: 600;
}

.message-song {
    color: #B0B0B0;
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.3;
}

.chat-message.sent .message-song {
    color: #090B14;
    opacity: 0.8;
}

/* How It Works Section */
.how-it-works {
    padding: 140px 0;
    background: linear-gradient(180deg, #0F1219 0%, #151821 100%);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(211, 255, 86, 0.3), transparent);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3.5rem;
    margin-top: 5rem;
}

.step-card {
    background: linear-gradient(145deg, #1A1F2E, #151821);
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(42, 47, 62, 0.5);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D3FF56, transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(211, 255, 86, 0.15);
    border-color: rgba(211, 255, 86, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #D3FF56, #B8E63F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #090B14;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 20px rgba(211, 255, 86, 0.3);
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    letter-spacing: -0.2px;
}

.step-card p {
    color: #E0E0E0;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Download Section */
.download-section {
    padding: 140px 0;
    background: linear-gradient(180deg, #090B14 0%, #0F1219 100%);
    position: relative;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(211, 255, 86, 0.3), transparent);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-top: 5rem;
}

.download-text h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.download-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #E0E0E0;
    line-height: 1.7;
}

.download-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #E0E0E0;
    padding: 0.8rem 0;
}

.download-feature .feature-icon {
    font-size: 1.6rem;
    width: 30px;
    text-align: center;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: linear-gradient(145deg, #1A1F2E, #151821);
    color: #FFFFFF;
    padding: 1.2rem 2.5rem;
    border-radius: 18px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 220px;
    justify-content: center;
    border: 1px solid rgba(42, 47, 62, 0.8);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.store-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 255, 86, 0.1), transparent);
    transition: left 0.5s;
}

.store-button:hover::before {
    left: 100%;
}

.store-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(211, 255, 86, 0.4);
    background: linear-gradient(145deg, #2A2F3E, #1A1F2E);
}

.store-icon {
    font-size: 2.2rem;
}

.store-text {
    display: flex;
    flex-direction: column;
}

.store-label {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 500;
}

.store-name {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0F1219 0%, #090B14 100%);
    padding: 120px 0 50px;
    border-top: 1px solid rgba(42, 47, 62, 0.8);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(211, 255, 86, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h4 {
    color: #FFFFFF;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.2px;
}

.footer-section p {
    color: #FFFFFF;
    line-height: 1.8;
    font-size: 1.05rem;
    opacity: 0.9;
}

.footer-section a {
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-section a:hover {
    opacity: 1;
    color: #D3FF56;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.9;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    color: #D3FF56;
    background: rgba(211, 255, 86, 0.1);
    border-color: rgba(211, 255, 86, 0.3);
    opacity: 1;
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(211, 255, 86, 0.2);
}

.social-icon {
    font-size: 1.5rem;
    width: 28px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(42, 47, 62, 0.8);
    color: #FFFFFF;
    font-size: 0.95rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 25px rgba(211, 255, 86, 0.4));
    }
    100% {
        filter: drop-shadow(0 0 35px rgba(211, 255, 86, 0.6));
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-25px) rotate(120deg);
    }
    66% {
        transform: translateY(15px) rotate(240deg);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .slogan {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .showcase-content,
    .download-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2,
    .showcase-text h2,
    .download-text h3 {
        font-size: 2.5rem;
    }
    
    .mockup-screen {
        width: 320px;
        height: 540px;
    }
    
    .download-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .store-button {
        min-width: 180px;
        padding: 1rem 2rem;
    }
    
    .features,
    .app-showcase,
    .how-it-works,
    .download-section {
        padding: 100px 0;
    }
}

@media (max-width: 480px) {
    .slogan {
        font-size: 2.5rem;
    }
    
    .logo-image {
        width: 100px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .store-button {
        min-width: 220px;
    }
    
    .features,
    .app-showcase,
    .how-it-works,
    .download-section {
        padding: 80px 0;
    }
} 

/* Store Button Icons */
.store-icon svg {
    width: 28px;
    height: 28px;
    color: currentColor;
}

.store-button.app-store .store-icon svg {
    color: #FFFFFF;
}

.store-button.google-play .store-icon svg {
    color: #FFFFFF;
}

/* Social Media Icons */
.social-icon svg {
    width: 20px;
    height: 20px;
    color: currentColor;
    transition: all 0.3s ease;
}

.social-link:hover .social-icon svg {
    color: #D3FF56;
    transform: scale(1.1);
}

/* Responsive adjustments for larger mockup */
@media (max-width: 768px) {
    .mockup-screen {
        width: 320px;
        height: 540px;
        padding: 25px;
    }
    
    .mockup-content {
        padding: 25px;
    }
    
    .mockup-header {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .mockup-title {
        font-size: 1.2rem;
    }
    
    .mockup-status {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .mockup-chat {
        gap: 18px;
    }
    
    .message-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .message-content {
        padding: 12px 16px;
    }
    
    .message-text {
        font-size: 0.95rem;
    }
    
    .message-song {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .mockup-screen {
        width: 280px;
        height: 480px;
        padding: 20px;
    }
    
    .mockup-content {
        padding: 20px;
    }
    
    .message-avatar {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
    
    .message-content {
        padding: 10px 14px;
    }
    
    .message-text {
        font-size: 0.9rem;
    }
    
    .message-song {
        font-size: 0.8rem;
    }
} 

/* --- Modal (Pop-up) Styles --- */

.modal {
    display: none; 
    position: fixed; 
    z-index: 10000; /* Higher than mouse trail */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 11, 20, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(145deg, #1A1F2E, #151821);
    color: #FFFFFF;
    margin: auto;
    padding: 35px 45px;
    border: 1px solid rgba(211, 255, 86, 0.2);
    width: 90%;
    max-width: 480px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: fadeIn 0.4s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
    color: #D3FF56;
    text-decoration: none;
    cursor: pointer;
}

.modal-content h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #D3FF56, #B8E63F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #E0E0E0;
}
