/* ============================================
   HILL OF BEANS RECORDS - Dark Immersive Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --green: #39ff14;
    --green-dark: #00cc00;
    --fire-yellow: #ffdd00;
    --fire-orange: #ff8c00;
    --fire-red: #ff3300;
    --black: #0a0a0a;
    --dark-gray: #111111;
    --mid-gray: #1a1a1a;
    --card-bg: #151515;
    --border: #222;
    --light: #f0f0f0;
    --gray: #888;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(57, 255, 20, 0.5);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(57, 255, 20, 0.3);
    }
    50% {
        border-color: rgba(57, 255, 20, 0.6);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease forwards;
}

.animate-scale {
    animation: scaleIn 0.6s ease forwards;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 85px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.3));
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 30px rgba(57, 255, 20, 0.5));
}

.footer-logo {
    height: 100px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav-link {
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--light);
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link:hover {
    color: var(--green);
}

.nav-cta {
    background: var(--green) !important;
    color: var(--black) !important;
    font-weight: 700 !important;
    padding: 14px 28px !important;
    border-radius: 30px !important;
}

.nav-cta::before {
    display: none !important;
}

.nav-cta:hover {
    background: var(--green-dark) !important;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.4);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--light);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ============================================
   DAILY TIP WIDGET
   ============================================ */
.daily-tip-widget {
    position: fixed;
    top: 120px;
    right: 24px;
    width: 320px;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--dark-gray) 100%);
    border: 2px solid var(--green);
    border-radius: 20px;
    padding: 24px;
    z-index: 998;
    animation: borderGlow 3s ease-in-out infinite, fadeInRight 0.8s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(57, 255, 20, 0.1);
}

.daily-tip-widget.hidden {
    display: none;
}

.tip-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.tip-widget-label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: var(--black);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: glowPulse 2s ease-in-out infinite;
}

.tip-widget-close {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tip-widget-close:hover {
    color: var(--green);
    transform: rotate(90deg);
}

.tip-widget-text {
    font-size: 0.95rem;
    color: var(--light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.tip-widget-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tip-widget-link:hover {
    gap: 16px;
    text-shadow: 0 0 20px var(--green);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--black);
    padding-top: 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center right, rgba(57, 255, 20, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at center left, rgba(255, 221, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    padding: 60px 24px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(57, 255, 20, 0.15);
    border: 1px solid rgba(57, 255, 20, 0.3);
    color: var(--green);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    animation: glowPulse 3s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 7rem);
    line-height: 1;
    margin-bottom: 28px;
    font-weight: 700;
}

.title-line {
    display: block;
    color: var(--white);
    text-shadow: 0 0 60px rgba(255, 255, 255, 0.1);
}

.highlight {
    background: linear-gradient(90deg, var(--green), var(--fire-yellow), var(--fire-orange));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    filter: drop-shadow(0 0 30px rgba(57, 255, 20, 0.3));
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::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 ease;
}

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

.btn-primary {
    background: var(--green);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(57, 255, 20, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(57, 255, 20, 0.15);
}

.btn-full {
    width: 100%;
}

.hero-stats {
    display: flex;
    gap: 80px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--green), var(--fire-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: bounce 2s infinite, fadeInUp 1s ease 0.5s both;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-8px); }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    background: rgba(57, 255, 20, 0.1);
    color: var(--green);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
}

.section-desc {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   ARTISTS SECTION
   ============================================ */
.artists {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 100%);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.artist-card {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(50px);
}

.artist-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.artist-card:hover {
    transform: translateY(-12px);
    border-color: var(--green);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(57, 255, 20, 0.1);
}

.artist-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.artist-card:hover .artist-image img {
    transform: scale(1.1);
}

.artist-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.listen-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--green);
    color: var(--black);
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.artist-card:hover .listen-btn {
    transform: translateY(0);
}

.listen-btn:hover {
    background: var(--green-dark);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
}

.artist-info {
    padding: 28px;
}

.artist-info h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--white);
    transition: color 0.3s ease;
}

.artist-card:hover .artist-info h3 {
    color: var(--green);
}

.artist-genre {
    color: var(--green);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.artist-bio {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.artist-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.artist-stats span {
    font-size: 0.85rem;
    color: var(--gray);
}

.artist-stats strong {
    color: var(--green);
    font-size: 1rem;
}

.artist-socials {
    display: flex;
    gap: 12px;
}

.artist-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--mid-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.artist-socials a:hover {
    background: var(--green);
    color: var(--black);
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(57, 255, 20, 0.3);
}

/* ============================================
   STUDIO SECTION
   ============================================ */
.studio {
    position: relative;
    padding: 140px 0;
    background: var(--black);
    overflow: hidden;
}

.studio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?w=1920') center/cover;
    opacity: 0.25;
    transition: opacity 0.5s ease;
}

.studio:hover::before {
    opacity: 0.35;
}

.studio::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.6) 100%);
}

