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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1c1c1c;
    background-color: #FFFFFF;
}

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

/* Navigation Bar */
.navbar {
    background: transparent !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: none;
    transition: all 0.3s ease;
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-download-btn {
    background: #05d647;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 214, 71, 0.3);
    cursor: pointer;
    font-size: 0.9rem;
}

.nav-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 214, 71, 0.4);
    background: #04b83a;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: #1c1c1c;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu:hover span {
    background: #05d647;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.logo {
    text-decoration: none;
    background: transparent;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
}

.logo:hover {
    background: transparent;
    transform: translateY(-2px);
    animation: logoHoverDance 0.8s ease-in-out infinite;
}

@keyframes logoHoverDance {
    0%, 100% {
        transform: translateY(-2px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-4px) rotate(-2deg) scale(1.02);
    }
    50% {
        transform: translateY(-6px) rotate(0deg) scale(1.05);
    }
    75% {
        transform: translateY(-4px) rotate(2deg) scale(1.02);
    }
}

/* Logo Dance Animations */
.logo.dancing {
    animation: logoDance 0.6s ease-in-out;
}

.logo.bouncing {
    animation: logoBounce 0.8s ease-in-out;
}

.logo.spinning {
    animation: logoSpin 1s ease-in-out;
}

.logo.wiggling {
    animation: logoWiggle 0.5s ease-in-out;
}

.logo.pulsing {
    animation: logoPulse 0.7s ease-in-out;
}

@keyframes logoDance {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(-5deg);
    }
    50% {
        transform: translateY(-12px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(5deg);
    }
}

@keyframes logoBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-15px) scale(1.1);
    }
    60% {
        transform: translateY(-8px) scale(1.05);
    }
}

@keyframes logoSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes logoWiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-8deg);
    }
    75% {
        transform: rotate(8deg);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.logo-image {
    height: 55px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    margin: 0;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-switcher.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.language-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(5, 214, 71, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #05d647;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(5, 214, 71, 0.2);
    animation: languageButtonPulse 2s ease-in-out infinite;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(5, 214, 71, 0.6);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(5, 214, 71, 0.4);
    animation: languageButtonBounce 0.6s ease-in-out;
}

.language-btn:active {
    transform: translateY(0) scale(0.95);
}

.language-btn .flag {
    font-size: 1.2rem;
    animation: flagWave 3s ease-in-out infinite;
}

.language-btn .language-name {
    font-weight: 600;
}

.language-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.language-btn:hover i {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(5, 214, 71, 0.2);
    border-radius: 15px;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    min-width: 180px;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #1A202C;
    border-radius: 10px;
    transition: all 0.2s ease;
    text-align: left;
}

.language-option:hover {
    background: rgba(5, 214, 71, 0.1);
    color: #05d647;
    transform: translateX(5px);
}

.language-option.active {
    background: rgba(5, 214, 71, 0.15);
    color: #05d647;
    font-weight: 600;
}

.language-option .flag {
    font-size: 1.2rem;
}

/* Playing effect animations */
@keyframes languageButtonPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(5, 214, 71, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(5, 214, 71, 0.4);
        transform: scale(1.02);
    }
}

@keyframes languageButtonBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(-2px) scale(1.05);
    }
    40% {
        transform: translateY(-4px) scale(1.08);
    }
    60% {
        transform: translateY(-1px) scale(1.03);
    }
}

@keyframes flagWave {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    75% {
        transform: rotate(-5deg);
    }
}

/* Responsive language switcher */
@media (max-width: 768px) {
    .language-switcher {
        bottom: 20px;
        left: 20px;
    }
    
    .language-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .language-btn .language-name {
        display: none;
    }
    
    .language-dropdown {
        min-width: 150px;
        bottom: 100%;
        margin-bottom: 0.5rem;
    }
    
    .language-option {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
}

.download-btn {
    background: #05d647;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 214, 71, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
    transition: left 0.5s ease;
}

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

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 214, 71, 0.4);
    background: #04b83a;
}

.download-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(5, 214, 71, 0.3);
}

