* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #00030c;
    color: #9ca3af;
    line-height: 1.4;
    overflow-x: hidden;
}

h1,h2,h3{
    line-height: 1.2;
}

.lu-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lu-btn {
    display: inline-block;
    background-color: #e31e63;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.lu-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: luBlink 2s infinite;
}

@keyframes luBlink {
    0% { transform: rotate(45deg) translate(-50%, -50%); }
    100% { transform: rotate(45deg) translate(50%, 50%); }
}

.lu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(227, 30, 99, 0.3);
}

.lu-section {
    margin-top: 100px;
}

.lu-section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.lu-section-subtitle {
    font-size: 1.2rem;
    color: #e31e63;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lu-text {
    font-size: 1rem;
    color: #9ca3af;
    margin-bottom: 20px;
}

.lu-header {
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    letter-spacing: 0;
    top: 0;
    z-index: 100;
    width: 100%;
}

.lu-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lu-logo {
    font-size: 20px;
    font-weight: 900;
    color: white;
    text-decoration: none;
}

.lu-logo span {
    color: #e31e63;
}

.lu-nav {
    display: flex;
    align-items: center;
}

.lu-menu {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.lu-menu-item {
    margin: 0 15px;
}

.lu-menu-link {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.lu-menu-link:hover {
    color: #e31e63;
}

.lu-banner {
    padding: 180px 0 150px 0;
    position: relative;
    background: url('../img/banner.jpg') center no-repeat;
    background-size: cover;
    overflow: hidden;
}


.lu-banner-subtitle {
    font-size: 1.2rem;
    color: #e31e63;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lu-banner-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    max-width: 650px;
    width: 100%;
    line-height: 1.2;
}

.lu-banner-text {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 30px;
    color: #f1f1f1;
}

.lu-game {
    background-color: #0c091a;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin: 20px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lu-game-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.lu-game-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 30px 0;
}

.lu-about {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.lu-about .lu-section-title, .lu-about .lu-section-subtitle{
    text-align: left;
}

.lu-about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
}

.lu-about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.lu-about-content {
    flex: 1;
    min-width: 300px;
}

.lu-faq {
    background-color: #0c091a;
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
}

.lu-faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.lu-faq-item:last-child{
    margin-bottom: 0;
}

.lu-faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lu-faq-answer {
    color: #9ca3af;
    padding-top: 10px;
    display: none;
}

.lu-cta {
    text-align: center;
    background: radial-gradient(circle at center, rgba(227, 30, 99, 0.1) 0%, transparent 70%);
    padding: 100px 0;
    border-radius: 15px;
}

.lu-footer {
    background-color: #0c091a;
    padding: 60px 0 20px;
}

.lu-footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.lu-footer-logo {
    font-size: 20px;
    text-decoration: none;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
    display: block;
}

.lu-footer-logo span {
    color: #e31e63;
}



.lu-footer-links {
    display: flex;
    flex-direction: column;
}

.lu-footer-link {
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.lu-footer-title{
    margin-bottom: 20px;
}

.lu-footer-link:hover {
    color: #e31e63;
}

.lu-footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#lu-contact {
    background-color: #0c091a;
    border-radius: 15px;
    padding: 80px 0 80px 0;
    border-bottom: 1px solid #262424;
}

.lu-contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
}

.lu-form-group {
    position: relative;
    margin-bottom: 30px;
}

.lu-form-group input,
.lu-form-group textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.lu-form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #9ca3af;
    transition: all 0.3s ease;
    pointer-events: none;
}

.lu-form-group input:focus,
.lu-form-group textarea:focus {
    border-color: #e31e63;
    outline: none;
}

.lu-form-group input:focus + label,
.lu-form-group textarea:focus + label,
.lu-form-group input:valid + label,
.lu-form-group textarea:valid + label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background: #0c091a;
    padding: 0 5px;
    color: #e31e63;
}

.lu-form-message {
    text-align: center;
    padding: 40px;
    background: rgba(227, 30, 99, 0.1);
    border-radius: 10px;
    margin-top: 20px;
}

.lu-form-message p {
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

.lu-footer-about{
    width: 100%;
}

.lu-footer-description{
    margin-bottom: 10px;
}

.lu-texts{
    padding: 110px 0 70px 0;
}

.lu-texts a{
    color: #fff;
}

.lu-texts ul{
    padding-left: 20px;
    margin: 17px 0;
}

.lu-texts h3{
    margin: 18px 0 14px 0;
}
.lu-texts h2{
    margin-bottom: 20px;
}

.game{
    padding: 120px 0 50px 0;
}

.game iframe{
    max-width: 850px;
    width: 100%;
    border-radius: 20px;
    height: 550px;
    margin: 0 auto;
    display: block;
}




@media (max-width: 768px) {
    .lu-menu {
        display: none;
    }

    .lu-banner-title {
        font-size: 2.5rem;
    }

    .lu-section-title {
        font-size: 2rem;
    }

    .lu-about, .lu-footer-inner {
        flex-direction: column;
    }
}

.lu-shape {
    position: absolute;
    background: rgba(227, 30, 99, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.lu-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.lu-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

@media(max-width: 480px){
    .lu-logo{
        font-size: 16px;
    }
    .lu-nav .lu-btn{
        font-size: 13px;
        padding: 10px 20px;
    }
}