html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    line-height: 1;
}

img {
    display: block;
    width: 100%;
    height: 100%;
}

.main-container {
    padding: 15px;
    background: linear-gradient(180deg, #fff8e6, #fdebd0);
}

.featured-app {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(184, 134, 11, 0.25);
}

.featured-app img {
    width: 150px;
    height: 150px;
    display: block;
    margin: 0 auto;
    /* This centers the image */
}

h2 {
    text-align: center;
    color: #8B0000;
    font-size: 24px;
    margin: 16px 0 10px;
}

.description {
    text-align: center;
    color: #5a4634;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.info-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.info-item i {
    font-size: 22px;
    margin-bottom: 5px;
    color: #C9A227;
}

.info-item span {
    font-size: 16px;
    font-weight: bold;
    color: #8B0000;
}

.info-item small {
    font-size: 13px;
    color: #555;
}

.divider {
    width: 1px;
    height: 40px;
    background: #d4af37;
    margin: 0 9px;
}

.download-btn {
    padding: 10px 60px;
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #B91C1C;
    color: #fff;
}

.download-btn svg {
    margin-right: 10px;
    fill: white;
    stroke: white;
    width: 24px;
    height: 24px;
}

.download-btn:hover {
    background-color: #7F1D1D;
    color: #fff;
    transform: scale(1.08);
}

.related {
    background: linear-gradient(180deg, #fdebd0, #fff8e6);
    padding: 15px;
}

.related h2 {
    margin-top: 0;
    text-align: center;
    color: #2c3e50;
    background-color: #fff;
    padding: 8px 4px 8px 4px;
    border-right: 6px solid #7B0000;
    border-left: 6px solid #7B0000;
    border-top: 1.5px solid #7B0000;
    border-bottom: 1.5px solid #7B0000;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(184, 134, 11, 0.2);
}

.app-logo {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.app-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-details {
    flex-grow: 1;
}

.app-details h3 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #333;
}

.app-details p {
    margin: 2px -2px;
    font-size: 14px;
}

.bonus {
    color: #8B0000;
}

.down-info {
    color: #C9A227;
    font-weight: bold;
}

.app-details i {
    margin: 0 4px;
}

.down-btn {
    background-color: #e02200;
    color: white;
    border: none;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
}

.down-btn i {
    margin: 0 4px;
}

.down-btn:hover {
    background-color: #b31b00;
}

.notice-box {
    background-color: #fff7f7;
    border: 2px solid #ff5e3a;
    border-radius: 12px;
    padding: 15px;
    margin: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: #333;
    font-size: 12px;
    line-height: 1.4;
}

.notice-box h2 {
    margin-top: 0;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #000;
}

.notice-box h2 i {
    color: #ff5e3a;
    font-size: 20px;
}

.notice-box b {
    color: #000;
}

.notice-box a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.notice-box a:hover {
    text-decoration: underline;
}