:root {
    --primary-color: #4f5d75;
    --text-color: #2d3142;
    --background-color: #ffffff;
    --secondary-bg: #f8f9fa;
    --muted-color: #6c757d;
    --blue-accent: #3a86ff;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

.divider {
    width: 30px;
    height: 1px;
    background-color: var(--muted-color);
    margin: 1.5rem 0;
}

.minimal-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--muted-color);
    letter-spacing: 0.5px;
}

.app-link {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background-color: rgba(108, 117, 125, 0.05);
    transition: background-color 0.3s ease;
}

.app-link:hover {
    background-color: rgba(108, 117, 125, 0.1);
}

.dot-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--muted-color);
    margin-right: 8px;
    position: relative;
}

.dot-indicator::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background-color: var(--muted-color);
    opacity: 0.4;
    animation: pulse 2s infinite ease-in-out;
}

.blue-link {
    font-size: 0.95rem;
    color: var(--muted-color);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Enhanced visited state to match normal state exactly */
.blue-link:visited {
    color: var(--muted-color) !important; /* Using !important to override browser defaults */
    text-decoration: none;
    font-weight: 400;
    opacity: 1;
}

/* Make sure focus and hover states are consistent too */
.blue-link:hover, .blue-link:focus {
    color: var(--muted-color);
    text-decoration: none;
}

.subtle-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--muted-color);
    opacity: 0.75;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.subtle-link:visited {
    color: var(--muted-color);
}

.subtle-link:hover {
    opacity: 1;
    color: var(--primary-color);
}

.highlight {
    color: var(--primary-color);
    font-weight: 400;
}

footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--muted-color);
    font-size: 0.9rem;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* Animation */
.animation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.3;
    animation: pulse 1.5s infinite ease-in-out;
}

.dot2 {
    animation-delay: 0.2s;
}

.dot3 {
    animation-delay: 0.4s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.4;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .logo {
        font-size: 2.2rem;
    }
    
    .minimal-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.8rem;
    }
    
    .minimal-text {
        font-size: 0.9rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #e9ecef;
        --background-color: #121212;
        --secondary-bg: #1e1e1e;
        --muted-color: #adb5bd;
        --primary-color: #8d99ae;
        --blue-accent: #4dabf7;
    }
} 