body {
    font-family: 'Quicksand', 'Comfortaa', sans-serif;
    color: #2a2a2a;
    background-color: #f8f9ff;
    line-height: 1.7;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4 {
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.age-modal {
    position: fixed;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.99);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-notice {
    position: fixed;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 777;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-modal {
    top: 0;
    height: 100%;
}

.cookie-notice {
    bottom: 0;
    padding: 20px 0;
    background: #2c3e50;
    color: white;
}

.modal-content, .cookie-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.cookie-content {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.modal-icon {
    font-size: 50px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.btn-accept, .btn-decline {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #2ecc71;
    color: white;
}

.btn-decline {
    background-color: #e74c3c;
    color: white;
}

.btn-accept:hover {
    background-color: #27ae60;
}

.btn-decline:hover {
    background-color: #c0392b;
}

body.modal-open {
    overflow: hidden;
}

.lim_cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #6e45e2 0%, #88d3ce 100%);
    color: white;
    padding: 1.5rem;
    z-index: 777;
    display: none;
    animation: lim_cookieSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.lim_cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.lim_cookie-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    flex: 1;
    min-width: 250px;
    color: white;
}

.lim_cookie-accept {
    background-color: white;
    color: #6e45e2;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lim_cookie-accept:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@keyframes lim_cookieSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.lim_header-section {
    background: linear-gradient(135deg, #6e45e2 0%, #89a3e2 100%);
    box-shadow: 0 8px 30px rgba(110, 69, 226, 0.3);
    position: fixed;
    width: 100%;
    z-index: 100;
}

.lim_header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.lim_logo-container img {
    height: 55px;
    width: auto;
    transition: transform 0.4s ease;
}

.lim_logo-container img:hover {
    transform: rotate(5deg) scale(1.1);
}

.lim_main-navigation {
    display: flex;
}

.lim_nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.lim_nav-element {
    position: relative;
}

.lim_nav-url {
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lim_nav-url i {
    font-size: 1.2rem;
}

.lim_nav-url:hover {
    color: #88d3ce;
    transform: translateY(-3px);
}

.lim_nav-url::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #ff7e5f;
    transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    border-radius: 3px;
}

.lim_nav-url:hover::after {
    width: 100%;
}

.lim_mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.lim_toggle-line {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.lim_mobile-toggle.lim_active .lim_toggle-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.lim_mobile-toggle.lim_active .lim_toggle-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.lim_mobile-toggle.lim_active .lim_toggle-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.lim_mobile-nav {
    position: fixed;
    top: 0;
    right: -110%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, #6e45e2 0%, #89a3e2 100%);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    padding: 7rem 2rem 2rem;
    transition: right 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 999;
}

.lim_mobile-nav.lim_active {
    right: 0;
}

.lim_mobile-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 0;
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.lim_mobile-link i {
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
}

.lim_mobile-link:hover {
    color: #88d3ce;
    padding-left: 10px;
}

.lim_no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}


.lim_mobile-link i {
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
}

.lim_mobile-link:hover {
    color: #88d3ce;
    padding-left: 10px;
}

.lim_hero-section {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #6e45e2 0%, #89a3e2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.lim_hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../image-lim/lim-img-background-1.jpg') repeat;
    opacity: 0.1;
    z-index: 0;
}

.lim_hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.lim_hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.lim_hero-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.lim_cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #ff7e5f;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    box-shadow: 0 10px 30px rgba(255, 126, 95, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.lim_cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.lim_cta-button:hover {
    background-color: #ff6342;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 126, 95, 0.7);
}

.lim_cta-button:hover::before {
    left: 100%;
}

.lim_features-section {
    padding: 6rem 0;
    background-color: #f0f4ff;
    position: relative;
}

.lim_features-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(135deg, #6e45e2 0%, #88d3ce 100%);
    opacity: 0.1;
}

.lim_features-heading {
    margin-bottom: 4rem;
    color: #6e45e2;
    text-align: center;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.lim_features-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6e45e2, #88d3ce);
    border-radius: 2px;
}

.lim_features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.lim_feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    box-shadow: 0 10px 30px rgba(110, 69, 226, 0.1);
    border: 2px solid rgba(110, 69, 226, 0.1);
    position: relative;
    overflow: hidden;
}

.lim_feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(110, 69, 226, 0.2);
    border-color: rgba(110, 69, 226, 0.3);
}

.lim_feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6e45e2, #88d3ce);
}

.lim_feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6e45e2 0%, #89a3e2 100%);
    border-radius: 50%;
    color: white;
    font-size: 2.8rem;
    box-shadow: 0 10px 25px rgba(110, 69, 226, 0.3);
    transition: all 0.4s ease;
}