.studio-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.studio .section-tag {
    animation: fadeInLeft 0.8s ease;
}

.studio .section-title {
    color: var(--white);
    animation: fadeInLeft 0.8s ease 0.2s both;
}

.studio-desc {
    font-size: 1.15rem;
    color: #aaa;
    margin-bottom: 50px;
    line-height: 1.8;
    animation: fadeInLeft 0.8s ease 0.4s both;
}

.studio-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.feature {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature:hover {
    border-color: var(--green);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(57, 255, 20, 0.1);
    background: rgba(57, 255, 20, 0.03);
}

.feature i {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.feature:hover i {
    transform: scale(1.2);
}

.feature h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--white);
}

.feature p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ============================================
   MUSIC SECTION
   ============================================ */
.music {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
}

.music-player {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-bottom: 70px;
}

.player-main {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    background: var(--card-bg);
    padding: 36px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.player-main:hover {
    border-color: rgba(57, 255, 20, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.album-art {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

.album-art:hover {
    transform: scale(1.03);
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-info {
    flex: 1;
}

.player-info h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--white);
}

.player-info p {
    color: var(--green);
    font-weight: 600;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.progress-container {
    margin-bottom: 28px;
}

.progress-bar {
    height: 6px;
    background: var(--mid-gray);
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--fire-yellow));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gray);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.control-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--mid-gray);
    border: 1px solid var(--border);
    color: var(--light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: var(--card-bg);
    border-color: var(--green);
    color: var(--green);
    transform: scale(1.1);
}

.play-btn {
    width: 72px;
    height: 72px;
    background: var(--green);
    border: none;
    color: var(--black);
}

.play-btn:hover {
    background: var(--green-dark);
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.5);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    color: var(--gray);
}

.volume-control input[type="range"] {
    width: 90px;
    accent-color: var(--green);
}

.playlist {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 28px;
    border: 1px solid var(--border);
}

.playlist h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.playlist-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.playlist-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.playlist-item:hover,
.playlist-item.active {
    background: rgba(57, 255, 20, 0.08);
    border-color: rgba(57, 255, 20, 0.2);
}

.playlist-item img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.item-info {
    flex: 1;
}

.item-title {
    display: block;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.item-artist {
    font-size: 0.85rem;
    color: var(--gray);
}

.item-duration {
    color: var(--gray);
    font-size: 0.85rem;
}

.streaming-links {
    text-align: center;
}

.streaming-links p {
    color: var(--gray);
    margin-bottom: 20px;
}

.platform-links {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--card-bg);
    border-radius: 30px;
    font-weight: 600;
    color: var(--light);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.platform-link:hover {
    background: var(--green);
    color: var(--black);
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.3);
}

/* ============================================
   LEARN SECTION
   ============================================ */
.learn {
    padding: 120px 0;
    background: var(--black);
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 28px;
}

.learn-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 36px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.learn-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.learn-card:hover {
    border-color: var(--green);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(57, 255, 20, 0.08);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.learn-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--black);
}

.learn-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--white);
    transition: color 0.3s ease;
}

.learn-card:hover h3 {
    color: var(--green);
}

