@import "uyfont.css";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'ALKATIP Basma Tom';
}

:root {
    --dark: #212529;
    --gray: #6c757d;
    --success: #4bb543;
}

body {
    background: #fff;
    color: var(--dark);
    line-height: 1.6;
    min-height: 100vh;
    padding: 0;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header {
    text-align: center;
    color: white;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #222;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: white;
}

.logo img {
    width: 70px;
    height: 70px;
    border-radius: 20px;
}

header h1 {
    font-size: 1.8rem;
    color: var(--dark);
    padding: 8px 0;
}

header p {
    font-size: 0.8rem;
    opacity: 0.6;
    margin: 0 auto;
    color: var(--gray);
}

.app-card {
    margin-top: 30px;
}

.download-section {
    text-align: center;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    width: 100%;
    max-width: 300px;
}

.download-btn:hover {
    transform: translateY(-3px);
}

.download-btn:active {
    transform: translateY(-1px);
}

.download-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.download-info {
    margin-top: 20px;
    color: var(--gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.download-info i {
    color: var(--success);
    height: 20px;
    line-height: 20px;
}

.download-info span {
    height: 20px;
    line-height: 29px;
    color: var(--gray);
    opacity: 0.7;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    border-radius: 15px;
    padding: 25px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal h2 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 20px;
}

.modal p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 15px;
}

.modal-btn {
    background: var(--dark);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.modal-btn:hover {
    transform: translateY(-2px);
}

.wechat-tip {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    margin-top: 20px;
    display: none;
    margin: 20px;
}

.wechat-tip h3 {
    color: var(--success);
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.wechat-tip h3 i {
    margin-right: 8px;
}

.wechat-tip p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.browser-guide {
    margin-top: 15px;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    border: 1px dashed #ddd;
}

.browser-guide p {
    margin-bottom: 8px;
    font-size: 13px;
}

.browser-guide img {
    width: 100%;
    max-width: 200px;
    margin: 5px auto;
    display: block;
    border-radius: 5px;
}

@media (min-width: 768px) {
    .container {
        max-width: 500px;
    }
}