* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    /* These will be overridden by JavaScript */
    --primary: #6B47FF;
    --secondary: #FF4785;
    --dark: #0A0A0A;
    --light: #FFFFFF;
    --neon-pink: #FF2D76;
    --neon-blue: #4DEEEA;
    --footer-bg: rgba(255,255,255,0.02);
    --footer-text: rgba(255,255,255,0.7);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: var(--light);
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Add this new container style */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

#user-welcome {
    font-size: 0.95rem;
    color: var(--light);
    margin-left: 0.5rem;
}

.login-btn {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--neon-blue);
    background: transparent;
    cursor: pointer;
    color: var(--light);
    transition: all 0.3s ease;
}

.secret-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.5rem;
    color: var(--light);
}

.login-btn:hover {
    background: var(--neon-blue);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .top-header {
        padding: 0.5rem;
    }
    #user-welcome {
        font-size: 0.85rem;
        margin-left: 0.25rem;
    }
    .login-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    .secret-btn {
        font-size: 0.8rem;
        padding: 0.4rem;
    }
}

.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), 
                url('https://images.unsplash.com/photo-1501612780327-45045538702b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(107, 71, 255, 0.1) 100%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    transform: translateZ(0);
}

.logo {
    font-size: 8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -4px;
    position: relative;
    text-shadow: 3px 3px 0px var(--primary),
                 6px 6px 0px var(--secondary);
    transform: skew(-5deg) rotate(-2deg);
    animation: logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(77, 238, 234, 0.3));
}

@keyframes logoFloat {
    0%, 100% { transform: skew(-5deg) rotate(-2deg) translateY(0); }
    50% { transform: skew(-5deg) rotate(-2deg) translateY(-20px); }
}

.logo::before {
    content: 'STAMP';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    -webkit-text-stroke: 2px var(--neon-blue);
    z-index: -1;
    animation: logoPulse 2s ease-in-out infinite alternate;
    opacity: 0.6;
}

@keyframes logoPulse {
    from {
        transform: scale(1.05);
        filter: brightness(1);
    }
    to {
        transform: scale(1.15);
        filter: brightness(1.5);
    }
}

/* Add sections styling */
.sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 71, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Add footer styling */
footer {
    background: rgba(255,255,255,0.02);
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Move the base .hero h1 styles before the media queries */
.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 2s ease-in-out infinite alternate;
    font-weight: 800;
    letter-spacing: -1px;
}

/* Then the media queries will properly override */
@media (max-width: 768px) {
    .sections {
        grid-template-columns: 1fr;
    }

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

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

    .hero p {
        font-size: 1.1rem;
    }

    .logo {
        font-size: 6rem;
        margin-top: 1em;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 2rem;
    }

    .logo {
        font-size: 4rem;
        margin-top: 1em;
    }
}

/* ... rest of the main CSS styles ... */

/* Add these styles after the existing .section styles */
.section:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 10px 40px rgba(255, 45, 118, 0.2);
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--primary));
    color: var(--light);
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(107, 71, 255, 0.3);
}

.btn:hover {
    background: linear-gradient(45deg, var(--primary), var(--neon-blue));
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(77, 238, 234, 0.4);
}

.invite-code {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    border: 1px solid rgba(77, 238, 234, 0.2);
}

.invite-code p {
    margin-bottom: 1rem;  /* Add space between text and input container */
}

.invite-input-container {
    display: flex;
    gap: 1rem;
    max-width: 400px; /* Increase from default width */
    margin: 1rem auto;
}

.invite-code input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.2);
    color: var(--light);
    width: 100%; /* Ensure input takes full width of container */
}

@media (max-width: 768px) {
    .invite-input-container {
        max-width: 100%; /* Full width on mobile */
        padding: 0 1rem; /* Add some padding on sides */
    }
}

.invite-code input:focus {
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 45, 118, 0.3);
    outline: none;
}

.explore-artists {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.genre-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.genre-tag:hover {
    background: var(--neon-blue);
    color: var(--dark);
    transform: translateY(-2px);
}

.footer-section h3 {
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--neon-pink);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--neon-blue);
}