.lim_feature-card:hover .lim_feature-icon {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(110, 69, 226, 0.4);
}

.lim_feature-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #6e45e2;
    position: relative;
    padding-bottom: 0.8rem;
}

.lim_feature-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #88d3ce;
    border-radius: 3px;
}

.lim_feature-desc {
    color: #6a6a6a;
    font-size: 1.05rem;
    line-height: 1.7;
}

.lim_games-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #88d3ce 0%, #6e45e2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.lim_games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
}

.lim_games-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.lim_section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.lim_section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.lim_game-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 0 2rem;
    max-width: 1300px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem;
    border: 3px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.lim_game-preview {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.lim_game-preview:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.lim_game-preview img {
    width: 70%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    margin: 20px auto;
}

.lim_game-preview:hover img {
    transform: scale(1.05);
}

.lim_game-overlay {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
    text-align: center;
}

.lim_game-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ff0000;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.lim_play-button {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background-color: #ff7e5f;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.lim_play-button:hover {
    background-color: #ff6342;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.lim_game-details {
    max-width: 700px;
    width: 100%;
    color: white;
    text-align: center;
}

.lim_game-name {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    display: inline-block;
}

.lim_game-name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #ff7e5f;
    border-radius: 2px;
}

.lim_game-description {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

.lim_game-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.lim_spec-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.lim_spec-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.lim_spec-label {
    font-weight: 700;
    color: #88d3ce;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: block;
}

.lim_spec-value {
    color: white;
    font-size: 1rem;
}

.lim_about-section {
    padding: 6rem 0;
    background-color: white;
    position: relative;
    height: auto;
}

.lim_about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(90deg, #88d3ce, #6e45e2);
    opacity: 0.1;
}

.lim_about-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.lim_about-visual {
    width: 48%;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.lim_about-visual img {
    max-width: 550px;
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(110, 69, 226, 0.2);
    border: 3px solid #6e45e2;
    transition: all 0.5s ease;
}

.lim_about-visual img:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 25px 60px rgba(110, 69, 226, 0.3);
}

.lim_about-content {
    width: 48%;
    max-width: 550px;    
    padding: 0 2rem;
    text-align: center;
}

.lim_section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #6e45e2;
    position: relative;
    display: inline-block;
}

.lim_section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6e45e2, #88d3ce);
    border-radius: 2px;
}

.lim_about-text {
    margin-bottom: 2rem;
    color: #5a5a5a;
    font-size: 1.1rem;
    line-height: 1.8;
}

.lim_about-list {
    list-style: none;
    margin: 3rem 0;
    display: inline-block;
    text-align: left;
}

.lim_about-point {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #6e45e2;
    font-size: 1.1rem;
    line-height: 1.6;
}

.lim_about-point i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    color: #ff7e5f;
}

.lim_testimonials-section {
    padding: 6rem 0;
    background-color: #f8f9ff;
    position: relative;
}

.lim_testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(90deg, #ff7e5f, #6e45e2);
    opacity: 0.1;
}

.lim_section-testimonial-title {
    margin: 0 auto;
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
    color: #6e45e2;
    font-size: 2.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.lim_section-testimonial-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6e45e2, #88d3ce);
    border-radius: 2px;
}

.lim_testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 0 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.lim_testimonial-card {
    background-color: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(110, 69, 226, 0.1);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(110, 69, 226, 0.1);
}

.lim_testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(110, 69, 226, 0.2);
}

.lim_testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #6e45e2, #88d3ce);
}

.lim_testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.lim_user-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
    border: 3px solid #6e45e2;
    box-shadow: 0 5px 15px rgba(110, 69, 226, 0.2);
    transition: all 0.4s ease;
}

.lim_testimonial-card:hover .lim_user-avatar {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(110, 69, 226, 0.3);
}

.lim_user-info {
    flex: 1;
}

.lim_user-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #6e45e2;
}

.lim_rating-stars {
    color: #ff7e5f;
    font-size: 1rem;
}

.lim_testimonial-text {
    font-style: italic;
    color: #6a6a6a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    position: relative;
    padding-left: 1.5rem;
}