.learn-card > p {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.card-content {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.learn-card.open .card-content {
    max-height: 1000px;
}

.card-content li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.7;
}

.card-content li:last-child {
    border-bottom: none;
}

.card-content li strong {
    color: var(--white);
}

.card-cta {
    margin-top: 24px;
}

.expand-btn {
    background: none;
    border: none;
    color: var(--green);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    gap: 16px;
    text-shadow: 0 0 15px var(--green);
}

/* ============================================
   RESOURCES SECTION
   ============================================ */
.resources {
    padding: 120px 0;
    background: var(--dark-gray);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.resource-category {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 36px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.resource-category.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.resource-category:hover {
    border-color: var(--green);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(57, 255, 20, 0.08);
}

.resource-category h3 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: var(--white);
}

.resource-category h3 i {
    color: var(--green);
    transition: transform 0.3s ease;
}

.resource-category:hover h3 i {
    transform: scale(1.2);
}

.resource-category ul {
    list-style: none;
}

.resource-category li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.resource-category li:last-child {
    border-bottom: none;
}

.resource-category a {
    color: #ccc;
    font-weight: 500;
    transition: all 0.3s ease;
}

.resource-category a:hover {
    color: var(--green);
    padding-left: 8px;
}

/* ============================================
   SUBMIT DEMO SECTION
   ============================================ */
.submit {
    padding: 120px 0;
    background: var(--black);
}

.submit-content {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
}

.submit-guidelines h3 {
    font-size: 1.75rem;
    margin-bottom: 28px;
    color: var(--white);
}

.guideline-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guideline-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.4s ease;
}

.guideline-card.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.guideline-card:hover {
    border-color: var(--green);
    transform: translateX(8px);
}

.guideline-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.guideline-icon i {
    font-size: 1.25rem;
    color: var(--black);
}

.guideline-card h4 {
    font-size: 1.15rem;
    margin-bottom: 14px;
    color: var(--white);
}

.guideline-card ul {
    list-style: none;
}

.guideline-card li {
    padding: 6px 0;
    color: var(--gray);
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.guideline-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

/* Demo Form */
.demo-form {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 44px;
    border: 1px solid var(--border);
}

.demo-form h3 {
    font-size: 1.75rem;
    margin-bottom: 32px;
    color: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--light);
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    background: var(--mid-gray);
    border: 2px solid var(--border);
    border-radius: 14px;
    color: var(--light);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2339ff14' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.checkbox-group input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--green);
    cursor: pointer;
    margin-top: 2px;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 400;
}

/* File Upload */
.file-upload {
    position: relative;
    border: 2px dashed var(--border);
    border-radius: 20px;
    padding: 44px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--mid-gray);
}

.file-upload:hover,
.file-upload.dragover {
    border-color: var(--green);
    background: rgba(57, 255, 20, 0.03);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.05);
}

.file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    pointer-events: none;
}

.upload-label i {
    font-size: 2.5rem;
    color: var(--green);
    transition: transform 0.3s ease;
}

.file-upload:hover .upload-label i {
    transform: scale(1.2);
}

.upload-hint {
    font-size: 0.8rem;
    color: #666;
}

.file-list {
    margin-top: 20px;
    text-align: left;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--card-bg);
    border-radius: 12px;
    margin-top: 10px;
    border: 1px solid var(--border);
}

.file-item i {
    color: var(--green);
}

.file-name {
    flex: 1;
    font-size: 0.9rem;
    color: var(--light);
}

.file-size {
    color: var(--gray);
    font-size: 0.8rem;
}

.file-remove {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 6px;
    transition: all 0.3s ease;
}

.file-remove:hover {
    color: var(--fire-red);
    transform: rotate(90deg);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 120px 0;
    background: var(--dark-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 44px;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 44px;
}

.contact-item {
    display: flex;
    gap: 18px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(8px);
}

.contact-item i {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--white);
}

.contact-item p {
    color: var(--gray);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.social-links a:hover {
    background: var(--green);
    color: var(--black);
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(57, 255, 20, 0.3);
}

.contact-form {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 44px;
    border: 1px solid var(--border);
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--light);
    font-size: 0.9rem;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 16px 18px;
    background: var(--mid-gray);
    border: 2px solid var(--border);
    border-radius: 14px;
    color: var(--light);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.15);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 100px 0 40px;
    background: var(--black);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 70px;
}

.footer-brand p {
    color: var(--gray);
    margin-top: 20px;
    max-width: 300px;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 1.15rem;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--gray);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--green);
    padding-left: 6px;
}

.footer-newsletter h4 {
    font-size: 1.15rem;
    margin-bottom: 14px;
    color: var(--white);
}

.footer-newsletter p {
    color: var(--gray);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    background: var(--mid-gray);
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--light);
    font-family: inherit;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--green);
}

.newsletter-form .btn {
    padding: 16px 28px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--gray);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 28px;
}

.footer-legal a {
    color: var(--gray);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--green);
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 56px;
    text-align: center;
    max-width: 440px;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 4.5rem;
    color: var(--green);
    margin-bottom: 24px;
    animation: glowPulse 2s ease-in-out infinite;
}

.modal-content h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--white);
}

.modal-content p {
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .music-player {
        grid-template-columns: 1fr;
    }

    .player-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .album-art {
        width: 280px;
        height: 280px;
    }

    .player-controls {
        justify-content: center;
    }

    .submit-content {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .daily-tip-widget {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--dark-gray);
        flex-direction: column;
        padding: 120px 40px 40px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        border-left: 1px solid var(--border);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-title {
        font-size: 3.5rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .daily-tip-widget {
        position: fixed;
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
        width: auto;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 40px;
    }

    .album-art {
        width: 220px;
        height: 220px;
    }

    .demo-form {
        padding: 28px;
    }

    .contact-form {
        padding: 28px;
    }
}
