:root {
    --bg-color: #0a0a0a;
    --text-color: #ededed;
    --accent-color: #333333;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

h1 {
    font-weight: 300;
    /* Lighter weight for minimal look */
    font-size: 1rem;
    /* Much smaller as requested */
    letter-spacing: 0.2em;
    /* Spaced out for premium feel */
    color: #a1a1aa;
    cursor: default;
    transition: all 0.5s ease;
    /* Continuous breathing animation */
    animation: breathe 4s ease-in-out infinite;
}

h1:hover {
    opacity: 1;
    letter-spacing: 0.25em;
    color: #ffffff;
    /* Pause breathing and show strong glow on hover */
    animation: none;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

@keyframes breathe {

    0%,
    100% {
        opacity: 0.5;
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.05);
    }

    50% {
        opacity: 0.8;
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    }
}