:root {
    --tls-bg: #08070b;
    --tls-footer: #0f0e17;
    --tls-accent: #d1364d;
    --tls-card: #121017;
    --tls-text: #ffffff;
    --tls-text-secondary: #b8b5c0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--tls-bg);
    color: var(--tls-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,h2,h3,h4{
    line-height: 1.4;
    letter-spacing: 1px;
}

.tls-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.tls-header {
    padding: 20px 0;
    background-color: var(--tls-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tls-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tls-logo {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 22px;
    text-decoration: none;
    color: #fff;
}

.tls-logo span {
    color: var(--tls-accent);
}

.tls-nav {
    display: flex;
    align-items: center;
}

.tls-nav-list {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.tls-nav-item {
    margin: 0 15px;
}

.tls-nav-link {
    color: var(--tls-text);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}

.tls-nav-link:hover {
    color: var(--tls-accent);
}

.tls-contact-btn {
    background-color: var(--tls-accent);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tls-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(209, 54, 77, 0.4);
}

.tls-mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}


.tls-banner {
    padding: 160px 0;
    background: url('../files/images.jpg') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}


.tls-banner-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.tls-banner-subtitle {
    color: var(--tls-accent);
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tls-banner-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.tls-banner-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ddd;
}

.tls-play-btn {
    background-color: var(--tls-accent);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tls-play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(209, 54, 77, 0.5);
}

.tls-play-btn i {
    margin-left: 10px;
    transition: transform 0.3s;
}

.tls-play-btn:hover i {
    transform: translateX(5px);
}


.tls-featured {
    padding: 80px 0;
    text-align: center;
    background: url('../files/game.jpg') center no-repeat;
    background-size: cover;
}

.tls-featured-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.tls-featured-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--tls-accent);
}

.tls-game-card {
    background-color: var(--tls-card);
    border-radius: 10px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.tls-game-card img{
    width: 100%;
}

.tls-game-card:hover {
    transform: translateY(-10px);
}



.tls-game-content {
    padding: 20px;
}

.tls-game-name {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.tls-game-btn {
    background-color: var(--tls-accent);
    color: white;
    border: none;
    padding: 20px 35px 17px 35px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
    text-decoration: none;
}

.tls-game-btn:hover {
    background-color: #b52c41;
}

.tls-game-btn i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.tls-game-btn:hover i {
    transform: translateX(5px);
}


.tls-about {
    padding: 80px 0;
    background-color: var(--tls-card);
}

.tls-about-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.tls-about-image {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.tls-about-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.tls-about-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.tls-about-subtitle {
    color: var(--tls-accent);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.tls-about-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.tls-about-text {
    margin-bottom: 25px;
    color: #ddd;
}

.tls-about-list {
    list-style: none;
}

.tls-about-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tls-about-item i {
    color: var(--tls-accent);
    margin-right: 10px;
}


.tls-faq {
    padding: 80px 0;
}

.tls-faq-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.tls-faq-image {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.tls-faq-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.tls-faq-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.tls-faq-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 36px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}



.tls-accordion {
    margin-top: 20px;
}

.tls-accordion-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--tls-card);
}

.tls-accordion-header {
    padding: 20px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.tls-accordion-header i {
    transition: transform 0.3s;
}

.tls-accordion-item.active .tls-accordion-header i {
    transform: rotate(180deg);
}

.tls-accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    color: var(--tls-text-secondary);
}

.tls-accordion-item.active .tls-accordion-content {
    padding: 15px 20px;
    max-height: 200px;
}


.tls-footer {
    background-color: var(--tls-footer);
    padding: 60px 0 20px;
}

.tls-footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.tls-footer-col {
    margin-bottom: 30px;
    padding: 0 15px;
}

.tls-footer-col.first{
    max-width: 600px;
    width: 100%;
}

.tls-footer-logo {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    display: block;
    color: #fff;
    text-decoration: none;
}

.tls-footer-logo span {
    color: var(--tls-accent);
}

.tls-footer-text {
    color: var(--tls-text-secondary);
    margin-bottom: 20px;
}

.tls-footer-text p{
    margin-bottom: 10px;
}

.tls-footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.tls-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--tls-accent);
}

.tls-footer-links {
    list-style: none;
}

.tls-footer-link {
    margin-bottom: 10px;
}

.tls-footer-link a {
    color: var(--tls-text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.tls-footer-link a:hover {
    color: var(--tls-accent);
}

.tls-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--tls-text-secondary);
    font-size: 14px;
}


.tlsPage{
    padding: 65px 0;
}

.tlsPage h2, .tlsPage h3{
    margin: 20px 0 15px 0;
}

.tlsPage a{
    color: #fff;
}

.tlsPage ul{
    padding-left: 20px;
    margin: 20px 0;
}



.tls-breadcrumbs {
    padding: 20px 0;
    background-color: var(--tls-card);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tls-breadcrumbs-nav {
    display: flex;
    align-items: center;
    color: var(--tls-text-secondary);
}

.tls-breadcrumbs-nav a {
    color: var(--tls-text);
    text-decoration: none;
    transition: color 0.3s;
}

.tls-breadcrumbs-nav a:hover {
    color: var(--tls-accent);
}

.tls-breadcrumbs-nav i {
    margin: 0 10px;
    color: var(--tls-text-secondary);
}

.tls-breadcrumbs-nav span {
    color: var(--tls-accent);
}


.tls-contact {
    padding: 80px 0;
    background-color: var(--tls-bg);
}

.tls-contact-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.tls-contact-info {
    flex: 1;
    min-width: 300px;
}

.tls-contact-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.tls-contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--tls-accent);
}

.tls-contact-text {
    margin-bottom: 30px;
    color: var(--tls-text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.tls-contact-details {
    margin-top: 40px;
}

.tls-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.tls-contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--tls-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.tls-contact-icon i {
    font-size: 20px;
    color: white;
}

.tls-contact-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
}

.tls-contact-content p {
    color: var(--tls-text-secondary);
    margin: 0;
}

.tls-contact-form-wrapper {
    flex: 1;
    min-width: 300px;
    background-color: var(--tls-card);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.tls-contact-form {
    transition: opacity 0.3s, transform 0.3s;
}

.tls-form-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--tls-text);
}

.tls-form-group {
    margin-bottom: 20px;
}

.tls-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--tls-text);
}

