body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #eee;
    text-align: center;
    padding: 40px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subtitle {
    margin-bottom: 30px;
    opacity: 0.8;
}

#theButton {
    font-size: 2rem;
    padding: 20px 40px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(to bottom, #ff4d4d, #d60000);
    color: white;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    box-shadow: 0 6px 0 #7a0000, 0 6px 12px rgba(0,0,0,0.4);
}

#theButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #7a0000, 0 10px 18px rgba(0,0,0,0.5);
}

#theButton:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #7a0000, 0 4px 8px rgba(0,0,0,0.3);
    background: linear-gradient(to bottom, #ff3333, #b30000);
}


.counter {
    margin-top: 25px;
    font-size: 1.4rem;
}

.ad-container {
    margin-top: 40px;
    padding: 20px;
    background: #222;
    border-radius: 10px;
}

.ad-placeholder {
    opacity: 0.5;
    font-size: 0.9rem;
}
