body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #6e8efb, #4a6cf7);
    color: #2c3e50;
}

.container {
    text-align: center;
    padding: 2.5rem;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.counter {
    font-size: 4em;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #8f0710;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

button {
    padding: 12px 24px;
    font-size: 1.1em;
    margin: 8px;
    cursor: pointer;
    background: #4a6cf7;
    color: white;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(74, 108, 247, 0.2);
}

button:hover {
    background: #03613d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 108, 247, 0.3);
}

button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(74, 108, 247, 0.2);
}

.clicks {
    font-size: 1.2em;
    margin-top: 1.5rem;
    color: #6c757d;
    font-weight: 500;
}