.tls-form-group input,
.tls-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--tls-text);
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.tls-form-group input:focus,
.tls-form-group textarea:focus {
    outline: none;
    border-color: var(--tls-accent);
    box-shadow: 0 0 0 2px rgba(209, 54, 77, 0.2);
}

.tls-form-btn {
    background-color: var(--tls-accent);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    justify-content: center;
}

.tls-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(209, 54, 77, 0.4);
}

.tls-form-btn i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.tls-form-btn:hover i {
    transform: translateX(5px);
}

.tls-form-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    background-color: var(--tls-card);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.tls-form-message.active {
    opacity: 1;
    visibility: visible;
}

.tls-form-success i {
    font-size: 50px;
    color: #4caf50;
    margin-bottom: 20px;
}

.tls-form-error i {
    font-size: 50px;
    color: #f44336;
    margin-bottom: 20px;
}

.tls-form-message h3 {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.tls-form-message p {
    color: var(--tls-text-secondary);
}


@media (max-width: 768px) {
    .tls-contact-inner {
        flex-direction: column;
    }
    
    .tls-contact-form-wrapper {
        padding: 20px;
    }
    
    .tls-contact-title {
        font-size: 28px;
    }
}

.tlsGame{
    padding: 55px 0;
}

.tlsGame iframe{
    height: 550px;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
}




































@media (max-width: 992px) {
    .tls-nav-list {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--tls-card);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .tls-nav-list.active {
        display: flex;
    }
    
    .tls-nav-item {
        margin: 10px 0;
    }
    
    .tls-mobile-toggle {
        display: block;
    }
    
    .tls-banner-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .tls-banner-title {
        font-size: 32px;
    }
    
    .tls-about-inner, .tls-faq-inner {
        flex-direction: column;
    }
    
    .tls-footer-inner {
        flex-direction: column;
    }
    
    .tls-footer-col {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .tls-banner-title {
        font-size: 28px;
    }
    
    .tls-banner-text {
        font-size: 16px;
    }
    
    .tls-play-btn, .tls-contact-btn {
        padding: 10px 20px;
    }
}