body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f6f8fa;
    color: #222;
}

header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 16px 0 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.counter-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

#ads-counter {
    font-size: 1.3rem;
    font-weight: bold;
    margin-right: 18px;
    color: #2d8cff;
}

#withdraw-btn {
    background: #2d8cff;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 18px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
#withdraw-btn:hover {
    background: #1766c2;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 80px;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 32px;
    color: #2d8cff;
}

#watch-ads-btn {
    background: #ffb300;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 16px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: background 0.2s;
}
#watch-ads-btn:hover {
    background: #ff8c00;
}
