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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-image: url('images/main.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: #e6e6e6;
    line-height: 1.5;
}


.sm--wrapper {
    max-width: 1200px;
    width: 97%;
    margin: 20px auto;
    background: #0f0620;
    border-radius: 14px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(0px);
    overflow: hidden;
    transition: all 0.2s;
}

h1,
h2,
h3,
h4,
h5 {
    line-height: 1.2;
}


.sm--container {
    padding: 0 32px;
}


.sm--header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.sm--nav-left,
.sm--nav-right {
    display: flex;
    gap: 28px;
    align-items: center;
}

.sm--nav-left a,
.sm--nav-right a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    color: #e6e6e6;
    text-decoration: none;
    transition: 0.2s;
    white-space: nowrap;
}

.sm--nav-left a:hover,
.sm--nav-right a:hover {
    color: #b202e8;
    text-shadow: 0 0 3px rgba(178, 2, 232, 0.4);
}

.sm--logo-center {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
}

.sm--logo-center:hover {
    opacity: 0.9;
}


.sm--menu-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 36px;
    padding: 8px 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: white;
    cursor: pointer;
    background: rgba(28, 19, 44, 0.8);
}


@media (max-width: 950px) {
    .sm--header {
        flex-direction: column;
        gap: 18px;
        padding: 20px;
    }

    .sm--nav-left,
    .sm--nav-right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .sm--container {
        padding: 0 20px;
    }
}