.lim_testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: rgba(110, 69, 226, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.lim_contact-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #6e45e2 0%, #89a3e2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.lim_contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
}

.lim_contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.lim_section-contacts-title {
    margin: 0 auto;
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    font-size: 2.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.lim_section-contacts-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6e45e2, #88d3ce);
    border-radius: 2px;
}

.lim_contact-form-wrapper {
    flex: 1;
    min-width: 300px;
}

.lim_contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.lim_no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.lim_form-group.lim_error .lim_form-input,
.lim_form-group.lim_error .lim_form-textarea {
    border-color: #ff4757;
    background-color: #fff9f9;
}

.lim_error-message {
    color: #ff4757;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    animation: lim_fadeIn 0.3s ease;
}

@keyframes lim_fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes lim_shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.lim_success-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2ed573;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.lim_success-notification.lim_show {
    opacity: 1;
    transform: translateY(0);
}

.lim_success-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lim_success-content i {
    font-size: 1.5rem;
}

.lim_success-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2ed573;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.lim_success-notification.lim_show {
    opacity: 1;
    transform: translateY(0);
}

.lim_success-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lim_success-content i {
    font-size: 1.5rem;
}

.lim_section-title {
    color: #6e45e2;
    margin-bottom: 2rem;
    text-align: center;
}

.lim_form-group {
    margin-bottom: 2rem;
}

.lim_form-label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #6e45e2;
    font-size: 1.1rem;
}

.lim_form-input, .lim_form-textarea {
    width: 90%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(110, 69, 226, 0.2);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9ff;
}

.lim_form-input:focus, .lim_form-textarea:focus {
    outline: none;
    border-color: #6e45e2;
    box-shadow: 0 0 0 4px rgba(110, 69, 226, 0.1);
    background-color: white;
}

.lim_form-textarea {
    resize: vertical;
    min-height: 150px;
}

.lim_submit-button {
    display: inline-block;
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #6e45e2 0%, #89a3e2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(110, 69, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.lim_submit-button:hover {
    background: linear-gradient(135deg, #5d35d1 0%, #7894e2 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(110, 69, 226, 0.4);
}

.lim_submit-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.lim_submit-button:hover::after {
    left: 100%;
}

.lim_contact-info-wrapper {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.lim_info-heading {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: white;
    text-align: center;
    position: relative;
}

.lim_info-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ff7e5f;
    border-radius: 2px;
}

.lim_contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.lim_contact-method:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.lim_contact-icon {
    font-size: 1.8rem;
    margin-right: 1.5rem;
    color: #88d3ce;
    min-width: 40px;
    text-align: center;
}

.lim_contact-link, .lim_contact-text {
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
}

.lim_contact-link:hover {
    color: #88d3ce;
}

.lim_social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.lim_social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.5rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.lim_social-icon:hover {
    background: #ff7e5f;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 126, 95, 0.3);
    border-color: transparent;
}

.lim_success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lim_success-modal.active {
    opacity: 1;
    visibility: visible;
}

.lim_success-modal.active {
    opacity: 1;
    visibility: visible;
}

.lim_modal-wrapper {
    background: linear-gradient(135deg, #6e45e2 0%, #89a3e2 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    overflow: hidden;
}

.lim_modal-wrapper::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
animation: lim_rotate 15s linear infinite;
}

.lim_modal-icon {
font-size: 4rem;
color: #88d3ce;
margin-bottom: 1.5rem;
position: relative;
z-index: 1;
}

.lim_modal-title {
font-size: 2rem;
margin-bottom: 1rem;
color: white;
position: relative;
z-index: 1;
}

.lim_modal-message {
font-size: 1.1rem;
margin-bottom: 2rem;
color: rgba(255,255,255,0.9);
position: relative;
z-index: 1;
line-height: 1.6;
}

.lim_modal-button {
display: inline-block;
padding: 0.8rem 2.5rem;
background-color: #ff7e5f;
color: white;
border-radius: 50px;
font-weight: 700;
border: none;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
z-index: 1;
box-shadow: 0 5px 15px rgba(255,126,95,0.4);
}

.lim_modal-button:hover {
background-color: #ff6342;
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(255,126,95,0.6);
}

@keyframes lim_rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

.lim_faq-section {
padding: 6rem 0;
background-color: #f8f9ff;
position: relative;
background: url('../image-lim/lim-img-background-2.jpg');
background-size: cover;
background-position: center;
}

.lim_faq-section::before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 20px;
background: linear-gradient(90deg, #6e45e2, #88d3ce);
opacity: 0.1;
}

.lim_container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
text-align: center;
}