@keyframes titleGlow {
    from {
        text-shadow: 0 0 20px rgba(77, 238, 234, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 45, 118, 0.8);
    }
}

/* Add these styles after the existing styles */

.content-sections {
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    margin-top: 1rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
    max-width: 1200px;
    margin: 1rem auto;
}

.content-card {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(77, 238, 234, 0.2);
}

.content-card h3 {
    color: var(--neon-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.content-card p {
    margin-bottom: 1rem;
}

.stats-highlight {
    font-size: 2rem;
    color: var(--neon-pink);
    margin: 1rem 0;
    font-weight: bold;
}

.retro-section {
    text-align: center;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 2px solid var(--neon-pink);
}

.visitor-counter {
    font-family: "VT323", monospace;
    font-size: 2rem;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
    margin: 1rem 0;
}

.webmaster-info {
    font-family: "Courier New", monospace;
    border: 1px dashed var(--neon-blue);
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
}

.best-viewed {
    font-size: 0.9rem;
    color: var(--neon-pink);
    margin: 1rem 0;
    font-style: italic;
}

.guestbook-btn {
    background: var(--neon-blue);
    border: none;
    padding: 0.5rem 1rem;
    color: var(--dark);
    font-weight: bold;
    cursor: pointer;
    margin: 1rem 0;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% { opacity: 0.5; }
}

@keyframes scroll {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

.hidden {
    display: none !important;
}

.nineties-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #39FF14;
    font-family: 'VT323', monospace;
    font-size: 1.25rem;
    padding: 1rem 2rem;
    border: 2px solid #FFD700;
    text-align: center;
    z-index: 2000; /* Above header, hero, etc. */
    animation: fadein 0.5s; /* optional fade-in effect */
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Constitution Section - Updated to match sections width */
.constitution-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem; /* Reduced padding to match sections */
}

.constitution-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.constitution-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.constitution-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Changed to 2 columns like sections */
    gap: 2rem;
}

.constitution-point {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 71, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.constitution-point:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.point-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.constitution-point p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .constitution-container {
        padding: 1.5rem;
        margin: 2rem 1rem;
    }
    
    .constitution-title {
        font-size: 2rem;
    }
    
    .constitution-points {
        grid-template-columns: 1fr;
    }
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 60px; /* Add this line to account for the fixed header height */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.page-header h1 {
    font-size: 3.5rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    margin: 0;
}

.page-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* About Page */
.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(107, 71, 255, 0.2);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--neon-blue);
}

.team-member h3 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-title {
    text-align: center;
    color: var(--neon-pink);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(107, 71, 255, 0.2);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.value-item h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Help Center Page */
.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.help-category {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.help-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 71, 255, 0.2);
}

.help-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.help-category ul {
    list-style: none;
    padding: 0;
}

.help-category ul li {
    margin-bottom: 0.8rem;
}

.help-category ul li a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.help-category ul li a:hover {
    color: var(--neon-pink);
}

.faq-section {
    margin-top: 4rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: '+';
    font-size: 1.5rem;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

/* Contact Page */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--light);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(77, 238, 234, 0.3);
}

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

.contact-info {
    margin-top: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

/* Blog Page Styles */
.blog-hero {
    position: relative;
    height: 600px;
    margin-top: 60px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8)), 
                url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.featured-post {
    max-width: 800px;
    margin: 0 auto;
    color: var(--light);
}

.featured-tag {
    background: var(--neon-pink);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.featured-content h1 {
    font-size: 3rem;
    margin: 1rem 0;
    line-height: 1.2;
}

.featured-excerpt {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.meta-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
}

.post-date {
    font-size: 0.9rem;
    opacity: 0.8;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--neon-blue);
    color: var(--dark);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(77, 238, 234, 0.3);
}

