/* ============================================
   SPOTIFLY HIVE - Web3 Dashboard Style
   A unique fly ecosystem music hub
   ============================================ */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Fly Ecosystem Colors */
    --fly-green: #39FF14;
    --fly-cyan: #00FFFF;
    --fly-purple: #BF00FF;
    --fly-pink: #FF006E;
    --fly-gold: #FFD700;
    
    /* Backgrounds */
    --bg-dark: #0a0a0f;
    --bg-card: rgba(20, 20, 35, 0.6);
    --bg-card-hover: rgba(30, 30, 50, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.03);
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.3);
    
    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(57, 255, 20, 0.4);
    
    /* Glows */
    --glow-green: 0 0 30px rgba(57, 255, 20, 0.4);
    --glow-cyan: 0 0 30px rgba(0, 255, 255, 0.4);
    --glow-purple: 0 0 30px rgba(191, 0, 255, 0.4);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */
.bg-effects {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--fly-green) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--fly-purple) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--fly-cyan) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.9); }
    75% { transform: translate(-50px, -20px) scale(1.05); }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* ============================================
   TOP NAVIGATION
   ============================================ */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-fly {
    font-size: 32px;
    animation: flyBuzz 0.3s ease-in-out infinite alternate;
}

@keyframes flyBuzz {
    from { transform: translate(-1px, -1px) rotate(-3deg); }
    to { transform: translate(1px, 1px) rotate(3deg); }
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--fly-green), var(--fly-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tag {
    font-size: 10px;
    font-weight: 600;
    color: var(--bg-dark);
    background: var(--fly-green);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.nav-center {
    display: flex;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-glass);
    border-color: var(--border-subtle);
}

.nav-link.active {
    color: var(--bg-dark);
    background: var(--fly-green);
    box-shadow: var(--glow-green);
}

.nav-icon {
    font-size: 12px;
}

/* Nav Right Container */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* ============================================
   BENTO GRID LAYOUT
   ============================================ */
.bento-container {
    position: relative;
    z-index: 1;
    padding: 90px 32px 32px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(80px, auto);
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.bento-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 24px;
    transition: all 0.4s ease;
}

.bento-card:hover {
    border-color: rgba(57, 255, 20, 0.3);
    transform: translateY(-2px);
}

.card-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--fly-green);
    margin-bottom: 16px;
}

/* ============================================
   HERO PLAYER CARD
   ============================================ */
.player-hero {
    grid-column: span 6;
    grid-row: span 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.05), rgba(0, 255, 255, 0.05));
}

.player-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.vinyl-container {
    position: relative;
    width: 200px;
    height: 200px;
}

.vinyl {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 
        repeating-radial-gradient(
            circle at center,
            #111 0px,
            #111 2px,
            #1a1a1a 2px,
            #1a1a1a 4px
        );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
}

.vinyl.spinning {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vinyl-label {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.2);
    background-color: #1a1a2e;
}

.vinyl-label img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #1a1a2e;
}

.vinyl-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--fly-green) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.player-hero:hover .vinyl-glow {
    opacity: 0.3;
}

.waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 60px;
}

.wave-bar {
    width: 4px;
    height: 20px;
    background: var(--fly-green);
    border-radius: 2px;
    animation: wave 1s ease-in-out infinite;
}

.wave-bar:nth-child(1) { animation-delay: 0.0s; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; }
.wave-bar:nth-child(7) { animation-delay: 0.4s; }
.wave-bar:nth-child(8) { animation-delay: 0.3s; }
.wave-bar:nth-child(9) { animation-delay: 0.2s; }
.wave-bar:nth-child(10) { animation-delay: 0.1s; }
.wave-bar:nth-child(11) { animation-delay: 0.0s; }
.wave-bar:nth-child(12) { animation-delay: 0.1s; }

@keyframes wave {
    0%, 100% { height: 20px; opacity: 0.5; }
    50% { height: 50px; opacity: 1; }
}

.player-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.now-playing-tag {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--fly-cyan);
    margin-bottom: 8px;
}

