* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 40px 30px;
    text-align: center;
    max-width: 380px;
    width: 100%;
    position: relative;
}

.circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff758c, #ff9a9e);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 42px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 117, 140, 0.4);
}

h1 {
    color: #ff5c8d;
    margin-bottom: 15px;
    font-size: 26px;
    font-weight: 700;
}

p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
}

.countdown {
    font-size: 42px;
    font-weight: bold;
    color: #ff5c8d;
    margin: 25px 0;
    height: 50px;
}

.btn {
    background: linear-gradient(to right, #ff5c8d, #ff97b3);
    color: white;
    border: none;
    padding: 16px 35px;
    font-size: 17px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    width: 100%;
    max-width: 250px;
    box-shadow: 0 5px 15px rgba(255, 92, 141, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 92, 141, 0.5);
}

.btn:active {
    transform: translateY(0);
}

.note {
    margin-top: 25px;
    font-size: 14px;
    color: #888;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 1s infinite;
}