.blog-filters {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.filter-container {
    display: flex;
    gap: 1rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: var(--light);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: var(--neon-blue);
    border-color: var(--neon-blue);
    color: var(--dark);
}

.search-container {
    position: relative;
}

.search-input {
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: var(--light);
    width: 250px;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
}

.blog-grid-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.card-image-container {
    position: relative;
    height: 200px;
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.reading-time {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.7);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.card-content {
    padding: 1.5rem;
}

.category-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.category-tag.industry { background: var(--neon-pink); }
.category-tag.tech { background: var(--neon-blue); }

.card-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-content p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar-small {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trending-section, .categories-section, .newsletter-section {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 1.5rem;
}

.trending-post {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    color: var(--light);
}

.trending-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-blue);
}

.trending-content h4 {
    margin-bottom: 0.3rem;
}

.views {
    font-size: 0.8rem;
    opacity: 0.7;
}

.category-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    color: var(--light);
}

.post-count {
    background: rgba(255,255,255,0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-form input {
    padding: 0.8rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: var(--light);
}

.newsletter-form button {
    padding: 0.8rem;
    border-radius: 10px;
    border: none;
    background: var(--neon-blue);
    color: var(--dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(77, 238, 234, 0.3);
}

@media (max-width: 1200px) {
    .blog-grid-container {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-hero {
        height: auto;
        padding: 4rem 1rem;
    }
    
    .featured-content h1 {
        font-size: 2rem;
    }
    
    .blog-filters {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-container {
        overflow-x: auto;
        padding-bottom: 1rem;
        width: 100%;
    }
    
    .search-container {
        width: 100%;
    }
    
    .search-input {
        width: 100%;
    }
}

/* Artist Guide Page Styles */
.guide-intro {
    margin-bottom: 3rem;
}

.cta-box {
    background: linear-gradient(rgba(107, 71, 255, 0.1), rgba(255, 71, 133, 0.1));
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    border: 1px solid rgba(107, 71, 255, 0.2);
}

.cta-box h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
}

.guide-section {
    margin-bottom: 4rem;
}

.guide-step {
    display: flex;
    margin-bottom: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.guide-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 71, 255, 0.2);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tip-box {
    background: rgba(0,0,0,0.2);
    border-left: 3px solid var(--neon-blue);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0 5px 5px 0;
}

.tip-box h4 {
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.strategy-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 71, 255, 0.2);
}

.strategy-card i {
    font-size: 2.5rem;
    color: var(--neon-pink);
    margin-bottom: 1rem;
}

.strategy-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.monetization-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.monetization-option {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.monetization-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 71, 255, 0.2);
}

.monetization-option h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--neon-blue);
}

.monetization-option ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.monetization-option li {
    margin-bottom: 0.5rem;
}

.success-story {
    display: flex;
    margin-bottom: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.success-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 71, 255, 0.2);
}

.story-image {
    width: 200px;
    background-size: cover;
    background-position: center;
}

.story-content {
    padding: 1.5rem;
    flex: 1;
}

.story-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.story-genre {
    color: var(--neon-pink);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 71, 255, 0.2);
}

.resource-card i {
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.resource-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.resource-card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.resource-link {
    color: var(--neon-pink);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resource-link:hover {
    text-decoration: underline;
}

.signup-form {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .guide-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .success-story {
        flex-direction: column;
    }
    
    .story-image {
        width: 100%;
        height: 200px;
    }
}

/* Fan Guide Page Styles */
.support-grid, 
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-card,
.benefit-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover,
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 71, 255, 0.2);
}

.support-card i,
.benefit-card i {
    font-size: 2.5rem;
    color: var(--neon-pink);
    margin-bottom: 1rem;
}

.support-card h3,
.benefit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 71, 255, 0.2);
}

.testimonial-content {
    padding: 2rem;
}

.testimonial-content > p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 1rem;
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--neon-blue);
}

@media (max-width: 768px) {
    .support-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.last-updated {
    color: rgba(255,255,255,0.7);
    font-style: italic;
    margin-bottom: 2rem;
    text-align: right;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--neon-blue);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: var(--neon-pink);
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-section ul, 
.legal-section ol {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 1rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
}

/* Waitlist Page Styles */
.waitlist-container {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.waitlist-info {
    flex: 1;
}

.waitlist-info h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.waitlist-info p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.waitlist-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 71, 255, 0.2);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--neon-pink);
    margin-bottom: 1rem;
}