.lim_faq-title {
padding:  1rem;
margin-bottom: 4rem;
border-radius: 10px;
color: #ffffff;
font-size: 2.5rem;
position: relative;
background: linear-gradient(90deg, #6e45e2, #88d3ce);
}

.lim_faq-title::after {
content: '';
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 4px;
background: linear-gradient(90deg, #6e45e2, #88d3ce);
border-radius: 2px;
}

.lim_faq-accordion {
max-width: 800px;
margin: 0 auto;
}

.lim_faq-item {
margin-bottom: 1.5rem;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(110,69,226,0.1);
border: 1px solid rgba(110,69,226,0.1);
transition: all 0.3s ease;
}

.lim_faq-item:hover {
box-shadow: 0 10px 25px rgba(110,69,226,0.2);
transform: translateY(-3px);
}

.lim_faq-question {
width: 100%;
padding: 1.5rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
background-color: white;
border: none;
cursor: pointer;
text-align: left;
transition: all 0.3s ease;
}

.lim_faq-question:hover {
background-color: #f5f5ff;
}

.lim_faq-question[aria-expanded="true"] {
background-color: #6e45e2;
color: white;
}

.lim_faq-question-text {
font-weight: 700;
font-size: 1.2rem;
flex: 1;
}

.lim_faq-icon {
font-size: 1.5rem;
transition: all 0.3s ease;
margin-left: 1rem;
color: #6e45e2;
}

.lim_faq-question[aria-expanded="true"] .lim_faq-icon {
transform: rotate(180deg);
color: white;
}

.lim_faq-answer {
padding: 0 2rem;
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.5s cubic-bezier(0.65, 0, 0.35, 1), padding 0.5s ease;
}

.lim_faq-item[aria-expanded="true"] .lim_faq-answer {
padding: 0 2rem 2rem;
max-height: 500px;
}

.lim_faq-answer p {
margin-top: 1rem;
color: #030303;
line-height: 1.8;
}

.lim_disclaimer-section {
padding: 6rem 0;
background: linear-gradient(135deg, #6e45e2 0%, #89a3e2 100%);
color: white;
text-align: center;
position: relative;
overflow: hidden;
}

.lim_disclaimer-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.1;
z-index: 0;
}

.lim_disclaimer-content {
max-width: 800px;
margin: 0 auto;
padding: 0 2rem;
position: relative;
z-index: 1;
}

.lim_disclaimer-heading {
font-size: 2.2rem;
margin-bottom: 2rem;
color: white;
}

.lim_disclaimer-text {
margin-bottom: 3rem;
font-size: 1.1rem;
line-height: 1.8;
opacity: 0.9;
}

.lim_age-restriction {
display: inline-flex;
align-items: center;
gap: 1rem;
margin-bottom: 3rem;
padding: 1rem 2rem;
background-color: rgba(255,255,255,0.1);
border-radius: 50px;
font-weight: 700;
font-size: 1.2rem;
backdrop-filter: blur(5px);
border: 2px solid rgba(255,255,255,0.2);
}

.lim_age-restriction i {
font-size: 2rem;
color: #ff7e5f;
}

.lim_responsible-gaming {
background-color: rgba(0,0,0,0.2);
padding: 3rem;
border-radius: 20px;
backdrop-filter: blur(10px);
border: 2px solid rgba(255,255,255,0.2);
}

.lim_rg-heading {
font-size: 1.5rem;
margin-bottom: 2rem;
color: #88d3ce;
}

.lim_rg-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 2rem;
margin-top: 2rem;
}

.lim_rg-links a {
transition: all 0.3s ease;
}

.lim_rg-links a:hover {
transform: translateY(-5px) scale(1.05);
}

.lim_footer {
background-color: #2a2a2a;
color: white;
padding: 4rem 0 0;
}

.lim_footer-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
flex-direction: column;
gap: 4rem;
}

.lim_footer-brand {
    text-align: center;
}

.lim_footer-logo {
height: 70px;
margin: 0 auto;
margin-bottom: 1.5rem;
transition: all 0.4s ease;
}

.lim_footer-logo:hover {
transform: rotate(-5deg) scale(1.1);
}

.lim_footer-tagline {
opacity: 0.7;
font-size: 1rem;
max-width: 500px;
margin: 0 auto;
line-height: 1.6;
}

