:root {
    --bg-color: #0B1120;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --brand-turquesa: #2DD4BF; /* Turquoise brand color */
    --brand-dark: #0F766E;
    --card-bg: rgba(30, 41, 59, 0.4);
    --card-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Background effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 10s infinite alternate ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--brand-dark);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(45, 212, 191, 0.2); /* Lighter turquoise */
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Main Container */
.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
}

/* Glass Card */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 4rem;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo */
.logo-container {
    margin-bottom: 2.5rem;
}

.main-logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(45, 212, 191, 0.3));
}

/* Content */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(45, 212, 191, 0.1);
    color: var(--brand-turquesa);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(to right, #FFFFFF, var(--brand-turquesa));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Info */
.contact-info {
    margin-bottom: 3rem;
}

.contact-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.email-link {
    display: inline-block;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.email-link:hover {
    background: rgba(45, 212, 191, 0.15);
    border-color: rgba(45, 212, 191, 0.3);
    color: var(--brand-turquesa);
    transform: translateY(-2px);
}

/* Loading Bar */
.loading-bar-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: var(--brand-turquesa);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--brand-turquesa);
    animation: loading 2s infinite ease-in-out;
}

@keyframes loading {
    0% { left: -30%; width: 30%; }
    50% { width: 40%; }
    100% { left: 100%; width: 30%; }
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer:hover {
    opacity: 1;
}

.footer p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.dev-logo {
    height: 30px;
    width: auto;
    filter: grayscale(100%) brightness(200%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.dev-logo:hover {
    filter: grayscale(0%) brightness(100%);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .glass-card {
        padding: 2.5rem 1.5rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .main-logo {
        max-width: 220px;
    }
}
