* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    /* background: linear-gradient(120deg, #a1c4fd, #c2e9fb, #d4fc79); */
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    /* padding: 20px; */
}

.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-container {
    background-color: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.app-icon-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url(images/bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.app-icon {
    background-color: #fff;
    width: 160px;
    height: 160px;
    margin-bottom: 30px;
    border-radius: 22px;
    padding: 15px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    margin-bottom: 30px;
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.platform-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-btn {
    background-color: #00c6ae;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 14px 40px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    cursor: pointer;
    width: 80%;
    text-align: center;
}

.device-text {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
}

.hidden {
    display: none;
}

/* Android specific styles */
.notice {
    background-color: #f6f7fb;
    color: #ff5857;
    padding: 10px;
    text-align: center;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 16px;
}

.install-guide {
    width: 100%;
}

.install-guide h3 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
    color: #333;
}

.step {
    background-color: #f6f7fb;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.step-title {
    color: #3498db;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title::before,
.step-title::after {
    content: "••";
    color: #3498db;
    margin: 0 10px;
}

.step p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

/* .step-image {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
} */

.step-image  {
    width: 100%;
    display: block;
} 
.app-header {
    width: 100%;
    height: 150px;
    background-image: url(images/bg.png);
    background-size: cover;
    background-position: center;
}