* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", sans-serif;
}

body {
    background: #f2f2f7;
    color: #1c1c1e;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.page-home {
    text-align: center;
    max-width: 500px;
}

.page-home h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 8px;
}

.page-home p {
    font-size: 20px;
    color: #8e8e93;
    margin-bottom: 40px;
    line-height: 1.4;
}

.btn-primary {
    display: block;
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
    padding: 16px;
    background: #007aff;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.1s;
}

.btn-primary:active {
    transform: scale(0.97);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: white;
    border-radius: 20px;
    padding: 25px;
    width: 90%;
    max-width: 350px;
}

.modal .btn-min, .modal .btn-ask {
    display: block;
    width: 100%;
    padding: 14px;
    margin: 8px 0;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
}

.btn-min {
    background: #e5e5ea;
    color: #1c1c1e;
}

.btn-ask {
    background: #f2f2f7;
    font-weight: bold;
    color: #007aff;
}