:root {
    --bg-color: #121212;
    --text-color: #E0E0E0;
    --accent-color: #64FFDA;
    --secondary-bg: #1E1E1E;
    --hover-color: #29756B;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.container {
    padding: 2rem;
}

.hero {
    margin-bottom: 4rem;
}



h1 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: 200;
}

.statement {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    background: linear-gradient(120deg, #64FFDA 0%, #48A6F2 50%, #BA68C8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 8s ease infinite;
}

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

/* Add better gradient support */
.statement {
    background-size: 200% auto;
}

.description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.projects {
    background-color: var(--secondary-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.project-card {
    border-left: 3px solid var(--accent-color);
    padding: 1rem;
    margin-bottom: 1rem;
    transition: transform 0.2s ease;
}

.project-card:hover {
    transform: translateX(10px);
}

.project-card h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.project-card p {
    opacity: 0.8;
}

footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-bg);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--hover-color);
}

.button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-color) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    transition: opacity 0.2s ease;
}

.button:hover {
    opacity: 0.9;
    color: var(--bg-color) !important;
}

.features {
    margin: 3rem 0;
}

.verification-code {
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: all 0.3s ease;
}

.verification-code.visible {
    visibility: visible;
    opacity: 1;
    height: auto;
    margin: 1rem 0;
}

.user-info {
    background: var(--secondary-bg);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    opacity: 0.8;
}

.user-info p {
    margin: 0.5rem 0;
}

.site-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-bg);
    text-align: center;
}

.site-footer nav {
    margin-bottom: 1rem;
}

.site-footer a {
    margin: 0 1rem;
    color: var(--accent-color);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