.feature-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.waitlist-form-container {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 2rem;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: var(--light);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 0 2px rgba(77, 238, 234, 0.3);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

.checkbox-item label {
    cursor: pointer;
    flex: 1;
    margin: 0;
}

.waitlist-form .form-group.checkbox-item {
    justify-content: flex-start;
    margin: 20px 0;
}

.btn-primary {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    color: var(--light);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(107, 71, 255, 0.3);
}

.thank-you-message {
    text-align: center;
    padding: 2rem;
}

.thank-you-message i {
    font-size: 4rem;
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
}

.thank-you-message h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.thank-you-message p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .waitlist-container {
        flex-direction: column;
    }
    
    .waitlist-info,
    .waitlist-form-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .waitlist-features {
        grid-template-columns: 1fr;
    }
}

/* Artist of the Week Page Styles */
.artist-header {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 0;
}

.artist-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
}

.artist-spotlight {
    margin-top: 1rem;
}

.artist-spotlight h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.artist-genre {
    font-size: 1.2rem;
    opacity: 0.8;
}

.artist-intro {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.artist-profile {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artist-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-bottom: 2rem;
    border: 4px solid var(--neon-pink);
    box-shadow: 0 10px 30px rgba(255, 45, 118, 0.3);
}

.artist-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-blue);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.artist-actions {
    display: flex;
    gap: 1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--light);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(77, 238, 234, 0.1);
    transform: translateY(-3px);
}

.artist-bio {
    flex: 2;
}

.artist-bio h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neon-blue);
}

.artist-bio p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.artist-quote {
    border-left: 4px solid var(--neon-pink);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.artist-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
}

.artist-social {
    margin-top: 2rem;
}

.artist-social a {
    font-size: 1.5rem;
    margin-right: 1.5rem;
    color: var(--light);
    transition: all 0.3s ease;
}

.artist-social a:hover {
    color: var(--neon-pink);
    transform: translateY(-3px);
}

.featured-music {
    margin-bottom: 4rem;
}

.featured-music h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--neon-blue);
}

.tracks-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.track-item {
    display: flex;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.track-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 71, 255, 0.2);
}

.track-artwork {
    width: 120px;
    height: 120px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button:hover {
    background: var(--neon-pink);
    transform: translate(-50%, -50%) scale(1.1);
}

.track-info {
    padding: 1.5rem;
    flex: 1;
}

.track-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.track-info p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.track-stats {
    display: flex;
    gap: 1.5rem;
}

.track-stats span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.track-stats i {
    margin-right: 0.5rem;
}

.artist-interview {
    margin-bottom: 4rem;
}

.artist-interview h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--neon-blue);
}

.interview-content {
    display: flex;
    gap: 3rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
}

.interview-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.interview-text {
    flex: 2;
    padding: 2rem;
}

.interview-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-pink);
}

.interview-text > p {
    margin-bottom: 2rem;
    line-height: 1.7;
}

.interview-qa {
    margin-bottom: 1.5rem;
}

.question {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--neon-blue);
}

.answer {
    line-height: 1.7;
}

.read-more {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--neon-pink);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    transform: translateX(5px);
}

.previous-artists h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--neon-blue);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.artist-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 71, 255, 0.2);
}

.artist-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.artist-card-info {
    padding: 1.5rem;
}

.artist-card-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.artist-card-info p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.artist-link {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.artist-link:hover {
    color: var(--neon-pink);
}

@media (max-width: 992px) {
    .artist-intro {
        flex-direction: column;
    }
    
    .interview-content {
        flex-direction: column;
    }
    
    .interview-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .artist-header-overlay {
        padding: 2rem;
    }
    
    .artist-spotlight h2 {
        font-size: 2.5rem;
    }
    
    .artist-stats {
        gap: 1rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
    }
}

/* Why We're Different Page Styles */
.intro-section {
    margin-bottom: 4rem;
}

.mission-statement {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--neon-pink);
}