.track-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
    background: linear-gradient(90deg, var(--text-primary), var(--fly-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.track-artist {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.ctrl-btn {
    width: 44px;
    height: 44px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctrl-btn:hover {
    color: var(--text-primary);
    border-color: var(--fly-green);
}

.ctrl-play {
    width: 60px;
    height: 60px;
    background: var(--fly-green);
    color: var(--bg-dark);
    border: none;
    font-size: 20px;
    box-shadow: var(--glow-green);
}

.ctrl-play:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(57, 255, 20, 0.6);
}

.progress-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.time {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    color: var(--text-muted);
    min-width: 40px;
}

.progress-track {
    flex: 1;
    height: 6px;
    background: var(--bg-glass);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 35%;
    background: linear-gradient(90deg, var(--fly-green), var(--fly-cyan));
    border-radius: 3px;
    transition: width 0.1s linear;
}

.volume-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vol-icon {
    font-size: 18px;
}

.volume-track {
    width: 120px;
    height: 6px;
    background: var(--bg-glass);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
}

.volume-fill {
    height: 100%;
    width: 70%;
    background: var(--fly-green);
    border-radius: 3px;
}

/* ============================================
   STATS CARD
   ============================================ */
.stats-card {
    grid-column: span 3;
    grid-row: span 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--fly-green);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   QUEUE CARD
   ============================================ */
.queue-card {
    grid-column: span 3;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.queue-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    flex: 1;
    max-height: 320px;
    padding-right: 8px;
}

.queue-list::-webkit-scrollbar {
    width: 6px;
}

.queue-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.queue-list::-webkit-scrollbar-thumb {
    background: var(--fly-green);
    border-radius: 3px;
}

.queue-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-glass);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.queue-item:hover {
    background: var(--bg-card-hover);
}

.queue-item.active {
    border-color: var(--fly-green);
    background: rgba(57, 255, 20, 0.1);
}

.queue-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    min-width: 24px;
}

.queue-item.active .queue-num {
    color: var(--fly-green);
}

.queue-info {
    flex: 1;
    min-width: 0;
}

.queue-title {
    font-size: 14px;
    font-weight: 600;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.queue-artist {
    font-size: 12px;
    color: var(--text-muted);
}

.queue-dur {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    color: var(--text-muted);
}

/* ============================================
   COLLECTION CARD (NFT STYLE)
   ============================================ */
.collection-card {
    grid-column: span 6;
    grid-row: span 2;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.see-all {
    font-size: 13px;
    color: var(--fly-green);
    text-decoration: none;
    transition: all 0.3s;
}

.see-all:hover {
    text-shadow: var(--glow-green);
}

.nft-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.nft-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.nft-item:hover {
    transform: translateY(-4px);
}

.nft-image {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
    border: 2px solid var(--border-subtle);
}

.nft-item:hover .nft-image {
    border-color: var(--fly-green);
    box-shadow: var(--glow-green);
}

.nft-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.nft-item:hover .nft-image img {
    transform: scale(1.1);
}

.nft-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s;
}

.nft-item:hover .nft-play {
    opacity: 1;
}

.nft-info {
    text-align: center;
}

.nft-title {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.nft-meta {
    font-size: 11px;
    color: var(--text-muted);
    font-family: 'Orbitron', sans-serif;
}

/* ============================================
   VIDEO CARD
   ============================================ */
.video-card {
    grid-column: span 4;
    grid-row: span 2;
}

.video-featured {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video-thumb {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-thumb:hover .video-overlay {
    opacity: 1;
}

.video-play-btn {
    width: 60px;
    height: 60px;
    background: var(--fly-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--bg-dark);
    box-shadow: var(--glow-green);
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--fly-green);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
}

.video-details h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.video-details p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ============================================
   ACTIVITY FEED
   ============================================ */
.activity-card {
    grid-column: span 4;
    grid-row: span 2;
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-glass);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: var(--bg-card-hover);
}

.activity-icon {
    font-size: 20px;
}

.activity-text {
    flex: 1;
    font-size: 13px;
    color: var(--text-secondary);
}

.activity-text strong {
    color: var(--text-primary);
}

.activity-time {
    font-size: 11px;
    color: var(--text-muted);
}

/* ============================================
   ARTISTS CARD
   ============================================ */
.artists-card {
    grid-column: span 4;
    grid-row: span 2;
}

.hex-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.hex-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.hex-item:hover {
    transform: scale(1.1);
}

.hex-item img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--border-subtle);
    transition: all 0.3s;
}

.hex-item:hover img {
    border-color: var(--fly-cyan);
    box-shadow: var(--glow-cyan);
}

.hex-name {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

/* ============================================
   CTA CARD
   ============================================ */
.cta-card {
    grid-column: span 4;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(191, 0, 255, 0.2), rgba(255, 0, 110, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content {
    text-align: center;
}

.cta-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1) rotate(10deg); }
}

.cta-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin-bottom: 8px;
}

