:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --mj-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --madonna-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --taylor-gradient: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --phil-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --bryan-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --toto-gradient: linear-gradient(135deg, #fa8bff 0%, #2bd2ff 90%, #2bff88 100%);
    --dire-gradient: linear-gradient(135deg, #ff9a56 0%, #ff6a88 100%);
    --guitar-gradient: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --piano-gradient: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    --ukulele-gradient: linear-gradient(135deg, #fff9c4 0%, #ffcc80 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #1e293b;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: auto !important;
    overflow: visible !important;
    display: block !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.site-version-display {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 100;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: monospace;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 8px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.site-version-display a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
    cursor: pointer;
}

.site-version-display a:hover {
    opacity: 1 !important;
    text-decoration: underline;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,100 Q300,200 600,100 T1200,100 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    max-width: 800px;
}

.hero-icon {
    font-size: 120px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-family: inherit;
}

.btn-primary {
    background: white;
    color: #667eea;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-guide {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-guide:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-pill {
    padding: 10px 24px;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.btn-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Showcase Section */
.showcase-section {
    padding: 80px 20px 40px 20px;
    background: white;
    text-align: center;
}

.showcase-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.showcase-icon {
    font-size: clamp(80px, 15vw, 180px);
    margin-top: 30px;
    animation: float 3s ease-in-out infinite;
    display: block;
    line-height: 1;
}

/* Artists Section */
.artists-section {
    padding: 60px 20px 100px 20px;
    background: white;
    height: auto !important;
    overflow: visible !important;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 60px;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.artist-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}



.artist-card>* {
    position: relative;
    z-index: 1;
}

.mj-card::before {
    background: var(--mj-gradient);
}

.madonna-card::before {
    background: var(--madonna-gradient);
}

.taylor-card::before {
    background: var(--taylor-gradient);
}

.phil-card::before {
    background: var(--phil-gradient);
}

.bryan-card::before {
    background: var(--bryan-gradient);
}

.toto-card::before {
    background: var(--toto-gradient);
}

.dire-card::before {
    background: var(--dire-gradient);
}





.artist-icon {
    font-size: 80px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}



.artist-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1e293b;
    transition: color 0.4s ease;
}

.artist-genre {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    transition: color 0.4s ease;
}

.artist-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.artist-card:hover::before {
    opacity: 1;
}

.artist-card:hover .artist-name,
.artist-card:hover .artist-genre {
    color: white;
}

.artist-card:hover .artist-icon {
    transform: scale(1.15);
}

/* Instruments Section */
.instruments-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.instruments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.instrument-card {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.instrument-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.guitar-card::before {
    background: var(--guitar-gradient);
}

.piano-card::before {
    background: var(--piano-gradient);
}

.ukelele-card::before {
    background: var(--ukulele-gradient);
}



.instrument-card>* {
    position: relative;
    z-index: 1;
}



.instrument-icon {
    font-size: 100px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}



.instrument-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1e293b;
    transition: color 0.4s ease;
}

.instrument-card p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    transition: color 0.4s ease;
}

/* Removed hover effects from instrument and feature cards as they are not clickable */
.instrument-card:hover, 
.feature-card:hover {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    cursor: default !important;
}

.instrument-card:hover::before,
.feature-card:hover::before {
    opacity: 0 !important;
}

.instrument-card:hover .instrument-icon,
.feature-card:hover .feature-icon {
    transform: none !important;
}

.instrument-card:hover h3,
.feature-card:hover h3 {
    color: #1e293b !important;
}

.instrument-card:hover p,
.feature-card:hover p {
    color: #64748b !important;
}

/* Hard reset for guitar-card hover found in styles.css */
.guitar-card:hover {
    transform: none !important;
    background: white !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.guitar-card:active {
    transform: none !important;
}





/* Features Section */
.features-section {
    padding: 100px 20px;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: var(--primary-gradient);
    text-align: center;
    color: white;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.footer p {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-icon {
        font-size: 80px;
    }

    .artists-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .artist-icon {
        font-size: 60px;
    }

    .instrument-icon {
        font-size: 80px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .btn.btn-pill {
        width: auto !important;
        min-width: 220px;
        margin: 0 auto;
        display: inline-flex;
    }
}
.hidden { display: none !important; }

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    padding: 20px;
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 600px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    color: #1e293b;
    animation: modalAppear 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    border-bottom: 1px solid #f1f5f9;
}

.modal-body {
    padding: 20px;
}

.close-modal {
    color: #64748b;
    transition: all 0.2s;
}

.close-modal:hover {
    color: #ef4444;
    transform: rotate(90deg);
}


/* Chord Trainer Showcase */
.trainer-section { padding: 100px 0; background: #ffffff; overflow: hidden; }
.trainer-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.trainer-images-stack { position: relative; width: 100%; min-height: 450px; margin-bottom: 40px; }
.trainer-img { border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 4px solid white; position: absolute; max-width: 100%; }
.img-main { width: 85%; z-index: 3; top: 50px; left: 10%; }
.img-stats { width: 45%; bottom: 0; left: 0; z-index: 4; transform: rotate(-6deg); }
.img-leader { width: 55%; top: 0; right: 0; z-index: 2; transform: rotate(4deg); opacity: 0.9; }
.trainer-img:hover { transform: scale(1.05) translateY(-10px) rotate(0deg); z-index: 10; box-shadow: 0 30px 60px rgba(118, 75, 162, 0.3); }
.badge-new { display: inline-block; background: var(--primary-gradient); color: white; padding: 6px 16px; border-radius: 50px; font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; box-shadow: 0 4px 12px rgba(118, 75, 162, 0.3); }
.trainer-content p { font-size: 1.15rem; color: #475569; margin-bottom: 24px; line-height: 1.7; }
@media (max-width: 968px) { .trainer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; } .trainer-images-stack { max-width: 650px; margin: 0 auto 60px; min-height: 380px; } .img-main { width: 90%; left: 5%; } .img-stats { bottom: -20px; } .img-leader { top: -20px; } .trainer-content .section-title { text-align: center !important; } .trainer-content div { justify-content: center; } }