/* Gradient scroll effect for download button */
.download-btn.scroll-gradient {
    background: linear-gradient(135deg, #05d647 0%, #04b83a 100%);
    box-shadow: 0 4px 15px rgba(5, 214, 71, 0.4);
}

.download-btn.scroll-gradient:hover {
    background: linear-gradient(135deg, #04b83a 0%, #05d647 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 184, 58, 0.4);
}

/* Floating Download Button (appears when navbar is hidden) */
.floating-download-btn {
    position: fixed;
    top: 20px;
    right: 30px;
    background: #05d647;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 214, 71, 0.3);
    cursor: pointer;
    z-index: 1001;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    overflow: hidden;
}

.floating-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
    transition: left 0.5s ease;
}

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



.floating-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 214, 71, 0.4);
    background: #04b83a;
}

.floating-download-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(5, 214, 71, 0.3);
}

/* Gradient scroll effect for floating download button */
.floating-download-btn.scroll-gradient {
    background: linear-gradient(135deg, #05d647 0%, #04b83a 100%);
    box-shadow: 0 4px 15px rgba(5, 214, 71, 0.4);
}

.floating-download-btn.scroll-gradient:hover {
    background: linear-gradient(135deg, #04b83a 0%, #05d647 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 184, 58, 0.4);
}

/* Responsive adjustments for floating button */
@media (max-width: 768px) {
    .floating-download-btn {
        top: 15px;
        right: 20px;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .social-media-spinning-board {
        bottom: 80px;
        left: 20px;
    }
    
    .spinning-container {
        width: 100px;
        height: 100px;
    }
    
    .social-icon-spin {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .center-click-area {
        width: 45px;
        height: 45px;
    }
    
    .center-icon {
        font-size: 1rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .social-options-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #05d647 0%, #1c1c1c 100%);
    color: white;
    padding: 20px 0 80px; /* Reduced top padding to 20px */
    text-align: left; /* Changed to left align for grid layout */
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: flex-start; /* Changed to flex-start to move content higher */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/slideshow/slide1.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

/* Alternative CSS-only background (uncomment to use instead of slideshow) */
/*
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(5, 214, 71, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(28, 28, 28, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(5, 214, 71, 0.1) 0%, transparent 50%);
    z-index: 1;
}
*/

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 3rem; /* Space between content and mockup */
    align-items: flex-start; /* Changed to flex-start to move content higher */
    max-width: 1400px; /* Increased for grid layout */
    margin: 0 auto;
    padding-top: 0; /* Reset padding */
    transform: translateY(-1rem); /* Reduced negative transform to move content higher */
}

/* New hero grid sections for better content positioning */
.hero-text-section {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Changed back to center to position text in middle of container */
    align-items: center; /* Changed from flex-start to center to align text to center-right */
    padding: 2rem 0 2rem 0; /* Returned top padding to 2rem */
    height: 100%;
    margin-top: 0; /* Reset margin */
}

.hero-mockup-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Changed to flex-start to move content higher */
    align-items: center;
    padding: 1rem 0 2rem 0; /* Reduced top padding */
    height: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left; /* Changed back to left for better text alignment control */
    align-items: flex-start; /* Left align the text content container */
    max-width: 500px; /* Limit width for better readability */
}

.hero h1 {
    font-size: 3rem; /* Restored larger size for grid layout */
    font-weight: 700;
    margin-bottom: 0; /* Remove margin since we're using gap */
    line-height: 1.2;
    text-align: left; /* Left align the hero title */
}

.hero p {
    font-size: 1.25rem; /* Restored larger size for grid layout */
    margin-bottom: 0; /* Remove margin since we're using gap */
    opacity: 0.9;
    max-width: 500px; /* Limit width for better readability */
    text-align: center; /* centre the subtitle text */
}

/* Hero Buttons Pulsing Effect */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start; /* Left align buttons */
    flex-wrap: wrap;
    margin-bottom: 0; /* Remove margin since we're using gap */
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    animation: storeButtonPop 3s ease-in-out infinite, storeButtonGlow 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

/* Stagger the animations for each button */
#google-play-btn {
    animation-delay: 0s, 0s;
}

#app-store-btn {
    animation-delay: 1.5s, 1s;
}

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

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

.store-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.05);
    animation: storeButtonBlink 0.6s ease-in-out;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.store-btn.pulse {
    animation: buttonPulse 1.5s ease-in-out;
}

@keyframes buttonPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes storeButtonPop {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    25% {
        transform: scale(1.02);
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.05);
    }
    75% {
        transform: scale(1.02);
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.1);
    }
}

@keyframes storeButtonBlink {
    0%, 50%, 100% {
        opacity: 1;
        filter: brightness(1);
    }
    25%, 75% {
        opacity: 0.8;
        filter: brightness(1.2);
    }
}