.cta-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.cta-btn {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--fly-purple), var(--fly-pink));
    border: none;
    border-radius: 25px;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--glow-purple);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(191, 0, 255, 0.6);
}

/* ============================================
   VIDEO MODAL
   ============================================ */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 32px;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.video-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.video-close:hover {
    background: var(--fly-green);
    color: var(--bg-dark);
}

#video-player {
    width: 100%;
    display: block;
}

.video-modal-info {
    padding: 24px;
}

.video-modal-info h2 {
    font-size: 22px;
    margin-bottom: 8px;
}

.video-modal-info p {
    color: var(--text-secondary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .bento-container {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .player-hero {
        grid-column: span 6;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .player-info {
        align-items: center;
    }
    
    .player-controls {
        justify-content: center;
    }
    
    .stats-card,
    .queue-card {
        grid-column: span 3;
    }
    
    .collection-card {
        grid-column: span 6;
    }
    
    .nft-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .video-card,
    .activity-card,
    .artists-card,
    .cta-card {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .top-nav {
        padding: 0 16px;
    }
    
    .nav-center {
        display: none;
    }
    
    .bento-container {
        padding: 90px 16px 16px;
        grid-template-columns: 1fr;
    }
    
    .bento-card {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    
    .player-hero {
        grid-template-columns: 1fr;
    }
    
    .vinyl-container {
        width: 150px;
        height: 150px;
    }
    
    .nft-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-subtle);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--fly-green);
}

/* ==================== WALLET & TIPPING STYLES ==================== */

/* Fly Tipping Button */
.tip-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid var(--fly-green);
    border-radius: 25px;
    color: var(--fly-green);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tip-btn:hover {
    background: var(--fly-green);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 25px rgba(57, 255, 20, 0.4);
}

.tip-btn:active {
    transform: translateY(0);
}

.tip-btn .tip-icon {
    font-size: 16px;
}

/* Wallet Button */
.wallet-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 25px;
    color: var(--text-secondary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.wallet-btn:hover {
    border-color: var(--fly-cyan);
    color: var(--fly-cyan);
    background: rgba(0, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.15);
}

.wallet-btn .wallet-icon {
    font-size: 16px;
}

.wallet-btn.connected {
    border-color: var(--fly-green);
    color: var(--fly-green);
    background: rgba(57, 255, 20, 0.08);
}

.wallet-btn.connected .wallet-icon::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: var(--fly-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--fly-green);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--fly-green); }
    50% { opacity: 0.6; box-shadow: 0 0 20px var(--fly-green); }
}

.wallet-btn .spinner {
    width: 14px;
    height: 14px;
    border: 2px solid transparent;
    border-top-color: var(--fly-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Wallet Modal Overlay */
.wallet-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.wallet-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Modal Content */
.modal-content,
.wallet-modal-content {
    background: linear-gradient(180deg, rgba(20, 20, 30, 0.98) 0%, rgba(10, 10, 15, 0.98) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 32px;
    max-width: 420px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(57, 255, 20, 0.1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Header */
.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-header .modal-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    display: block;
}

.modal-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.modal-content h2,
.wallet-modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.modal-content p,
.wallet-modal-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.modal-close:hover {
    color: var(--fly-pink);
    background: rgba(255, 64, 129, 0.1);
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.close-modal:hover {
    color: var(--fly-pink);
    background: rgba(255, 64, 129, 0.1);
}

/* Connect Options */
.connect-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.connect-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
}

.connect-option:hover {
    border-color: var(--fly-cyan);
    background: rgba(0, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.1);
}

.connect-option img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.connect-option .connect-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.connect-option .option-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.connect-option .option-text span {
    color: var(--text-primary);
    font-weight: 500;
}

.connect-option .option-text small {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 400;
    margin-left: 0;
}

.connect-option small {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 400;
}

.connect-option.hashpack-option {
    border-color: rgba(57, 255, 20, 0.3);
    background: rgba(57, 255, 20, 0.05);
}

.connect-option.hashpack-option .hashpack-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
}

.connect-option.hashpack-option:hover {
    border-color: var(--fly-green);
    background: rgba(57, 255, 20, 0.1);
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.15);
}

.wc-badge {
    background: linear-gradient(135deg, #3396FF, #66B8FF);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    margin-left: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.connect-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 8px 0;
}

.connect-divider::before,
.connect-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
}

.connect-note {
    text-align: center;
    margin-top: 12px;
}

.connect-note a {
    color: var(--fly-cyan);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.connect-note a:hover {
    color: var(--fly-green);
}

.connect-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.connect-footer small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.get-wallet-link {
    color: var(--fly-cyan);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.get-wallet-link:hover {
    color: var(--fly-green);
}

.connect-option .icon {
    font-size: 2rem;
}

.connect-option .option-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.connect-option .option-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.connect-option.recommended {
    border-color: var(--fly-green);
    background: rgba(57, 255, 20, 0.05);
}

.connect-option.recommended::after {
    content: 'Recommended';
    font-size: 0.7rem;
    color: var(--fly-green);
    background: rgba(57, 255, 20, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: auto;
}

/* Manual Account Input */
.manual-input-section {
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.manual-input-section h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.account-input-group {
    display: flex;
    gap: 8px;
}

.account-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
}

.account-input:focus {
    outline: none;
    border-color: var(--fly-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.account-input::placeholder {
    color: var(--text-muted);
}

.submit-account-btn,
.connect-btn {
    padding: 12px 20px;
    background: var(--fly-cyan);
    border: none;
    border-radius: 12px;
    color: var(--bg-dark);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-account-btn:hover,
.connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
}

.submit-account-btn:disabled,
.connect-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Tip Modal */
.tip-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.tip-amount-btn {
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-secondary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tip-amount-btn:hover {
    border-color: var(--fly-green);
    color: var(--fly-green);
    background: rgba(57, 255, 20, 0.05);
}

.tip-amount-btn.selected {
    border-color: var(--fly-green);
    background: rgba(57, 255, 20, 0.15);
    color: var(--fly-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

.tip-amount-btn small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 400;
}

/* Custom Tip Input */
.custom-tip-group {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.custom-tip-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
}

.custom-tip-input:focus {
    outline: none;
    border-color: var(--fly-green);
}

/* Tip Summary */
.tip-summary {
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.tip-summary .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.tip-summary .summary-row:last-child {
    margin-bottom: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(57, 255, 20, 0.2);
}

.tip-summary .summary-row span {
    color: var(--text-muted);
}

.tip-summary .summary-row strong {
    color: var(--fly-green);
    font-family: 'Orbitron', sans-serif;
}

.send-tip-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--fly-green), #2dd10d);
    border: none;
    border-radius: 12px;
    color: var(--bg-dark);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.send-tip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(57, 255, 20, 0.4);
}

.send-tip-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Wallet Menu Dropdown */
.wallet-menu {
    position: fixed;
    top: auto;
    right: 16px;
    background: rgba(15, 15, 25, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px;
    min-width: 300px;
    max-width: calc(100vw - 32px);
    z-index: 10000;
    display: none;
    animation: fadeIn 0.2s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.wallet-menu.active {
    display: block;
}

.wallet-menu-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 12px;
}

.wallet-menu-address {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: var(--fly-cyan);
    word-break: break-all;
    flex: 1;
}

.wallet-menu-balance {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(57, 255, 20, 0.1);
    border-radius: 10px;
    margin-bottom: 16px;
}

.wallet-menu-balance .balance-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.wallet-menu-balance .balance-value {
    color: var(--fly-green);
    font-weight: 700;
    font-size: 1.1rem;
}

.wallet-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wallet-menu-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
}

.wallet-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--fly-cyan);
    color: var(--fly-cyan);
}

.wallet-menu-btn.danger {
    color: var(--fly-pink);
}

.wallet-menu-btn.danger:hover {
    background: rgba(255, 64, 129, 0.1);
}

/* Logout button style */
.wallet-menu-actions .logout-btn {
    background: rgba(255, 64, 129, 0.2);
    color: #ff4081;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 8px;
    border: 1px solid rgba(255, 64, 129, 0.4);
}

.wallet-menu-actions .logout-btn:hover {
    background: rgba(255, 64, 129, 0.4);
    color: #fff;
    border-color: #ff4081;
}

.copy-btn-small {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.copy-btn-small:hover {
    background: rgba(0, 255, 255, 0.2);
}

/* Tip Instructions Modal */
.tip-instructions {
    text-align: left;
    padding: 16px 0;
}

.tip-instructions .success-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.tip-instructions h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.instruction-steps {
    text-align: left;
    margin-bottom: 24px;
}

.instruction-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 12px;
}

.instruction-step.highlight {
    background: rgba(57, 255, 20, 0.08);
    border-color: rgba(57, 255, 20, 0.2);
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--fly-green), var(--fly-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0 0 8px 0;
}

.wallet-code {
    background: rgba(0, 255, 255, 0.15);
    padding: 4px 8px;
    border-radius: 6px;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: var(--fly-cyan);
}

.copy-btn-inline {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--fly-cyan);
    border-radius: 8px;
    color: var(--fly-cyan);
    padding: 6px 12px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-btn-inline:hover {
    background: rgba(0, 255, 255, 0.2);
}

.tip-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.open-hashpack-btn {
    padding: 14px 20px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.open-hashpack-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(124, 58, 237, 0.4);
}

.tip-done-btn {
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--fly-green), #45ff45);
    border: none;
    border-radius: 12px;
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tip-done-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(57, 255, 20, 0.4);
}

.connect-wc-hint {
    margin-top: 20px;
    padding: 16px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px dashed rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    text-align: center;
}

.connect-wc-hint p {
    margin: 0 0 12px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.connect-wc-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--fly-cyan);
    border-radius: 8px;
    color: var(--fly-cyan);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.connect-wc-btn:hover {
    background: rgba(0, 255, 255, 0.1);
}

.copy-address-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--fly-cyan);
    border-radius: 12px;
    color: var(--fly-cyan);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.copy-address-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
}

.tip-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

/* Automated tip badge */
.auto-tip-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.15), rgba(0, 255, 255, 0.15));
    border: 1px solid rgba(57, 255, 20, 0.4);
    border-radius: 10px;
    color: var(--fly-green);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.auto-tip-badge .badge-icon {
    font-size: 1.1rem;
}

.manual-tip-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.upgrade-wc-btn {
    background: transparent;
    border: none;
    color: var(--fly-cyan);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.85rem;
}

.upgrade-wc-btn:hover {
    color: #fff;
}

.tip-summary-row.total-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 8px;
    margin-top: 4px;
    font-weight: 600;
}

.tip-summary-row.total-row span:last-child {
    color: var(--fly-green);
}

/* Wallet & Nav Responsive */
@media (max-width: 900px) {
    .nav-right {
        gap: 8px;
    }
    
    .wallet-btn,
    .tip-btn {
        padding: 8px 14px;
        font-size: 12px;
        gap: 6px;
    }
    
    .wallet-btn .wallet-icon,
    .tip-btn .tip-icon {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .nav-right {
        gap: 6px;
    }
    
    .wallet-btn,
    .tip-btn {
        padding: 8px 10px;
        border-radius: 20px;
    }
    
    .wallet-btn span:not(.wallet-icon),
    .tip-btn span:not(.tip-icon) {
        display: none;
    }
    
    .wallet-btn .wallet-icon,
    .tip-btn .tip-icon {
        font-size: 18px;
    }
    
    .modal-content {
        padding: 20px;
        margin: 12px;
        border-radius: 20px;
    }
    
    .modal-content h2 {
        font-size: 1.2rem;
    }
    
    .tip-amounts {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .tip-amount-btn {
        padding: 12px;
    }
    
    .wallet-menu {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 24px 24px 0 0;
        min-width: 100%;
        max-height: 70vh;
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .nav-center {
        display: none;
    }
    
    .top-nav {
        padding: 0 16px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .modal-content {
        padding: 16px;
        margin: 8px;
    }
    
    .instruction-step {
        padding: 12px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

/* ==================== CREATOR PLATFORM STYLES ==================== */

/* Creator Button (My Tracks) */
.creator-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--fly-purple), var(--fly-pink));
    border: none;
    border-radius: 25px;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.creator-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 25px rgba(191, 0, 255, 0.4);
}

/* Become Creator Button */
.become-creator-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid var(--fly-purple);
    border-radius: 25px;
    color: var(--fly-purple);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.become-creator-btn:hover {
    background: var(--fly-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 25px rgba(191, 0, 255, 0.3);
}

/* Creator Modal */
.creator-modal,
.upload-modal,
.dashboard-modal {
    max-width: 480px;
}

/* Profile Avatar Section */
.profile-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.avatar-preview {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fly-purple), var(--fly-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    overflow: hidden;
    border: 3px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-preview:hover {
    border-color: var(--fly-cyan);
}

.avatar-upload-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.avatar-upload-btn:hover {
    border-color: var(--fly-cyan);
    color: var(--fly-cyan);
}

/* Character Count */
.char-count {
    display: block;
    text-align: right;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Social Inputs */
.social-inputs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-input-row .social-icon {
    width: 32px;
    text-align: center;
    font-size: 1rem;
}

.social-input-row input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.social-input-row input:focus {
    outline: none;
    border-color: var(--fly-cyan);
}

.social-input-row input::placeholder {
    color: var(--text-muted);
}

/* Form Styles */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--fly-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    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='%2300FFFF' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: #1a1a2e;
    color: #ffffff;
    padding: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Wallet Display */
.wallet-display {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 12px;
}

.wallet-badge {
    font-size: 1.2rem;
}

.verified-badge {
    color: var(--fly-green);
    font-weight: bold;
}

/* Commission Notice */
.commission-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
}

.commission-notice .notice-icon {
    font-size: 1.5rem;
}

.commission-notice .notice-text strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}

.commission-notice .notice-text p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* Submit Creator Button */
.submit-creator-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--fly-green), #2dd10d);
    border: none;
    border-radius: 12px;
    color: var(--bg-dark);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-creator-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(57, 255, 20, 0.4);
}

/* Upload Dropzone */
.upload-dropzone {
    border: 2px dashed var(--border-subtle);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-dropzone.dragover {
    border-color: var(--fly-cyan);
    background: rgba(0, 255, 255, 0.05);
}

.dropzone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.dropzone-icon {
    font-size: 3rem;
    opacity: 0.7;
}

.dropzone-content p {
    margin: 0;
    color: var(--text-secondary);
}

.dropzone-or {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.browse-btn {
    padding: 10px 24px;
    background: var(--fly-cyan);
    border: none;
    border-radius: 8px;
    color: var(--bg-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.browse-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
}

.dropzone-content small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* File Preview */
.file-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 12px;
    width: 100%;
}

.file-icon {
    font-size: 2rem;
}

.file-info {
    flex: 1;
    text-align: left;
}

.file-name {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.file-size {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.remove-file-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 64, 129, 0.1);
    color: var(--fly-pink);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-file-btn:hover {
    background: rgba(255, 64, 129, 0.2);
}

/* Upload Info */
.upload-info {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.upload-info .info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.upload-info .info-row:last-child {
    border-bottom: none;
}

.upload-info .info-row span {
    color: var(--text-muted);
}

.upload-info .info-row strong {
    color: var(--text-primary);
}

.upload-info .info-row .highlight {
    color: var(--fly-green);
}

/* Upload Submit Button */
.upload-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--fly-cyan), #00cccc);
    border: none;
    border-radius: 12px;
    color: var(--bg-dark);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.upload-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 255, 255, 0.4);
}

.upload-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Tip Breakdown */
.tip-breakdown {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.breakdown-row.total {
    padding-bottom: 12px;
}

.breakdown-row.total strong {
    font-size: 1.2rem;
    color: var(--fly-green);
}

.breakdown-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 8px 0;
}

.breakdown-row.creator strong {
    color: var(--fly-green);
}

.breakdown-row.platform span:last-child {
    color: var(--text-muted);
}

/* Tip Recipients */
.tip-recipients {
    margin-bottom: 20px;
}

.recipient {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-bottom: 10px;
}

.recipient-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(57, 255, 20, 0.1);
    flex-shrink: 0;
}

.recipient-avatar.platform-avatar {
    padding: 8px;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.2), rgba(57, 255, 20, 0.05));
}

.recipient-avatar-fallback {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.2), rgba(57, 255, 20, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.recipient-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.recipient-label {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.recipient-address {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Tip Instructions */
.tip-instructions {
    margin-bottom: 20px;
}

.instruction-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    margin-bottom: 10px;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--fly-green), var(--fly-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.step-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.step-content code {
    background: rgba(0, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--fly-cyan);
}

.copy-btn-inline {
    margin-top: 8px;
    padding: 6px 12px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--fly-cyan);
    border-radius: 6px;
    color: var(--fly-cyan);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn-inline:hover {
    background: rgba(0, 255, 255, 0.2);
}

/* HashPack CTA */
.hashpack-cta {
    text-align: center;
    margin-bottom: 16px;
}

.open-hashpack-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.open-hashpack-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.done-btn {
    width: 100%;
    padding: 14px;
    background: var(--fly-green);
    border: none;
    border-radius: 12px;
    color: var(--bg-dark);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.done-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.4);
}

/* Tip Fee Note */
.tip-fee-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 12px;
}

/* Creator Stats */
.creator-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.stat-item {
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.stat-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fly-green);
    margin-bottom: 4px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Creator Tracks List */
.creator-tracks-list h3 {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.no-tracks {
    text-align: center;
    padding: 32px;
}

.no-tracks p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.upload-cta-btn {
    padding: 12px 24px;
    background: var(--fly-cyan);
    border: none;
    border-radius: 8px;
    color: var(--bg-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-cta-btn:hover {
    transform: translateY(-2px);
}

.tracks-list {
    max-height: 200px;
    overflow-y: auto;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    margin-bottom: 8px;
}

.track-thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: contain;
    background-color: #1a1a2e;
}

.track-info {
    flex: 1;
}

.track-info .track-title {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
}

.track-info .track-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.track-edit-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.track-edit-btn:hover {
    background: rgba(57, 255, 20, 0.2);
    border-color: var(--fly-green);
}

/* Artwork preview in edit modal */
.artwork-preview {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.artwork-placeholder {
    font-size: 3rem;
    opacity: 0.3;
}

/* Edit track modal buttons */
.edit-artwork-btn {
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: 2px solid var(--fly-cyan);
    border-radius: 12px;
    color: var(--fly-cyan);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.edit-artwork-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
}

.edit-save-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--fly-green), #45ff45);
    border: none;
    border-radius: 12px;
    color: var(--bg-dark);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.edit-save-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(57, 255, 20, 0.4);
}

.edit-save-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Dashboard Tabs */
.dashboard-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.dash-tab {
    flex: 1;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dash-tab:hover {
    border-color: var(--fly-cyan);
    color: var(--fly-cyan);
}

.dash-tab.active {
    background: var(--fly-cyan);
    border-color: var(--fly-cyan);
    color: var(--bg-dark);
}

/* Playlists */
.playlists-header {
    margin-bottom: 12px;
}

.create-playlist-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px dashed var(--fly-green);
    border-radius: 12px;
    color: var(--fly-green);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.create-playlist-btn:hover {
    background: rgba(57, 255, 20, 0.1);
}

.playlists-list {
    max-height: 300px;
    overflow-y: auto;
}

.playlist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.playlist-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.playlist-icon {
    font-size: 1.5rem;
}

.playlist-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.playlist-name {
    font-weight: 600;
    color: #fff;
}

.playlist-meta {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.playlist-actions {
    display: flex;
    gap: 8px;
}

.playlist-edit-btn,
.playlist-delete-btn {
    background: transparent;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.2s ease;
    padding: 4px;
}

.playlist-edit-btn:hover {
    opacity: 1;
}

.playlist-delete-btn:hover {
    opacity: 1;
    color: #ff4444;
}

.no-playlists {
    text-align: center;
    padding: 30px 20px;
    color: rgba(255, 255, 255, 0.5);
}

/* Playlist Modal */
.playlist-tracks-list {
    max-height: 350px;
    overflow-y: auto;
    margin-bottom: 16px;
}

.track-remove-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    transition: all 0.2s ease;
}

.track-remove-btn:hover {
    color: #ff4444;
}

.play-playlist-btn {
    flex: 1;
    padding: 14px;
    background: linear-gradient(135deg, var(--fly-green), #45ff45);
    border: none;
    border-radius: 12px;
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-playlist-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(57, 255, 20, 0.4);
}

.play-playlist-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.playlist-actions {
    display: flex;
    gap: 12px;
}

/* Playlist Picker Modal */
.playlist-picker {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 16px;
}

.playlist-picker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.playlist-picker-item:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--fly-cyan);
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--fly-cyan);
}

.upload-more-btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 1px solid var(--fly-cyan);
    border-radius: 12px;
    color: var(--fly-cyan);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.upload-more-btn:hover {
    background: rgba(0, 255, 255, 0.1);
}

.dashboard-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.dashboard-actions .upload-more-btn,
.dashboard-actions .edit-profile-btn {
    flex: 1;
    margin-top: 0;
}

.edit-profile-btn {
    padding: 14px;
    background: transparent;
    border: 1px solid var(--fly-magenta);
    border-radius: 12px;
    color: var(--fly-magenta);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.edit-profile-btn:hover {
    background: rgba(255, 0, 255, 0.1);
}

/* Spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Mobile Responsive for Creator Platform */
@media (max-width: 640px) {
    .creator-btn span:not(:first-child),
    .become-creator-btn span:not(:first-child) {
        display: none;
    }
    
    .become-creator-btn,
    .creator-btn {
        padding: 10px 12px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .creator-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .stat-item {
        padding: 12px 8px;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
    
    .upload-dropzone {
        padding: 24px 16px;
    }
    
    .file-name {
        max-width: 120px;
    }
    
    .avatar-preview {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .social-input-row input {
        font-size: 0.85rem;
    }
}

/* Claim Tracks Banner */
.claim-tracks-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.claim-tracks-banner:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    border-color: var(--fly-cyan);
    transform: translateX(4px);
}

.claim-icon {
    font-size: 2rem;
}

.claim-text {
    flex: 1;
}

.claim-text strong {
    display: block;
    color: var(--fly-cyan);
    font-size: 0.95rem;
}

.claim-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.claim-arrow {
    font-size: 1.5rem;
    color: var(--fly-cyan);
}

/* Claim Modal */
.claim-modal {
    max-height: 80vh;
    overflow-y: auto;
}

.claim-tracks-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0;
    max-height: 300px;
    overflow-y: auto;
}

.claim-track-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.claim-track-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.claim-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--fly-cyan);
    cursor: pointer;
}

.claim-track-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    cursor: pointer;
}

.claim-track-thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.claim-track-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.claim-track-title {
    font-weight: 600;
    color: white;
}

.claim-track-artist {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.claim-summary {
    text-align: center;
    padding: 12px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--fly-cyan);
    font-weight: 600;
    margin-bottom: 16px;
}

.claim-btn {
    background: linear-gradient(135deg, var(--fly-cyan), var(--fly-magenta));
}

.claim-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Section Pages */
.section-header-card {
    grid-column: span 4;
    padding: 32px;
}

.section-header h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--fly-cyan), var(--fly-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.empty-state-card,
.tracks-grid-card,
.discover-tracks-card,
.creators-section-card {
    grid-column: span 4;
    padding: 32px;
}

.empty-state {
    text-align: center;
    padding: 48px 24px;
}

.empty-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.tracks-section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.track-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.track-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.track-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.track-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.track-card:hover .track-card-image img {
    transform: scale(1.05);
}

.track-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--fly-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--bg-dark);
}