.lim_footer-links {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 3rem;
}

.lim_link-group {
margin-bottom: 2rem;
}

.lim_links-heading {
font-size: 1.3rem;
margin-bottom: 1.5rem;
position: relative;
padding-bottom: 0.8rem;
color: #88d3ce;
}

.lim_links-heading::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 3px;
background-color: #ff7e5f;
border-radius: 3px;
}

.lim_link-list {
list-style: none;
}

.lim_link-list li {
margin-bottom: 1rem;
}

.lim_footer-link {
opacity: 0.7;
transition: all 0.3s ease;
font-size: 0.95rem;
display: inline-block;
}

.lim_footer-link:hover {
opacity: 1;
color: #88d3ce;
transform: translateX(5px);
}

.lim_footer-bottom {
background-color: rgba(0,0,0,0.3);
padding: 2rem;
text-align: center;
margin-top: 4rem;
}

.lim_copyright {
font-size: 0.9rem;
opacity: 0.7;
margin-bottom: 1.5rem;
}

.lim_legal-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 1.5rem;
}

.lim_legal-link {
font-size: 0.85rem;
opacity: 0.7;
transition: all 0.3s ease;
}

.lim_legal-link:hover {
opacity: 1;
color: #ff7e5f;
}

.lim_link-separator {
opacity: 0.3;
}

.lim_learn-more {
text-align: center;
margin-top: 3rem;
}

.lim_learn-more-btn {
display: inline-block;
padding: 1rem 2.5rem;
background: linear-gradient(135deg, #6e45e2 0%, #89a3e2 100%);
color: white;
border-radius: 50px;
font-weight: 700;
transition: all 0.4s ease;
box-shadow: 0 5px 20px rgba(110,69,226,0.3);
text-decoration: none;
text-transform: uppercase;
letter-spacing: 1px;
position: relative;
overflow: hidden;
}

.lim_learn-more-btn:hover {
background: linear-gradient(135deg, #5d35d1 0%, #7894e2 100%);
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(110,69,226,0.4);
}

.lim_learn-more-btn::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: 0.5s;
}

.lim_learn-more-btn:hover::after {
left: 100%;
}

@keyframes lim_pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}

@keyframes lim_float {
0% { transform: translateY(0); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0); }
}

@media (max-width: 1275px) {
    .lim_nav-list {
        gap: 0.5rem;
    }
}

@media (max-width: 1024px) {
.lim_main-navigation {
    display: none;
}

.lim_mobile-toggle {
    display: flex;
}

.lim_main-navigation {
    display: none;
}

.lim_hero-title {
    font-size: 2.5rem;
}

.lim_section-title {
    font-size: 2rem;
}

.lim_features-grid {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.lim_header-content {
    padding: 0.8rem 1.5rem;
}

.lim_game-specs {
    grid-template-columns: 1fr;
}

.lim_hero-section {
    padding-top: 8rem;
}

.lim_hero-title {
    font-size: 2.2rem;
}

.lim_hero-content {
    padding: 2rem;
}

.lim_features-grid {
    grid-template-columns: 1fr;
}

.lim_contact-container {
    flex-direction: column-reverse;
}

.lim_contact-info-wrapper {
    order: -1;
}

.lim_about-container {
    flex-direction: column;
}

.lim_footer-links {
    grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
.lim_hero-title {
    font-size: 2rem;
}

.lim_section-title {
    font-size: 1.8rem;
}

.lim_modal-wrapper {
    padding: 2rem 1.5rem;
}

.lim_modal-title {
    font-size: 1.5rem;
}

.lim_game-showcase {
    padding: 1rem;
}

.lim_about-visual,
.lim_about-content {
    width: 95%;
}

.lim_testimonials-container {
    padding: 0 0.5rem;
}

.lim_contact-container,
.lim_contact-info-wrapper {
    padding: 0;
}

.lim_age-restriction {
    flex-direction: column;
}

.lim_faq-question {
    padding: 1.2rem 1.5rem;
}

.lim_faq-question-text {
    font-size: 1rem;
}

.lim_faq-answer {
    padding: 0 1.5rem;
}

.lim_faq-item[aria-expanded="true"] .lim_faq-answer {
    padding: 0 1.5rem 1.5rem;
}

.lim_disclaimer-content {
    padding: 0 0.5rem;
}

.lim_legal-links {
    flex-direction: column;
    gap: 0.5rem;
}

.lim_link-separator {
    display: none;
}
}