@keyframes storeButtonGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    }
}

.store-btn i {
    font-size: 1.5rem;
    width: 24px;
    text-align: center;
}

/* App Mockup Section */
.app-mockup {
    margin-top: 2rem; /* Add top margin to create space above the phone mockup */
    position: relative;
    max-width: 100%; /* Use full column width */
    margin-left: auto;
    margin-right: auto;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.phone-container {
    position: relative;
    width: 280px; /* Reduced from 400px - more proportional */
    height: 560px; /* Reduced from 800px - maintains 2:1 ratio */
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.phone-container:hover {
    transform: scale(1.02); /* Subtle hover effect */
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-slides {
    height: 100%;
    width: 100%;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    /* Width will be set dynamically by JavaScript */
}

.screen-slide {
    flex-shrink: 0;
    height: 100%;
    width: 100%;
    background: transparent;
    display: block;
    overflow: hidden;
    position: relative;
    /* Width will be set dynamically by JavaScript */
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    display: block;
}

.app-screenshot:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.screen-slide h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.screen-slide p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem; /* Restored margin for better spacing */
}

.slide-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Features Section */
.features {
    padding: 60px 0; /* Reduced from 80px 0 */
    background: #F4F6F9;
}

.section-title {
    text-align: center;
    font-size: 2.2rem; /* Reduced from 2.5rem */
    font-weight: 700;
    margin-bottom: 2.5rem; /* Reduced from 3rem */
    color: #1c1c1c;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem; /* Reduced from 3rem */
    width: 100%;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #05d647, #1c1c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1c1c1c;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    flex-grow: 1;
}

/* For Artists Section */
.for-artists {
    padding: 60px 0; /* Reduced from 80px 0 */
    background: linear-gradient(135deg, #05d647 0%, #1c1c1c 100%);
    color: white;
}

.for-artists .section-title {
    color: white;
    margin-bottom: 1.5rem; /* Reduced from 2rem */
}

.artists-content {
    max-width: 1000px;
    margin: 0 auto;
}

.artists-intro {
    text-align: center;
    margin-bottom: 3rem; /* Reduced from 4rem */
}

.artists-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.artists-intro h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.artists-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
}

.artists-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem; /* Reduced from 4rem */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.artist-feature-card {
    background: rgba(255, 255, 255, 0.12);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.artist-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 25px rgba(5, 214, 71, 0.3);
}

.artist-feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #05d647, #1c1c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.artist-feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.artist-feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
}

.artists-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.artists-cta h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.artists-cta p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.artists-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.artists-buttons .store-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #3b80f7;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.artists-buttons .store-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 214, 71, 0.4);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0 100px 0; /* More top and bottom padding */
    background: linear-gradient(135deg, #05d647 0%, #1c1c1c 100%);
    color: white;
}

.how-it-works .section-title {
    color: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.step-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.step p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Social Proof Section */
.social-proof {
    padding: 60px 0; /* Reduced from 80px 0 */
    background: #F4F6F9;
    text-align: center;
}

.social-proof .section-title {
    color: #1c1c1c;
}

.social-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0; /* Reduced from 3rem 0 */
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(5, 214, 71, 0.1);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(5, 214, 71, 0.15);
    border-color: rgba(5, 214, 71, 0.2);
}

.stat.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Enhanced Statistics Animations */
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease-out;
    position: relative;
    color: #1c1c1c;
}

.stat-number.counting {
    color: #05d647;
    text-shadow: 0 0 15px rgba(5, 214, 71, 0.5);
    font-weight: 800;
}

.stat-number.completed {
    animation: statComplete 0.6s ease-out;
}

.stat-number.updating {
    color: #04b83a;
    text-shadow: 0 0 15px rgba(4, 184, 58, 0.5);
    font-weight: 800;
}

.stat-label {
    color: #374151;
    font-weight: 600;
    font-size: 1rem;
}

@keyframes statComplete {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Enhanced Stat Cards */
.stat {
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(5, 214, 71, 0.1), transparent);
    transition: left 0.6s ease-out;
}

.stat.animated::before {
    left: 100%;
}

/* Loading State Enhancement */
.stat.loading .stat-number {
    opacity: 0.5;
    animation: statLoading 1.5s ease-in-out infinite;
}

