/* Logo typing animation styles */
.logo {
    display: flex;
    align-items: center;
    position: relative;
}

#logo-text {
    display: inline-block;
    font-weight: 700;
    color: #1e88e5; /* Blue color */
    font-size: 1.25em;
    letter-spacing: 0.5px;
}

.dot {
    display: inline-block;
    margin-left: 1px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #1e88e5; /* Matching blue color */
    animation: blink 1.2s infinite;
    position: relative;
    display: inline-flex;
    align-items: flex-end;
    transform: translateY(1px); /* Precise positioning to align with bottom of m */
    box-shadow: 0 0 4px rgba(30, 136, 229, 0.8); /* Enhanced glow */
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.dot.visible {
    opacity: 1;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Add a very subtle fade-in effect for each character */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.char-animate {
    animation: fadeIn 0.3s forwards;
}

/* Burnt cookie styling for 'o' characters */
.burnt-o {
    display: inline-block;
    color: #8B4513; /* Brown color for burnt effect */
    text-shadow: 0 0 2px #FF3300, 0 0 1px #FF6600; /* Orange/red glow for burnt edges */
    position: relative;
    font-weight: 800;
}

.burnt-o::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: #3A1F00; /* Dark brown for burnt spots */
    border-radius: 50%;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.burnt-o::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: #3A1F00; /* Dark brown for burnt spots */
    border-radius: 50%;
    bottom: 30%;
    right: 30%;
}