.mission-statement p {
    font-size: 1.3rem;
    line-height: 1.7;
    font-weight: 600;
}

.comparison-section {
    margin-bottom: 4rem;
}

.comparison-table {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 2rem;
}

.comparison-header {
    display: flex;
    background: rgba(255,255,255,0.1);
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 1.5rem;
    flex: 1;
}

.feature-cell {
    font-weight: 600;
    flex: 0.8;
}

.stamp-cell {
    background: rgba(77, 238, 234, 0.05);
}

.stamp-cell i {
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
}

.others-cell i {
    color: var(--neon-pink);
    margin-bottom: 0.5rem;
}

.comparison-cell p {
    margin: 0;
}

.key-differences {
    margin-bottom: 4rem;
}

.differences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.difference-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.difference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 71, 255, 0.2);
}

.difference-icon {
    font-size: 2.5rem;
    color: var(--neon-pink);
    margin-bottom: 1.5rem;
    text-align: center;
}

.difference-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.difference-card p {
    line-height: 1.7;
}

.testimonials-section {
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cta-section {
    text-align: center;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

@media (max-width: 992px) {
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-cell {
        padding: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .comparison-header, .comparison-row {
        flex-direction: column;
    }
    
    .comparison-cell {
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .comparison-row .comparison-cell:last-child {
        border-bottom: none;
    }
    
    .differences-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        flex: 1;
        min-width: 200px;
    }
}

/* Why It Matters Page Styles */
.stats-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-box {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 71, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-pink);
    display: block;
    margin-bottom: 1rem;
}

.problem-section {
    margin-bottom: 4rem;
}

.problem-card {
    display: flex;
    gap: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 71, 255, 0.2);
}

.problem-icon {
    font-size: 2.5rem;
    color: var(--neon-blue);
    flex-shrink: 0;
}

.problem-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-pink);
}

.problem-content p {
    line-height: 1.7;
}

.impact-section {
    margin-bottom: 4rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.impact-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 71, 255, 0.2);
}

.impact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--neon-blue);
    text-align: center;
}

.impact-card ul {
    list-style-type: none;
}

.impact-card li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.impact-card li:before {
    content: "•";
    color: var(--neon-pink);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.2rem;
}

.quote-section {
    margin-bottom: 4rem;
}

.quote-section blockquote {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 3rem;
    font-size: 1.5rem;
    line-height: 1.7;
    font-style: italic;
    position: relative;
}