@keyframes statLoading {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

/* Hover Effects for Stats */
.stat:hover .stat-number {
    transform: scale(1.05);
    color: #05d647;
}

.stat:hover .stat-label {
    color: #1c1c1c;
}

/* Pulse Effect During Counting */
.stat-number.counting {
    animation: countingPulse 0.5s ease-in-out infinite;
}

@keyframes countingPulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(5, 214, 71, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(5, 214, 71, 0.6);
    }
}

/* Compact Social Media Section */
.social-media-compact {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-handle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #05d647;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.social-icon.x {
    background: #1DA1F2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon.youtube {
    background: #FF0000;
}

.social-icon.tiktok {
    background: #000000;
}

/* Final CTA Section */
.final-cta {
    padding: 60px 0; /* Reduced from 80px 0 */
    background: linear-gradient(135deg, #05d647 0%, #1c1c1c 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .hero-buttons {
    justify-content: center; /* Center the buttons in the final CTA section */
}

/* Social Media Spinning Board */
.social-media-spinning-board {
    position: fixed;
    bottom: 100px;
    left: 30px;
    z-index: 1000;
}

.spinning-container {
    position: relative;
    width: 120px;
    height: 120px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.spinning-container:hover {
    transform: scale(1.05);
}

.spinning-container:hover .social-icon-spin {
    animation-play-state: paused;
}

.social-icon-spin {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: spinAround 8s linear infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-icon-spin:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    z-index: 1001;
}

/* Position each icon around the circle */
.social-icon-spin.twitter {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.social-icon-spin.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    top: 15px;
    right: 15px;
    animation-delay: -1.6s;
}

.social-icon-spin.facebook {
    background: linear-gradient(135deg, #1877F2, #0d6efd);
    bottom: 15px;
    right: 15px;
    animation-delay: -3.2s;
}

.social-icon-spin.youtube {
    background: linear-gradient(135deg, #FF0000, #cc0000);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -4.8s;
}

.social-icon-spin.tiktok {
    background: linear-gradient(135deg, #000000, #25F4EE);
    bottom: 15px;
    left: 15px;
    animation-delay: -6.4s;
}

.social-icon-spin.share-website {
    background: linear-gradient(135deg, #05d647, #04b83a);
    top: 15px;
    left: 15px;
    animation-delay: -8s;
}

/* Center click area */
.center-click-area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(5, 214, 71, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 214, 71, 0.3);
    z-index: 1002;
}

.center-click-area:hover {
    background: rgba(5, 214, 71, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(5, 214, 71, 0.4);
}

.center-icon {
    color: white;
    font-size: 1.2rem;
}

/* Spinning animation */
@keyframes spinAround {
    0% {
        transform: rotate(0deg) translateY(-45px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateY(-45px) rotate(-360deg);
    }
}

/* Share Success Message */
.share-success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #05d647, #04b83a);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(5, 214, 71, 0.3);
    z-index: 10002;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 300px;
}

.share-success-message.show {
    transform: translateX(0);
}

.success-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.success-content i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Social Media Selection Modal */
.social-selection-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-selection-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-selection-modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(5, 214, 71, 0.2);
}

.modal-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.modal-header h3 {
    color: #1c1c1c;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1c1c1c;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(5, 214, 71, 0.1);
    color: #05d647;
}

.modal-body p {
    color: #64748b;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1rem;
}

.social-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.social-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    text-decoration: none;
    color: #1c1c1c;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(5, 214, 71, 0.3);
}

.social-option-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.social-option-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.social-option-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

.modal-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(5, 214, 71, 0.1);
    text-align: center;
}

.return-note {
    color: #64748b;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #1A202C;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: #05d647;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p, .footer-section a {
    color: #a0aec0;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #05d647;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 1rem;
    text-align: center;
    color: #a0aec0;
}

.footer-signature {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.footer-signature a {
    color: #05d647;
    text-decoration: none;
}

.footer-signature a:hover {
    text-decoration: underline;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: white;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #05d647;
}

.mobile-menu-header h3 {
    color: #1c1c1c;
    font-size: 1.5rem;
    font-weight: 700;
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1c1c1c;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-menu:hover {
    background: rgba(5, 214, 71, 0.1);
    color: #05d647;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    text-decoration: none;
    color: #1c1c1c;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-menu-item:hover {
    background: rgba(5, 214, 71, 0.1);
    color: #05d647;
    transform: translateX(10px);
}

.mobile-menu-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr; /* Keep two columns on medium screens */
        gap: 2rem; /* Reduce gap on medium screens */
    }
    
    .phone-container {
        width: 250px; /* Reduced from 350px */
        height: 500px; /* Reduced from 700px */
    }
    
    .hero-text-section {
        padding: 1.5rem 0;
    }
    
    .hero-mockup-section {
        padding: 1.5rem 0;
    }
}

@media (max-width: 768px) {
    .nav-download-btn {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .hero {
        padding: 60px 0 60px; /* Reduce padding on mobile */
        min-height: auto; /* Remove fixed height for mobile */
    }
    
    .hero-content {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 2rem;
        text-align: center; /* Center text on mobile */
    }
    
    .hero-text-section {
        order: 1; /* Text appears first on mobile */
        padding: 1rem 0;
        align-items: center; /* Center content on mobile */
    }
    
    .hero-mockup-section {
        order: 2; /* Mockup appears second on mobile */
        padding: 1rem 0;
    }
    
    .hero-text {
        text-align: center; /* Center text on mobile */
        align-items: center;
    }
    
    .hero h1 {
        font-size: 2.5rem; /* Smaller font size on mobile */
    }
    
    .hero p {
        font-size: 1.1rem; /* Smaller font size on mobile */
        max-width: 100%; /* Full width on mobile */
    }
    
    .hero-buttons {
        justify-content: center; /* Center buttons on mobile */
        flex-direction: column; /* Stack buttons vertically on mobile */
        gap: 1rem;
    }
    
    .store-btn {
        width: 100%; /* Full width buttons on mobile */
        max-width: 300px; /* Limit maximum width */
        justify-content: center;
    }
    
    .phone-container {
        width: 220px; /* Smaller phone on mobile */
        height: 440px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0 50px; /* Further reduce padding on small mobile */
    }
    
    .hero h1 {
        font-size: 2rem; /* Even smaller font on small mobile */
    }
    
    .hero p {
        font-size: 1rem; /* Smaller font on small mobile */
    }
    
    .phone-container {
        width: 200px; /* Even smaller phone on small mobile */
        height: 400px;
    }
    
    .hero-content {
        gap: 1.5rem; /* Reduce gap on small mobile */
    }
}

@media (min-width: 1200px) {
    .hero-content {
        max-width: 1400px; /* Larger max-width on big screens */
        gap: 4rem; /* Increase gap on big screens */
    }
    
    .hero h1 {
        font-size: 3.5rem; /* Larger font on big screens */
    }
    
    .hero p {
        font-size: 1.4rem; /* Larger font on big screens */
    }
    
    .phone-container {
        width: 320px; /* Larger phone on big screens */
        height: 640px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 40px; /* Increased top padding to account for navbar */
        min-height: auto; /* Remove fixed height for mobile */
        text-align: center; /* Center text on mobile */
    }
    
    .hero-content {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        order: 1; /* Content first on mobile */
    }
    
    .app-mockup {
        order: 2; /* Mockup second on mobile */
    }
    
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
        max-width: 100%; /* Full width on mobile */
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-buttons {
        justify-content: center; /* Center buttons on mobile */
    }

    .store-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

    .steps-container {
        grid-template-columns: 1fr;
    }

    .social-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .social-icons {
        gap: 0.75rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .phone-container {
        width: 220px; /* Reduced from 300px */
        height: 440px; /* Reduced from 600px */
    }
    
    .app-mockup {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 90px 0 30px; /* Increased top padding for small screens */
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .social-stats {
        grid-template-columns: 1fr;
    }

    .phone-container {
        width: 200px; /* Reduced from 260px */
        height: 400px; /* Reduced from 520px */
    }
    
    .app-mockup {
        margin-top: 0.5rem;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
}

/* Ensure proper spacing on very small screens */
@media (max-width: 360px) {
    .hero {
        padding: 80px 0 20px; /* Increased top padding for very small screens */
    }
    
    .phone-container {
        width: 180px; /* Reduced from 240px */
        height: 360px; /* Reduced from 480px */
    }
    
    .hero-content {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 1.4rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
}

/* Large Screen Optimizations */
@media (min-width: 1200px) {
    .hero-content {
        gap: 4rem; /* More space between columns on large screens */
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }

    .social-stats {
        grid-template-columns: repeat(6, 1fr);
        max-width: 1200px;
    }

    .container {
        max-width: 1400px;
    }
    
    .phone-container {
        width: 320px; /* Reduced from 450px - more proportional */
        height: 640px; /* Reduced from 900px */
    }
    
    .app-mockup {
        max-width: 100%;
    }
}

/* Extra Large Screen Optimizations */
@media (min-width: 1400px) {
    .hero-content {
        max-width: 1600px; /* Even larger max-width for extra large screens */
        gap: 5rem; /* More space between columns */
    }
    
    .phone-container {
        width: 360px; /* Reduced from 500px - more proportional */
        height: 720px; /* Reduced from 1000px */
    }
    
    .app-mockup {
        max-width: 100%;
    }
}

/* Ultra Wide Screen Optimizations */
@media (min-width: 1600px) {
    .hero-content {
        max-width: 1800px;
        gap: 6rem;
    }
    
    .phone-container {
        width: 400px; /* Reduced from 550px - more proportional */
        height: 800px; /* Reduced from 1100px */
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #05d647, #1c1c1c);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(5, 214, 71, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    background: linear-gradient(135deg, #1c1c1c, #05d647);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 214, 71, 0.4);
}

.scroll-to-top-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(5, 214, 71, 0.3);
}

.scroll-to-top-btn i {
    transition: transform 0.3s ease;
}

.scroll-to-top-btn:hover i {
    transform: translateY(-2px);
}

/* Responsive adjustments for scroll to top button */
@media (max-width: 768px) {
    .scroll-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Coming Soon Notification Styles */
.coming-soon-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #05d647, #1c1c1c);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease-out;
    max-width: 350px;
    font-family: 'Inter', sans-serif;
    animation: slideInRight 0.3s ease-out forwards;
}

.coming-soon-notification.slide-out {
    animation: slideOutRight 0.3s ease-out forwards;
}

.coming-soon-notification .notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.coming-soon-notification .notification-content i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.coming-soon-notification .notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    opacity: 0.8;
    transition: opacity 0.2s;
    line-height: 1;
}

.coming-soon-notification .notification-close:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(400px);
    }
}

/* Responsive notification */
@media (max-width: 768px) {
    .coming-soon-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .coming-soon-notification .notification-content {
        font-size: 13px;
    }
    
    .coming-soon-notification.slide-out {
        animation: slideOutUp 0.3s ease-out forwards;
    }
    
    @keyframes slideInRight {
        from {
            transform: translateY(-100px);
        }
        to {
            transform: translateY(0);
        }
    }
    
    @keyframes slideOutUp {
        from {
            transform: translateY(0);
        }
        to {
            transform: translateY(-100px);
        }
    }
}

/* Image Loading Optimizations */
.screenshot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: opacity 0.3s ease-in-out;
    /* Optimize for performance */
    will-change: opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.screenshot-image[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.screenshot-image[loading="lazy"].loaded {
    opacity: 1;
}

/* Default screenshot placeholder */
.default-screenshot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 8px;
    color: #666;
}

.default-screenshot i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.default-screenshot p {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

/* Optimized slide transitions */
.screen-slide {
    transition: opacity 0.3s ease-in-out;
    /* Performance optimizations */
    will-change: opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Slide indicators optimization */
.slide-indicator {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    /* Performance optimizations */
    will-change: transform, background-color;
}

.slide-indicator:hover {
    transform: scale(1.1);
}

.slide-indicator.active {
    background-color: #007bff;
    transform: scale(1.2);
}

/* Background slideshow optimizations */
.hero {
    position: relative;
    overflow: hidden;
    /* Performance optimizations */
    will-change: transform;
    backface-visibility: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Optimize phone mockup performance */
.app-mockup {
    /* Performance optimizations */
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.phone-container {
    /* Performance optimizations */
    will-change: transform;
    backface-visibility: hidden;
}

/* Loading states */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Progressive image loading */
.progressive-image {
    position: relative;
    overflow: hidden;
}

.progressive-image img {
    transition: opacity 0.3s ease-in-out;
}

.progressive-image img.low-res {
    filter: blur(10px);
    transform: scale(1.1);
}

.progressive-image img.high-res {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.progressive-image img.high-res.loaded {
    opacity: 1;
}

/* Responsive image optimizations */
@media (max-width: 768px) {
    .screenshot-image {
        border-radius: 6px;
    }
    
    .default-screenshot i {
        font-size: 2.5rem;
    }
    
    .default-screenshot p {
        font-size: 1rem;
    }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .screenshot-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}


