body {
    background-color: #232136; 
    font-family: 'Courier New', Courier, monospace; 
    color: #e0def4;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 90%; 
    max-width: 600px;
    background-color: #2a273f; 
    padding: 40px;
    border-radius: 25px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); 
    border: 2px solid #44415a; 
    transition: 0.4s ease-in-out; 
}

h1 {
    color: #FFB6C1; 
    text-align: center;
    text-shadow: 2px 2px 0px #44415a; 
    letter-spacing: 1px;
}

p {
    line-height: 1.6;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); } 
    100% { transform: translateY(0px); }
}

@keyframes floatSleep {
    0% { transform: translateY(0) scale(0.5) rotate(-10deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-40px) scale(1.2) rotate(10deg); opacity: 0; }
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%; 
    display: block;
    margin: 0 auto 20px;
    object-fit: cover; 
    border: 4px solid #c4a7e7; 
    animation: float 6s ease-in-out infinite;
}

.snooze-text {
    position: absolute;
    top: -10px; 
    right: 10px;
    font-family: 'Comic Sans MS', monospace; 
    font-weight: bold;
    font-size: 28px;
    color: #c4a7e7;
    animation: floatSleep 3s infinite ease-in-out;
    pointer-events: none;
}

.status-dot {
    height: 15px;
    width: 15px;
    background-color: #98fb98; 
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #2a273f; 
    box-shadow: 0 0 5px #98fb98; 
}

ul.grid-links {
    list-style: none; 
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 8px; 
}

ul.grid-links li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #393552; 
    border: 2px solid #44415a;
    border-radius: 12px; 
    
    padding: 10px 5px; 
    
    text-decoration: none;
    color: #e0def4;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 rgba(0,0,0,0.2);
    font-size: 0.8rem; 
}

ul.grid-links .icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 5px;
}

ul.grid-links li a:hover {
    background-color: #44415a;
    border-color: #FFB6C1;
    color: #FFB6C1;
    transform: translateY(-3px); 
    box-shadow: 0 5px 10px rgba(255, 182, 193, 0.2);
}

@media (max-width: 480px) {
    ul.grid-links {
        grid-template-columns: 1fr;
    }
}

#sleep-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(35, 33, 54, 0.95); 
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease;
}

#sleep-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.sleep-content {
    text-align: center;
    color: #c4a7e7;
    font-family: 'Courier New', monospace;
}

.moon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s infinite ease-in-out;
}

.split-layout {
    display: flex;       
    gap: 20px;           
    align-items: center; 
}
