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

:root {
    --neon-primary: #34d399;
    --neon-secondary: #a855f7;
}

* {
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.glass-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 0.5rem;
    color: var(--neon-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.glass-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(52, 211, 153, 0.3);
}

.glass-button-purple {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 0.5rem;
    color: var(--neon-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.glass-button-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.glass-card {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

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

/* Fade in animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Modal styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

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

/* Password modal */
.password-modal label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--neon-primary);
}

.password-modal input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(31, 41, 55, 0.6);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 0.5rem;
    color: white;
    margin-bottom: 1rem;
}

.password-modal button {
    background: rgba(52, 211, 153, 0.2);
    border: 1px solid rgba(52,