<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;
    line-height: 1.5;
}
body::-webkit-scrollbar {
    display: none;
}
/* Header Section */
header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5%;
    border-radius: 10px;
    box-shadow: inset 0 0px 2px rgb(0, 255, 200);
}
header img {
    height: 50px;
    margin-right: 15px;
    border-radius: 10px;
    position: relative;
    left: 0;
}
.name {
    margin-left: 6em;
    position:relative;
    font-size: 1.8rem;
    font-weight: bold;
    color: #B8ECFF;
    text-align: center;
    align-self: center;
}
nav {
    display: inline-flex;
    font-size: medium;
}
nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    transition: color 0.3s;
}
nav a:hover {
    color: #0CE0FE;
}
/* Hero Section */
.hero {
    background-color: rgb(10, 6, 36, 0%);
    text-align: center;
    padding: 60px 10%;
    border-radius: 20px;
}
.hero-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #B8ECFF;
}
.hero-description {
    display:block;
    width: 100%;
    max-width: none;
}
.hero-description p {
    display: flex;
    width: 90%;
    align-self: center;
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: #d2d2d2;
    display: inline-block;

}
.hero-description img {
    width: auto;
    height: auto;
    max-width: 400px;
    max-height: 400px;
    display: inline-block;
    margin: 30px auto;
    border-radius: 15px;
    box-shadow: 0 0px 15px rgb(43, 0, 214);
}
/* Plans Section */
.plans {
    background-color: rgb(10, 6, 36, 0%);
    padding: 50px 10%;
    border-radius: 20px;
}
.plans h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #B8ECFF;
}
.plan-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    border-radius: 15px;
    padding: 6px;
    padding-top: 10px;
    padding-bottom: 15px;
}
.plan {
    background-color: rgb(10, 6, 36, 0%);
    border-radius: 10px;
    width: 200px;
    padding: 20px;
    text-align: center;
    transition: transform 0.5s, box-shadow 0.5s;
    box-shadow: 0 0px 3px rgb(0, 203, 214);
}
.plan:hover {
    transform: translateY(-7px);
    box-shadow: 0 0px 15px rgb(43, 0, 214);
}
.plan h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #ffffff;
}
.plan .price {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}
.plan button {
    background-color: #11FFFF;
    color: #000;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}
.plan button a {
    color: #000;
    text-decoration: none;
}
.plan button:hover {
    background-color: #0CE0FE;
}
/* Download Section */
.download {
    background-color: rgb(10, 6, 36, 0%);
    padding: 50px 10%;
    text-align: center;
    border-radius: 20px;
}
.download img {
    width: 200px; /* Adjust as needed */
    display: block;
    margin: 30px auto;
    border-radius: 15px; /* Rounded corners */
}
.download h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #00d6a2;
}
.download p {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #d2d2d2;
}
.download-links {
    display: flex;
    justify-content: center;
    align-self: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    margin-right: 2.6em;
}
.download-links a {
    display: inline-block;
    text-decoration: none;
    color: #000000;
    background-color: #11FFFF;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.download-links a:hover {
    background-color: #0CE0FE;
}
#support {
    text-decoration: none;
    transition: color 0.3s;
    color: white;
}
#support:hover {
    color: #00d6a2;
}
/* Footer Section */
footer {
    background-color: rgb(28, 28, 28, 0%);
    padding: 20px 10%;
    text-align: center;
    font-size: 0.9rem;
    color: #ffffff;
}
footer p {
    margin-bottom: 5px;
}
footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s;
    cursor: pointer;
}
footer a:hover {
    color: #00d6a2;
}
#terms-popup {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -40%);
    padding: 20px;
    width: 90%;
    background-color: #040049;
    border-radius: 8px;
    z-index: 1000;
    visibility: hidden;
}
#contacts-popup {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 400%);
    padding: 20px;
    width: 90%;
    background-color: #040049;
    border-radius: 8px;
    z-index: 1000;
    visibility: hidden;
}
#contacts-popup h1 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    align-self: center;
}
#contacts-popup p {
    font-size: 1rem;
    color: #ffffff;
}
#terms-popup h2 {
    position: relative;
    color: #ffffff;
    margin-bottom: 15px;
    align-self: center;
    text-decoration: underline;
}
#policy {
    color: white;
    font-size: 1.5rem;
    margin-top: 10px;
}
#terms-popup p {
    font-size: 1rem;
    color: #ffffff;
}
#terms-popup button {
    background-color: rgba(0, 255, 255, 0%);
    box-shadow: 0 0px 3px rgb(0, 180, 189);
    margin-top: 15px;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}
#terms-popup button p {
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
}
#terms-popup button:hover {
    background-color: #0CE0FE;
    p {
        color: #000000;
    }
}
#contacts-popup button {
    background-color: rgba(0, 255, 255, 0%);
    box-shadow: 0 0px 3px rgb(0, 180, 189);
    margin-top: 15px;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}
#contacts-popup button p {
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
}
#contacts-popup button:hover {
    background-color: #0CE0FE;
    p {
        color: #000000;
    }
}
#particles-js {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-color: #0A0624;
    background-position: 70% 70%;
    position: fixed;
    top: 0px;
    z-index:-1;
}
#terms-1 {
    margin-bottom: 5px;
    font-weight: 800;
}
#terms-2,
#terms-3,
#terms-4,
#terms-5 {
    margin-top: 30px;
    margin-bottom: 5px;
    font-weight: 800;
}
#terms-1-1,
#terms-1-2,
#terms-1-3,
#terms-2-1,
#terms-2-2,
#terms-2-3,
#terms-2-4,
#terms-2-5,
#terms-2-6,
#terms-3-1,
#terms-3-2,
#terms-4-1,
#terms-4-2,
#terms-4-1-1,
#terms-4-1-2,
#terms-4-1-3,
#terms-4-2-1,
#terms-4-2-2,
#terms-4-2-3,
#terms-4-2-4,
#terms-4-2-5,
#terms-4-2-6,
#terms-4-2-7,
#terms-4-2-8 {
    margin-bottom: 5px;
}
#terms-1-1,
#terms-1-2,
#terms-1-3,
#terms-2-1,
#terms-2-2,
#terms-2-3,
#terms-2-4,
#terms-2-5,
#terms-2-6,
#terms-3-1,
#terms-3-2,
#terms-4-1,
#terms-4-2,
#terms-5-1,
#terms-5-2,
#terms-5-3,
#terms-5-4,
#terms-5-5,
#terms-5-6,
#terms-5-7 {
    margin-left: 18px;
}
#terms-4-1-1,
#terms-4-1-2,
#terms-4-1-3,
#terms-4-2-1,
#terms-4-2-2,
#terms-4-2-3,
#terms-4-2-4,
#terms-4-2-5,
#terms-4-2-6,
#terms-4-2-7,
#terms-4-2-8 {
    margin-left: 34px;
}
/* Responsive Design for smaller screens */
@media (max-width: 768px) {
    .plan-cards {
        flex-direction: column;
        align-items: center;
    }
    .plan {
        width: 80%;
        max-width: 300px;
    }
    .hero-description p {
        position: absolute;
        overflow: hidden;
        transform: translate(-100%, -50%);
        z-index: -2;
    }
    nav a {
        transform: translate(-100%, -50%);
        position: absolute;
        overflow: hidden;
        z-index: -2;
    }
    .name {
        margin-right: 8em;
    }
}</pre></body></html>