.quote-section blockquote:before {
    content: """;
    font-size: 6rem;
    position: absolute;
    left: 1rem;
    top: -1rem;
    color: var(--neon-pink);
    opacity: 0.3;
}

.quote-section cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1.1rem;
    text-align: right;
    color: var(--neon-blue);
}

.vision-section {
    margin-bottom: 4rem;
}

.vision-points {
    margin: 2rem 0;
}

.vision-point {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.vision-point i {
    color: var(--neon-blue);
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.vision-point p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.vision-conclusion {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 2rem;
    text-align: center;
}

@media (max-width: 992px) {
    .stats-container {
        flex-direction: column;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .problem-card {
        flex-direction: column;
        gap: 1rem;
    }
    
    .problem-icon {
        text-align: center;
    }
    
    .quote-section blockquote {
        padding: 2rem;
        font-size: 1.2rem;
    }
}

/* Dashboard Styles */
.home-link {
    color: var(--light);
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-right: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.home-link i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.home-link:hover i {
    transform: scale(1.1);
}

.home-link:hover span {
    color: var(--neon-blue);
}

.dashboard-section {
    margin-bottom: 3rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 71, 255, 0.2);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.dashboard-actions {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.activity-feed {
    margin-top: 1.5rem;
}

.activity-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-pink);
    flex-shrink: 0;
}

.activity-content p {
    margin-bottom: 0.25rem;
}

.activity-time {
    font-size: 0.8rem;
    opacity: 0.6;
}

.tracks-list {
    margin-top: 1.5rem;
}

.track-item {
    display: flex;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.track-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(107, 71, 255, 0.2);
}

.track-artwork {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.track-info {
    padding: 1rem;
    flex: 1;
}

.track-info h3 {
    margin-bottom: 0.25rem;
}

.track-info p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.track-stats {
    display: flex;
    gap: 1rem;
}

.track-stats span {
    font-size: 0.8rem;
    opacity: 0.7;
}

.track-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1rem;
}

.btn-icon {
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    color: var(--neon-blue);
}

.login-prompt {
    text-align: center;
    padding: 3rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.login-icon {
    font-size: 3rem;
    color: var(--neon-pink);
    margin-bottom: 1.5rem;
}

.login-prompt h2 {
    margin-bottom: 1rem;
}

.login-prompt p {
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .dashboard-actions {
        flex-wrap: wrap;
    }
    
    .dashboard-actions .btn {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .dashboard-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .track-item {
        flex-direction: column;
    }
    
    .track-artwork {
        width: 100%;
        height: 120px;
    }
    
    .track-actions {
        flex-direction: row;
        justify-content: flex-end;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
}

/* Return to Home Link Styles */
.return-home-container {
    margin-top: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.return-home-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--neon-blue);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.return-home-link:hover {
    background: rgba(77, 238, 234, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(77, 238, 234, 0.2);
}

/* Artist Stories Page Styles */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.story-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 71, 255, 0.2);
}

.story-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.story-content {
    padding: 1.5rem;
}

.story-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.story-meta {
    color: var(--neon-pink);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.story-content p {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }
}

/* Fan Curated Tracks Page Styles */
.playlists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.playlist-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.playlist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 71, 255, 0.2);
}

.playlist-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.playlist-content {
    padding: 1.5rem;
}

.playlist-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.playlist-meta {
    color: var(--neon-blue);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.playlist-content p {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .playlists-grid {
        grid-template-columns: 1fr;
    }
}

/* Genre Cards Section */
.genres-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.genres-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.genres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.genre-card {
    position: relative;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.genre-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.genre-card:hover .genre-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.genre-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.genre-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.genre-overlay h3 {
    color: var(--light);
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
}

.view-all-container {
    text-align: center;
    margin-top: 2rem;
}

.view-all-link {
    color: var(--neon-blue);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.view-all-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.view-all-link:hover {
    color: var(--neon-pink);
}

.view-all-link:hover i {
    transform: translateX(5px);
}

.invite-input-container {
    display: flex;
    gap: 1rem;
    max-width: 400px; /* Increase from default width */
    margin: 1rem auto;
}

.invite-code input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.2);
    color: var(--light);
    width: 100%; /* Ensure input takes full width of container */
}

@media (max-width: 768px) {
    .invite-input-container {
        max-width: 100%; /* Full width on mobile */
        padding: 0 1rem; /* Add some padding on sides */
    }
}

.error-message {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.error-message[style*="display: block"] {
    opacity: 1;
    transform: translateY(0);
}

.streaming-problems {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.streaming-problems h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.problem-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 71, 255, 0.2);
}

.problem-section h3 {
    color: var(--neon-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stamp-value {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.stamp-price, .artist-share {
    text-align: center;
}

.stamp-price .price, .artist-share .percentage {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stamp-price .price {
    color: var(--neon-pink);
}

.artist-share .percentage {
    color: var(--neon-blue);
}

.stamp-price .label, .artist-share .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.calculator-cta {
    text-align: center;
    margin-top: 3rem;
}

.calculator-cta .btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    border: none;
    transform-origin: center;
    transition: all 0.3s ease;
}

.calculator-cta .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(77, 238, 234, 0.3);
}

@media (max-width: 768px) {
    .streaming-problems {
        padding: 1rem;
        margin: 2rem auto;
    }

    .streaming-problems h2 {
        font-size: 2rem;
    }

    .problem-section {
        padding: 1.5rem;
    }

    .stamp-value {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stamp-price .price, .artist-share .percentage {
        font-size: 2rem;
    }
}

/* Calculator Page Styles */
.calculator-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 60px;
}

.calculator-intro {
    margin-bottom: 3rem;
}

.calculator-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.preset-amounts {
    margin-bottom: 3rem;
}

.preset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.preset-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--light);
}

.preset-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(77, 238, 234, 0.2);
}

.preset-btn .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
}

.preset-btn .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.calculator-input {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
}

.currency-symbol {
    font-size: 1.2rem;
    color: var(--neon-pink);
}

#customAmount {
    flex: 1;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    font-size: 1.1rem;
}

.calculate-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: none;
    background: var(--neon-blue);
    color: var(--dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(77, 238, 234, 0.3);
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

.streams-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-pink);
    text-align: center;
    margin: 1.5rem 0;
}

.result-details {
    margin-top: 1.5rem;
}

.time-estimate {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.time-estimate ul {
    list-style: none;
    margin-top: 0.5rem;
}

.time-estimate li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.info-card h3 {
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.learn-more-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    border-radius: 8px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(77, 238, 234, 0.3);
}

@media (max-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

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

    .calculator-input {
        flex-direction: column;
    }

    .calculate-btn {
        width: 100%;
    }

    .streams-number {
        font-size: 2.5rem;
    }
} 

.retro-mode {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.retro-mode a {
    display: inline-block;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--light);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
}

.retro-mode a:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Dashboard Header Styles */
.dashboard-header {
    background: var(--dark-bg);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.dashboard-header .home-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
}

.dashboard-header .login-btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: none;
    background: var(--accent-color);
    color: white;
    cursor: pointer;
}

.section ul {
    list-style: none;
    margin: 2rem 0;
}

.section ul li {
    margin-bottom: 1rem;  /* Increase spacing between list items */
    line-height: 1.5;     /* Add some line height for better readability */
}

.section ul li:last-child {
    margin-bottom: 4rem;  /* Extra space after the final list item */
}

/* Improved mobile responsiveness for sections */
@media (max-width: 768px) {
    .sections {
        flex-direction: column;
        padding: 1rem;
    }
    
    .section {
        width: 100%;
        margin: 1rem 0;
        padding: 1.5rem;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .section p, .section li {
        font-size: 0.9rem;
    }
    
    .section ul {
        padding-left: 0.5rem;
    }
    
    .invite-input-container {
        flex-direction: column;
    }
    
    .invite-code input {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .genre-tags {
        flex-wrap: wrap;
    }
    
    .genre-tag {
        margin: 0.25rem;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Dashboard Mobile Styles */
@media (max-width: 768px) {
    /* Dashboard header adjustments */
    .dashboard-header {
        padding: 0.5rem;
    }
    
    .dashboard-header .header-container {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .dashboard-header .header-left,
    .dashboard-header .header-right {
        width: 100%;
        justify-content: center;
    }
    
    .dashboard-header .home-link {
        font-size: 0.9rem;
    }
    
    /* Dashboard content adjustments */
    .dashboard-container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .dashboard-sidebar {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .dashboard-main {
        width: 100%;
    }
    
    .dashboard-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .dashboard-card h2 {
        font-size: 1.3rem;
    }
    
    /* Artist cards for mobile */
    .artist-cards {
        grid-template-columns: 1fr;
    }
    
    .artist-card {
        margin-bottom: 1rem;
    }
    
    /* Stats and activity feed */
    .stats-row {
        flex-direction: column;
    }
    
    .stat-box {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    /* Navigation tabs */
    .dashboard-tabs {
        flex-wrap: wrap;
    }
    
    .dashboard-tab {
        padding: 0.5rem;
        font-size: 0.9rem;
        flex: 1 0 auto;
        text-align: center;
        min-width: 30%;
    }
    
    /* User profile section */
    .user-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .profile-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    /* Action buttons */
    .action-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .action-buttons .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    /* Content sections */
    .content-section {
        padding: 1rem;
    }
    
    /* Form elements */
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Mobile Dashboard Layout - Complete Redesign */
@media (max-width: 768px) {
    /* Hide the regular sidebar on mobile */
    .dashboard-sidebar {
        display: none;
    }
    
    /* Full-width main content */
    .dashboard-main {
        width: 100%;
        padding: 0.5rem;
    }
    
    /* Dashboard container */
    .dashboard-container {
        flex-direction: column;
        padding: 0;
    }
    
    /* Mobile navigation tabs at the top */
    .mobile-tabs {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        background: rgba(0, 0, 0, 0.7);
        margin-bottom: 1rem;
        border-radius: 8px;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        scrollbar-width: none; /* Hide scrollbar on Firefox */
    }
    
    .mobile-tabs::-webkit-scrollbar {
        display: none; /* Hide scrollbar on Chrome/Safari */
    }
    
    .mobile-tab {
        padding: 0.75rem 1.25rem;
        color: var(--light);
        text-decoration: none;
        font-size: 0.9rem;
        position: relative;
        flex: 0 0 auto;
    }
    
    .mobile-tab.active {
        color: var(--neon-blue);
    }
    
    .mobile-tab.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 3px;
        background: var(--neon-blue);
        border-radius: 3px 3px 0 0;
    }
    
    /* Dashboard cards */
    .dashboard-card {
        padding: 1rem;
        margin-bottom: 1rem;
        border-radius: 8px;
    }
    
    /* Compact header for mobile */
    .dashboard-header {
        padding: 0.5rem;
    }
    
    .dashboard-header .header-container {
        padding: 0;
    }
    
    .dashboard-header .header-left,
    .dashboard-header .header-right {
        display: flex;
        align-items: center;
    }
    
    /* Mobile menu button */
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: var(--light);
        font-size: 1.5rem;
        padding: 0.5rem;
        cursor: pointer;
    }
    
    /* Mobile drawer menu */
    .mobile-drawer {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        max-width: 300px;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        z-index: 1001;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        padding: 1rem;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    }
    
    .mobile-drawer.open {
        transform: translateX(0);
    }
    
    .drawer-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        color: var(--light);
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .drawer-header {
        margin: 1.5rem 0;
        text-align: center;
    }
    
    .drawer-nav {
        margin-top: 2rem;
    }
    
    .drawer-nav a {
        display: block;
        padding: 0.75rem 0;
        color: var(--light);
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .drawer-nav a:hover {
        color: var(--neon-blue);
    }
    
    /* Overlay for when drawer is open */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Quick action buttons */
    .quick-actions {
        display: flex;
        justify-content: space-between;
        margin-bottom: 1rem;
    }
    
    .quick-action-btn {
        flex: 1;
        margin: 0 0.25rem;
        padding: 0.75rem 0;
        text-align: center;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        color: var(--light);
        text-decoration: none;
        font-size: 0.8rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .quick-action-btn i {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    /* Content adjustments */
    .artist-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-box {
        width: 100%;
    }
}

/* Add JavaScript to handle mobile interactions */

/* Add these animation styles */
@keyframes pulseGlow {
    0% { 
        box-shadow: 0 0 0 0 rgba(77, 238, 234, 0.2);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px 5px rgba(77, 238, 234, 0.3);
        transform: scale(1.02);
    }
    100% { 
        box-shadow: 0 0 0 0 rgba(77, 238, 234, 0.2);
        transform: scale(1);
    }
}

@keyframes numberPop {
    0% { transform: scale(1); color: var(--light); }
    50% { transform: scale(1.1); color: var(--neon-blue); }
    100% { transform: scale(1); color: var(--light); }
}

.result-card {
    /* Add to existing styles */
    transition: all 0.3s ease;
}

.result-card.animate {
    animation: pulseGlow 0.8s ease-out;
}

.streams-number {
    transition: all 0.3s ease;
}

.streams-number.animate {
    animation: numberPop 0.8s ease-out;
}

.waitlist-form .checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    margin: 20px 0;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-item label {
    cursor: pointer;
    margin: 0;
}