* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    color: #ffffff;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0f0c29, #302b63);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/img/bg-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;

}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: -1;
    background: url('/assets/img/bg-2.jpg'), linear-gradient(135deg, #2c1a4d, #4a2a8a);
    background-size: cover;
    background-position: center;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.header {
    margin-bottom: 40px;
}

.logo {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(45deg, #d16ba5, #86a8e7, #5e42a6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(209, 107, 165, 0.2);
}

.h1-novis {
    opacity: 0;
}

.hero {
    background: rgba(15, 12, 41, 0.7);
    padding: 80px 20px;
    border-radius: 20px;
    margin-bottom: 60px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 209, 102, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffd166;
    text-shadow: 0 0 10px rgba(255, 209, 102, 0.4);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e0e0ff;
    margin-bottom: 36px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    padding: 40px 20px;
    background: rgba(15, 12, 41, 0.7);
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffd166;
}

.section-desc {
    font-size: 1.1rem;
    color: #c5c1e6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.screenshots {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.screenshots img {
    max-width: 100%;
    width: 45%;
}

.cta-button {
    display: inline-block;
    padding: 16px 52px;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: #0f0c29;
    background: linear-gradient(45deg, #ffd166, #ff9a57);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 209, 102, 0.4);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 209, 102, 0.6);
}

.cta-button:active {
    transform: translateY(0);
}

.footer {
    margin-top: 40px;
    color: #a099d0;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.video-hero {
    position: relative;
    height: 600px;
    /* Вы можете регулировать высоту */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 60px;
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
}

.video-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #ffd166;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-button {
    font-size: 1.4rem;
    padding: 18px 60px;
    background: linear-gradient(45deg, #ffd166, #ff9a57);
    color: #0f0c29;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 209, 102, 0.5);
}

.video-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 209, 102, 0.7);
}

.tables {
    margin-top: 50px;
}

.line {
    display: flex;
    flex-wrap: nowrap;
    border: 1px solid #ffffff95;
    border-width: 0 0 1px 0;
    margin-bottom: 2px;
    padding: 2px;
}

.line-wrap {
    display: flex;
    flex-wrap: wrap;
}

.left-line {
    text-align: start;
    padding-right: 5px;
}

.right-line {
    text-align: start;
    border: 1px solid #ffffff95;
    border-width: 0 0 0 1px;
    padding: 2px 2px 2px 5px;
}

ul >li {
    padding-bottom: 5px;
}

@media (max-width: 768px) {
    .logo-mobile {
        max-width: 300px;
    }
    .h1-novis {
        display: none;
    }
}