@media (max-width: 720px) {

    .sm--nav-left,
    .sm--nav-right {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 12px;
        padding-top: 10px;
    }

    .sm--nav-left.show-mobile,
    .sm--nav-right.show-mobile {
        display: flex;
    }

    .sm--menu-toggle {
        display: inline-block;
        position: absolute;
        right: 20px;
        top: 15px;
    }

    .sm--header {
        flex-direction: row;
        justify-content: space-between;
    }

    .sm--mobile-group {
        width: 100%;
    }

    .sm--logo-center {
        order: -1;
    }

    .sm--mobile-group {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .sm--header {
        position: relative;
    }
}


.sm--banner {
    background: linear-gradient(105deg, rgba(15, 6, 32, 0.45) 0%, rgba(28, 19, 44, 0.45) 100%), url('images/slide.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin: 30px 0 40px;
    padding: 70px 40px;
    text-align: center;
    backdrop-filter: brightness(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.sm--banner-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 18px;
}

.sm--banner-title span {
    background: linear-gradient(180deg, #b202e8 0%, #4c00d0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sm--banner-text {
    max-width: 680px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
    font-weight: 400;
    color: #f0f0f0;
}

.sm--btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.sm--btn {
    display: inline-block;
    background: linear-gradient(180deg, #b202e8 0%, #4c00d0 100%);
    color: #fff;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 12px 32px;
    border-radius: 36px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-align: center;
}

.sm--btn-outline {
    background: #fff;
    color: #4c00d0;
    box-shadow: 0 0 0 1px rgba(76, 0, 208, 0.3);
}

.sm--btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}


.sm--features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    margin: 60px 0;
}

.sm--feature-card {
    background: #1c132c;
    border-radius: 10px;
    padding: 28px 20px;
    flex: 1;
    min-width: 200px;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sm--feature-icon {
    height: 58px;
    margin-bottom: 12px;
}

.sm--feature-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #fff;
}

.sm--feature-desc {
    font-size: 0.95rem;
    line-height: 1.45;
    color: #cfcfcf;
}


.sm--games-head {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    text-transform: uppercase;
    margin: 40px 0 24px 0;
    line-height: 1.2;
}

.sm--games-head span {
    background: linear-gradient(180deg, #b202e8 0%, #4c00d0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sm--games-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.sm--game-item {
    background: #1c132c;
    border-radius: 10px;
    overflow: hidden;
    flex: 1;
    min-width: 260px;
    transition: 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.sm--game-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.sm--star-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    border-radius: 30px;
    padding: 5px 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    color: #ffd966;
}

.sm--game-content {
    padding: 20px 20px 24px;
}

.sm--game-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.sm--game-feature-list {
    list-style: none;
    margin: 12px 0 20px;
}

.sm--game-feature-list li {
    font-size: 0.9rem;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

iframe{
    max-width: 100%;
    width: 98%;
    height: 590px;
    border-radius: 10px;
    display: block;
    margin: 20px auto 0 auto;
}

.sm--game-feature-list li:before {
    content: "⚡";
    font-size: 0.8rem;
    color: #b202e8;
}


.sm--cta {
    background: linear-gradient(135deg, rgba(15, 6, 32, 0.8), rgba(28, 19, 44, 0.9)), url('images/cta.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin: 50px 0 40px;
    padding: 60px 30px;
    text-align: center;
}

.sm--cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.sm--cta-text {
    max-width: 550px;
    margin: 0 auto 28px;
    font-size: 1rem;
}


.sm--footer {
    background: #0a0318;
    border-radius: 20px 20px 0 0;
    margin-top: 40px;
    padding: 40px 20px 30px;
    text-align: center;
}

.sm--footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 25px;
    margin-bottom: 28px;
}

.sm--footer-links a {
    color: #e6e6e6;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
}

.sm--footer-links a:hover {
    color: #b202e8;
}


.sm--legal-section {
    background: #1c132c;
    border-radius: 10px;
    padding: 40px 36px;
    margin: 30px 0 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sm--legal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 24px;
    margin-bottom: 32px;
}

.sm--legal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    background: linear-gradient(180deg, #b202e8 0%, #4c00d0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.sm--breadcrumb {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    color: #a0a0c0;
    margin: 12px 0 10px;
}

.sm--breadcrumb a {
    color: #b202e8;
    text-decoration: none;
}

.sm--breadcrumb a:hover {
    text-decoration: underline;
}

.sm--legal-update {
    font-size: 0.8rem;
    color: #8888aa;
    background: rgba(178, 2, 232, 0.15);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 8px;
}

.sm--legal-content {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #e6e6e6;
    line-height: 1.7;
}

.sm--legal-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    margin: 28px 0 16px 0;
    color: #fff;
    border-left: 4px solid #b202e8;
    padding-left: 16px;
}

.sm--legal-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin: 24px 0 12px 0;
    color: #d0d0ff;
}

.sm--legal-content p {
    margin-bottom: 16px;
    font-size: 1rem;
}

.sm--legal-content ul {
    margin: 12px 0 20px 30px;
}

.sm--legal-content li {
    margin-bottom: 8px;
}

.sm--legal-content strong {
    color: #b202e8;
}

@media (max-width: 768px) {
    .sm--legal-section {
        padding: 24px 20px;
    }

    .sm--legal-title {
        font-size: 1.8rem;
    }

    .sm--legal-content h2 {
        font-size: 1.3rem;
    }
}

.sm--contact-section {
    background: #1c132c;
    border-radius: 10px;
    padding: 40px 36px;
    margin: 30px 0 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sm--contact-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 24px;
    margin-bottom: 36px;
}

.sm--contact-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    background: linear-gradient(180deg, #b202e8 0%, #4c00d0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.sm--contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.sm--contact-info {
    flex: 1;
    min-width: 260px;
}

.sm--contact-info-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.sm--contact-info-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #e6e6e6;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sm--contact-email-block {
    background: rgba(178, 2, 232, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-top: 32px;
    border: 1px solid rgba(178, 2, 232, 0.3);
}

.sm--contact-email-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b202e8;
    margin-bottom: 10px;
}

.sm--contact-email {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    word-break: break-all;
    transition: color 0.2s;
}

.sm--contact-email:hover {
    color: #b202e8;
}

.sm--contact-note {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 12px;
}

.sm--contact-form-wrapper {
    flex: 1;
    min-width: 320px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 28px;
}

.sm--contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sm--form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sm--form-group label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: #c0c0e0;
}

.sm--form-group input,
.sm--form-group textarea {
    background: #0f0620;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: #fff;
    transition: all 0.2s;
}

.sm--form-group input:focus,
.sm--form-group textarea:focus {
    outline: none;
    border-color: #b202e8;
    box-shadow: 0 0 0 2px rgba(178, 2, 232, 0.2);
}

.sm--form-group input::placeholder,
.sm--form-group textarea::placeholder {
    color: #55557a;
}

.sm--contact-submit {
    width: 100%;
    margin-top: 8px;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px;
}

.sm--thankyou-message {
    margin-top: 20px;
    padding: 16px;
    background: rgba(76, 0, 208, 0.2);
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #d0d0ff;
    text-align: center;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .sm--contact-section {
        padding: 24px 20px;
    }

    .sm--contact-title {
        font-size: 1.8rem;
    }

    .sm--contact-info-title {
        font-size: 1.4rem;
    }

    .sm--contact-email {
        font-size: 1rem;
    }

    .sm--contact-form-wrapper {
        padding: 20px;
    }
}

.sm--disclaimer {
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.03);
    display: block;
    padding: 15px 18px;
    border-radius: 10px;
    margin-bottom: 22px;
    color: #b5aacc;
    font-weight: 400;
    line-height: 1.7;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto 20px auto;
}

.sm--copyright {
    font-size: 0.8rem;
    opacity: 0.7;
}

hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

@media (max-width: 700px) {
    .sm--banner-title {
        font-size: 2.2rem;
    }

    .sm--container {
        padding: 0 16px;
    }

    .sm--logo-center {
        font-size: 1rem;
    }

    .sm--banner {
        margin-top: 10px;
        padding: 40px 20px;
    }
    iframe{
        height: 476px;
    }

}