:root {
    --primary-color: #ff4d6d;
    --secondary-color: #ff8fa3;
    --bg-color: #fff0f3;
    --glass-bg: rgba(255, 255, 255, 0.2);
    --glass-border: rgba(255, 255, 255, 0.5);
    --text-color: #590d22;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #fff0f3 0%, #ffccd5 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: var(--text-color);
}

.container {
    text-align: center;
    position: relative;
    z-index: 10;
}

.title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #a4133c;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: fadeIn Down 1s ease-out;
}

.wakeup-btn {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: none;
    background: radial-gradient(circle at 30% 30%, #ff4d6d, #c9184a);
    box-shadow: 
        0 20px 50px rgba(255, 77, 109, 0.4),
        inset 10px 10px 20px rgba(255, 255, 255, 0.4),
        inset -10px -10px 20px rgba(164, 19, 60, 0.4);
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}

.wakeup-btn:active {
    transform: scale(0.95);
    box-shadow: 
        0 10px 30px rgba(255, 77, 109, 0.3),
        inset 5px 5px 10px rgba(255, 255, 255, 0.2);
}

.wakeup-btn:hover {
    transform: scale(1.05);
}

.btn-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    pointer-events: none;
    line-height: 1.2;
}

.status {
    margin-top: 2rem;
    font-size: 1.2rem;
    min-height: 1.5em;
    font-weight: 600;
}

/* Heart Explosion Animation */
.heart {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ff4d6d;
    transform: rotate(45deg);
    pointer-events: none;
    animation: flyOut 1s ease-out forwards;
}

.heart::before,
.heart::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ff4d6d;
    border-radius: 50%;
}

.heart::before {
    left: -10px;
}

.heart::after {
    top: -10px;
}

@keyframes flyOut {
    0% {
        transform: translate(0, 0) rotate(45deg) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(0);
        opacity: 0;
    }
}

/* Admin Styles */
.admin-body {
    background: #f8f9fa;
    color: #333;
}

.admin-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 90%;
}

.admin-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
    transition: background 0.3s;
}

.admin-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.logs {
    margin-top: 2rem;
    text-align: left;
    font-size: 0.8rem;
    color: #666;
    max-height: 200px;
    overflow-y: auto;
    background: #eee;
    padding: 1rem;
    border-radius: 10px;
}