.track-card:hover .track-card-play {
    opacity: 1;
}

.track-tip-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--fly-green);
    border-radius: 20px;
    color: var(--fly-green);
    font-size: 0.75rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
}

.track-card:hover .track-tip-btn {
    opacity: 1;
}

.track-tip-btn:hover {
    background: var(--fly-green);
    color: var(--bg-dark);
}

.track-card-info {
    padding: 16px;
}

.track-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-card-artist {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.track-card-stats {
    display: flex;
    gap: 16px;
    font-size: 0.75rem;
    color: var(--fly-cyan);
}

.section-cta-card {
    grid-column: span 4;
    display: flex;
    justify-content: center;
    padding: 24px;
}

.upload-cta-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--fly-cyan), var(--fly-magenta));
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-cta-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Creators Section */
.creators-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 16px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--fly-cyan) transparent;
}

.creator-spotlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.creator-spotlight:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.creator-avatar-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--fly-cyan);
}

.creator-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creator-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fly-cyan), var(--fly-magenta));
    font-size: 2rem;
}

.creator-name {
    font-weight: 600;
    text-align: center;
}

.creator-genre {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Creator Profile Modal */
.creator-profile-modal {
    max-width: 500px;
}

.creator-profile-header {
    text-align: center;
    margin-bottom: 24px;
}

.creator-profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid var(--fly-cyan);
}

.creator-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder-lg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fly-cyan), var(--fly-magenta));
    font-size: 3rem;
}

.creator-profile-genre {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    color: var(--fly-cyan);
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.creator-profile-bio {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.creator-profile-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--fly-cyan);
    color: var(--bg-dark);
}

.play-track-btn {
    width: 36px;
    height: 36px;
    background: var(--fly-cyan);
    border: none;
    border-radius: 50%;
    color: var(--bg-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-track-btn:hover {
    transform: scale(1.1);
}
