* {
    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;
}

body {
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
}

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

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

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

.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;
}

.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;
}

/* Add responsive design */
@media (max-width: 768px) {
    .sections {
        grid-template-columns: 1fr;
    }

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

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

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

    .logo {
        font-size: 6rem;
    }
}

/* ... 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 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;
}

.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 input {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--neon-blue);
    border-radius: 5px;
    color: var(--light);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.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 {
    padding: 0.5rem 1rem;
    background: rgba(107, 71, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.genre-tag:hover {
    background: var(--primary);
}

.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 {
    color: var(--neon-pink);
    transform: translateY(-3px);
}

@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; }
} 