<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #c10000;
    color: white;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #800101;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    width: 30%;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: wave-effect 1.5s infinite linear;
}

@keyframes wave-effect {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 400% 0;
    }
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    transition: all 0.5s ease;
}

.btn:hover::before {
    left: 150%;
}

.btn-primary {
    background: linear-gradient(to right, #ae0821, #fab114, #ae0821);
    color: white;
    background-size: 200% 100%;
}

.btn-primary:hover {
    background: linear-gradient(to right, #fd1d1d, #833ab4, #fcb045);
}

.btn-secondary {
    background: linear-gradient(to right, #0da533, #3af754, #0da533);
    color: white;
    background-size: 200% 100%;
}

.btn-secondary:hover {
    background: linear-gradient(to right, #56ccf2, #2f80ed);
}

.btn-main {
    display: block;
    width: 100%;
    background-color: #ff6f00;
    color: white;
    margin: 20px 0;
    font-size: 1.2em;
}

.btn h3 {
    margin: 0;
    font-size: 1em;
}

.promotion {
    text-align: center;
    margin-bottom: 20px;
}

.promo-img {
    width: 100%;
    border-radius: 10px;
}

.offers {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-img {
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .logo {
        width: 50%;
    }
}

.image-container {
    width: 100%; /* à¸›à¸£à¸±à¸šà¸‚à¸™à¸²à¸”à¸•à¸²à¸¡à¸•à¹‰à¸­à¸‡à¸à¸²à¸£ */
    height: 100%; /* à¸›à¸£à¸±à¸šà¸‚à¸™à¸²à¸”à¸•à¸²à¸¡à¸•à¹‰à¸­à¸‡à¸à¸²à¸£ */
    overflow: hidden; /* à¸›à¹‰à¸­à¸‡à¸à¸±à¸™à¹„à¸¡à¹ˆà¹ƒà¸«à¹‰à¸&nbsp;à¸²à¸žà¸—à¸µà¹ˆà¹€à¸šà¸¥à¸­à¸«à¸¥à¸¸à¸”à¸­à¸­à¸à¸¡à¸²à¸™à¸­à¸à¸‚à¸­à¸š */
    position: relative;
}

.contact {
    width: 100px;
    margin-top: 50px;
    display: block;
    text-align: start;
    color: #960101;
    text-decoration: none;
}
.contact:hover {
    color: #9f1313;
}

@media (max-width: 1024px) {
    /* Hide on screens 1024px and below (tablets and phones) */
    .contact {
        display: none;
    }
}
.blur-image {
    /* width: 100%; */
    height: auto;
    filter: blur(8px); /* à¸›à¸£à¸±à¸šà¸„à¹ˆà¸²à¸„à¸§à¸²à¸¡à¹€à¸šà¸¥à¸­à¹„à¸”à¹‰à¸•à¸²à¸¡à¸•à¹‰à¸­à¸‡à¸à¸²à¸£ à¹€à¸Šà¹ˆà¸™ 5px, 10px à¹€à¸›à¹‡à¸™à¸•à¹‰à¸™ */
}
</pre></body></html>