body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #d4e9fc, #ffffff);
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #f0f4f8;
}

.time {
    font-size: 18px;
}

.status-bar {
    display: flex;
    align-items: center;
}

.status-bar .icon {
    margin-left: 10px;
}

.main-content {
    padding: 20px;
}

h1 {
    font-size: 24px;
    margin: 0;
}

.card {
    background-color: #e6f7ff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
    position: relative;
}

.card h2 {
    margin: 0 0 10px 0;
    font-size: 20px;
}

.card p {
    margin: 0;
}

.icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
}

.icons .icon {
    margin-left: 10px;
}

.icons-row {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.icon-button {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
    width: 30%;
}

.help-army {
    display: flex;
    justify-content: space-between;
    background-color: #000000;
    color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
    align-items: center;
}

.footer {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    background-color: #f0f4f8;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.footer-icon {
    text-align: center;
}

.footer-icon:before {
    content: '•';
    display: block;
    font-size: 20px;
}
