@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --lm-primary: #e63946;
    --lm-secondary: #f1faee;
    --lm-accent: #a8dadc;
    --lm-dark: #1d3557;
    --lm-light: #f8f9fa;
    --lm-gradient: linear-gradient(135deg, #e63946 0%, #a8dadc 100%);
    --lm-overlay: rgba(29, 53, 87, 0.85);
    --lm-text-dark: #212529;
    --lm-text-light: #f8f9fa;
    --lm-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --lm-transition: all 0.3s ease;
    --lm-border-radius: 8px;
}

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

body {
    font-family: 'Work Sans', sans-serif;
    line-height: 1.6;
    color: var(--lm-text-dark);
    background-color: var(--lm-secondary);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.lm_age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.99);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: var(--lm-text-light);
    padding: 20px;
    text-align: center;
}

.lm_age-content {
    max-width: 500px;
    background-color: var(--lm-dark);
    padding: 40px;
    border-radius: var(--lm-border-radius);
    box-shadow: var(--lm-shadow);
    animation: lm_fadeIn 0.5s ease;
}

.lm_age-content i {
    font-size: 3rem;
    color: var(--lm-primary);
    margin-bottom: 20px;
}

.lm_age-content h2 {
    margin-bottom: 15px;
    color: var(--lm-text-light);
}

.lm_age-content p {
    margin-bottom: 25px;
}

.lm_age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.lm_age-confirm, .lm_age-deny {
    padding: 12px 25px;
    border-radius: var(--lm-border-radius);
    font-weight: bold;
    transition: var(--lm-transition);
}

.lm_age-confirm {
    background-color: var(--lm-primary);
    color: var(--lm-text-light);
}

.lm_age-deny {
    background-color: var(--lm-secondary);
    color: var(--lm-text-dark);
}

.lm_age-confirm:hover {
    background-color: darken(#e63946, 10%);
    transform: translateY(-3px);
}

.lm_age-deny:hover {
    background-color: darken(#f1faee, 10%);
    transform: translateY(-3px);
}

.lm_cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--lm-dark);
    color: var(--lm-text-light);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.lm_cookie-consent.active {
    transform: translateY(0);
}

.lm_cookie-content {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1682px;
    width: 100%;
    margin: 0 auto;
}

.lm_cookie-content p {
    flex: 1;
}

.lm_cookie-content a {
    color: var(--lm-accent);
    text-decoration: underline;
}

.lm_cookie-accept {
    padding: 8px 20px;
    background-color: var(--lm-primary);
    color: var(--lm-text-light);
    border-radius: var(--lm-border-radius);
    transition: var(--lm-transition);
}

.lm_cookie-accept:hover {
    background-color: darken(#e63946, 10%);
    transform: translateY(-2px);
}

.lm_header-container {
    background-color: var(--lm-dark);
    color: var(--lm-text-light);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--lm-shadow);
}

.lm_header-wrapper {
    max-width: 1682px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.lm_header-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lm_header-brand img {
    height: 40px;
}

.lm_header-brand h1 {
    font-size: 1.8rem;
    margin: 0;
}

.lm_header-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.lm_header-nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.lm_header-nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: var(--lm-border-radius);
    transition: var(--lm-transition);
    font-weight: 500;
}

.lm_header-nav-link:hover {
    color: var(--lm-primary);
    transform: translateY(-2px);
}

.lm_header-nav-link i {
    font-size: 1.2rem;
}

.lm_header-ticket-btn {
    background-color: var(--lm-primary);
    color: var(--lm-text-light);
    padding: 10px 20px;
    border-radius: var(--lm-border-radius);
    font-weight: bold;
    transition: var(--lm-transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.lm_header-ticket-btn:hover {
    background-color: darken(#e63946, 10%);
    transform: translateY(-3px);
}

.lm_header-responsibility {
    position: relative;
}

.lm_header-responsibility-toggle {
    background-color: transparent;
    color: var(--lm-text-light);
    padding: 8px 15px;
    border-radius: var(--lm-border-radius);
    border: 1px solid var(--lm-accent);
    transition: var(--lm-transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.lm_header-responsibility-toggle:hover {
    background-color: var(--lm-accent);
    color: var(--lm-text-dark);
}

.lm_header-responsibility-content {
    position: absolute;
    right: 0;
    top: 100%;
    background-color: var(--lm-secondary);
    color: var(--lm-text-dark);
    padding: 20px;
    border-radius: var(--lm-border-radius);
    box-shadow: var(--lm-shadow);
    width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: var(--lm-transition);
    transform: translateY(10px);
    z-index: 10;
}

.lm_header-responsibility:hover .lm_header-responsibility-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lm_header-responsibility-content p {
    margin-bottom: 15px;
}

.lm_header-responsibility-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lm_header-responsibility-links a {
    color: var(--lm-primary);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--lm-transition);
}

.lm_header-responsibility-links a:hover {
    color: var(--lm-dark);
}

.lm_welcome-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('/lm-engine/lm-imgs/lm-background-image.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 20px;
    overflow: hidden;
}

.lm_welcome-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lm-overlay);
    z-index: 1;
}

.lm_welcome-content {
    position: relative;
    z-index: 2;
    max-width: 1682px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: var(--lm-text-light);
    padding: 0 20px;
}

.lm_welcome-content h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: lm_fadeInUp 1s ease;
}

.lm_welcome-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    animation: lm_fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.lm_welcome-btn {
    background-color: var(--lm-primary);
    color: var(--lm-text-light);
    padding: 15px 30px;
    border-radius: var(--lm-border-radius);
    font-size: 1.2rem;
    font-weight: bold;
    transition: var(--lm-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: lm_fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.lm_welcome-btn:hover {
    background-color: darken(#e63946, 10%);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.lm_welcome-btn i {
    font-size: 1.5rem;
}

.lm_welcome-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 80px;
    animation: lm_fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.lm_welcome-feature {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--lm-border-radius);
    padding: 30px;
    width: 250px;
    transition: var(--lm-transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lm_welcome-feature:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.lm_welcome-feature i {
    font-size: 2.5rem;
    color: var(--lm-primary);
    margin-bottom: 15px;
}

.lm_welcome-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--lm-text-light);
}

.lm_welcome-feature p {
    font-size: 1rem;
    margin-bottom: 0;
    opacity: 0.9;
    animation: none;
}

.lm_timer-section {
    background: var(--lm-gradient);
    padding: 80px 20px;
    color: var(--lm-text-light);
    text-align: center;
}

.lm_timer-container {
    max-width: 1682px;
    margin: 0 auto;
}

.lm_timer-container h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.lm_timer-container p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

.lm_timer-display {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.lm_timer-unit {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--lm-border-radius);
    padding: 20px;
    min-width: 120px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.lm_timer-unit span {
    font-size: 3rem;
    font-weight: bold;
    display: block;
    font-family: 'Work Sans', sans-serif;
}

.lm_timer-unit small {
    font-size: 1rem;
    opacity: 0.8;
}

.lm_timer-btn {
    background-color: var(--lm-dark);
    color: var(--lm-text-light);
    padding: 15px 30px;
    border-radius: var(--lm-border-radius);
    font-size: 1.2rem;
    font-weight: bold;
    transition: var(--lm-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lm_timer-btn:hover {
    background-color: darken(#1d3557, 10%);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.lm_timer-btn i {
    font-size: 1.5rem;
}

.lm_about-section {
    padding: 100px 20px;
    background-color: var(--lm-light);
}

.lm_about-container {
    max-width: 1682px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.lm_about-content {
    flex: 1;
}

.lm_about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--lm-dark);
}

.lm_about-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.lm_about-highlights {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.lm_about-highlight {
    flex: 1;
    background-color: white;
    padding: 25px;
    border-radius: var(--lm-border-radius);
    box-shadow: var(--lm-shadow);
    transition: var(--lm-transition);
}

.lm_about-highlight:hover {
    transform: translateY(-10px);
}

.lm_about-highlight i {
    font-size: 2rem;
    color: var(--lm-primary);
    margin-bottom: 15px;
}

.lm_about-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.lm_about-image {
    flex: 1;
    border-radius: var(--lm-border-radius);
    overflow: hidden;
    box-shadow: var(--lm-shadow);
}

.lm_about-image img {
    width: 100%;
    height: auto;
    transition: var(--lm-transition);
}

.lm_about-image:hover img {
    transform: scale(1.05);
}

.lm_features-section {
    padding: 100px 20px;
    background-color: white;
}

.lm_features-container {
    max-width: 1682px;
    margin: 0 auto;
}

.lm_features-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--lm-dark);
}

.lm_features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.lm_feature-card {
    background-color: var(--lm-light);
    border-radius: var(--lm-border-radius);
    padding: 40px 30px;
    width: calc(33.333% - 20px);
    text-align: center;
    transition: var(--lm-transition);
    box-shadow: var(--lm-shadow);
}

.lm_feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.lm_feature-card i {
    font-size: 2.5rem;
    color: var(--lm-primary);
    margin-bottom: 20px;
}

.lm_feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.lm_feature-card p {
    color: #666;
}

.lm_play-section {
    padding: 100px 20px;
    background-color: var(--lm-dark);
    color: var(--lm-text-light);
}

.lm_play-container {
    max-width: 1682px;
    margin: 0 auto;
}

.lm_play-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.lm_play-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.lm_play-step {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--lm-border-radius);
    padding: 40px 30px;
    width: calc(25% - 23px);
    text-align: center;
    transition: var(--lm-transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.lm_play-step:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.lm_play-step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Work Sans', sans-serif;
}

.lm_play-step i {
    font-size: 2.5rem;
    color: var(--lm-primary);
    margin-bottom: 20px;
}

.lm_play-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.lm_play-step p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.lm_play-step-btn {
    background-color: var(--lm-primary);
    color: var(--lm-text-light);
    padding: 10px 20px;
    border-radius: var(--lm-border-radius);
    font-weight: bold;
    transition: var(--lm-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lm_play-step-btn:hover {
    background-color: darken(#e63946, 10%);
    transform: translateY(-3px);
}

.lm_check-section {
    padding: 100px 20px;
    background-color: var(--lm-light);
}

.lm_check-container {
    max-width: 1682px;
    margin: 0 auto;
}

.lm_check-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--lm-dark);
}

.lm_check-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: var(--lm-border-radius);
    box-shadow: var(--lm-shadow);
}

.lm_check-form-group {
    margin-bottom: 25px;
}

.lm_check-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lm_check-form-group label i {
    color: var(--lm-primary);
}

.lm_check-form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--lm-border-radius);
    font-family: 'Work Sans', sans-serif;
    transition: var(--lm-transition);
}

.lm_check-form-group input:focus {
    border-color: var(--lm-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
}

.lm_check-hint {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    color: #666;
}

.lm_check-form-agree {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lm_check-form-agree input {
    width: auto;
}

.lm_check-form-agree label {
    margin-bottom: 0;
    font-weight: normal;
}

.lm_check-form-agree a {
    color: var(--lm-primary);
    text-decoration: underline;
}

.lm_check-submit-btn {
    background-color: var(--lm-primary);
    color: var(--lm-text-light);
    padding: 15px 30px;
    width: 100%;
    border-radius: var(--lm-border-radius);
    font-weight: bold;
    transition: var(--lm-transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.lm_check-submit-btn:hover {
    background-color: darken(#e63946, 10%);
    transform: translateY(-3px);
}

.lm_check-submit-btn i {
    font-size: 1.2rem;
}

.lm_faq-section {
    padding: 100px 20px;
    background-color: white;
}

.lm_faq-container {
    max-width: 1682px;
    margin: 0 auto;
}

.lm_faq-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--lm-dark);
}

.lm_faq-categories {
    display: flex;
    gap: 40px;
}

.lm_faq-category {
    flex: 1;
}

.lm_faq-category h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--lm-dark);
}

.lm_faq-category h3 i {
    color: var(--lm-primary);
}

.lm_faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: var(--lm-border-radius);
    overflow: hidden;
}

.lm_faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background-color: var(--lm-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: var(--lm-transition);
}

.lm_faq-question:hover {
    background-color: #f0f0f0;
}

.lm_faq-question i {
    transition: var(--lm-transition);
}

.lm_faq-question.active i {
    transform: rotate(45deg);
}

.lm_faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.lm_faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.lm_faq-answer p {
    margin-bottom: 0;
}

.lm_testimonials-section {
    padding: 100px 20px;
    background-color: var(--lm-light);
}

.lm_testimonials-container {
    max-width: 1682px;
    margin: 0 auto;
}

.lm_testimonials-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--lm-dark);
}

.lm_testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.lm_testimonial-card {
    min-width: 350px;
    background-color: white;
    border-radius: var(--lm-border-radius);
    padding: 30px;
    box-shadow: var(--lm-shadow);
    scroll-snap-align: start;
    transition: var(--lm-transition);
}

.lm_testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.lm_testimonial-avatar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.lm_testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.lm_testimonial-rating {
    display: flex;
    gap: 5px;
}

.lm_testimonial-rating i {
    color: var(--lm-primary);
}

.lm_testimonial-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--lm-dark);
}

.lm_testimonial-content p {
    margin-bottom: 15px;
    font-style: italic;
}

.lm_testimonial-date {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.lm_responsibility-section {
    padding: 100px 20px;
    background-color: var(--lm-dark);
    color: var(--lm-text-light);
}

.lm_responsibility-container {
    max-width: 1682px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.lm_responsibility-content {
    flex: 1;
}

.lm_responsibility-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.lm_responsibility-content h2 i {
    color: var(--lm-primary);
}

.lm_responsibility-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.9;
}

.lm_responsibility-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.lm_responsibility-partners a {
    transition: var(--lm-transition);
}

.lm_responsibility-partners a:hover {
    transform: translateY(-5px);
}

.lm_responsibility-partners img {
    width: 190px;
    height: 60px;
    text-align: center;
    background-color: #28a745;
    padding: .5rem;
    border-radius: var(--lm-border-radius);
    transition: var(--lm-transition);
}

.lm_responsibility-partners img:hover {
    transform: translateY(-5px);
}

.lm_responsibility-image {
    flex: 1;
    position: relative;
    border-radius: var(--lm-border-radius);
    overflow: hidden;
    box-shadow: var(--lm-shadow);
}

.lm_responsibility-image img {
    width: 100%;
    height: auto;
    transition: var(--lm-transition);
}

.lm_responsibility-image:hover img {
    transform: scale(1.05);
}

.lm_responsibility-age {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--lm-primary);
    color: var(--lm-text-light);
    padding: 10px 20px;
    border-radius: var(--lm-border-radius);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}

.lm_responsibility-age i {
    font-size: 1.2rem;
}

.lm_contact-section {
    padding: 100px 20px;
    background-color: white;
}

.lm_contact-container {
    max-width: 1682px;
    margin: 0 auto;
}

.lm_contact-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--lm-dark);
}

.lm_contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--lm-light);
    padding: 40px;
    border-radius: var(--lm-border-radius);
    box-shadow: var(--lm-shadow);
}

.lm_contact-form-group {
    margin-bottom: 25px;
}

.lm_contact-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lm_contact-form-group label i {
    color: var(--lm-primary);
}

.lm_contact-form-group input,
.lm_contact-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--lm-border-radius);
    font-family: 'Work Sans', sans-serif;
    transition: var(--lm-transition);
}

.lm_contact-form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.lm_contact-form-group input:focus,
.lm_contact-form-group textarea:focus {
    border-color: var(--lm-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
}

.lm_contact-hint {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    color: #666;
}

.lm_contact-form-agree {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lm_contact-form-agree input {
    width: auto;
}

.lm_contact-form-agree label {
    margin-bottom: 0;
    font-weight: normal;
}

.lm_contact-form-agree a {
    color: var(--lm-primary);
    text-decoration: underline;
}

.lm_contact-submit-btn {
    background-color: var(--lm-primary);
    color: var(--lm-text-light);
    padding: 15px 30px;
    width: 100%;
    border-radius: var(--lm-border-radius);
    font-weight: bold;
    transition: var(--lm-transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.lm_contact-submit-btn:hover {
    background-color: darken(#e63946, 10%);
    transform: translateY(-3px);
}

.lm_contact-submit-btn i {
    font-size: 1.2rem;
}

.lm_footer-container {
    background-color: var(--lm-dark);
    color: var(--lm-text-light);
    padding: 60px 20px 30px;
}

.lm_footer-wrapper {
    max-width: 1682px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.lm_footer-brand {
    flex: 1;
    min-width: 250px;
}

.lm_footer-brand img {
    height: 50px;
    margin-bottom: 15px;
}

.lm_footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.lm_footer-brand p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.lm_footer-links {
    flex: 1;
    min-width: 250px;
}

.lm_footer-link-list {
    list-style: none;
}

.lm_footer-link-list li {
    margin-bottom: 15px;
}

.lm_footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--lm-transition);
    opacity: 0.8;
}

.lm_footer-link:hover {
    opacity: 1;
    color: var(--lm-primary);
}

.lm_footer-link i {
    font-size: 1.2rem;
}

.lm_footer-contact {
    flex: 1;
    min-width: 250px;
}

.lm_footer-contact h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lm_footer-contact h4 i {
    color: var(--lm-primary);
}

.lm_footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.lm_footer-contact p i {
    width: 20px;
    color: var(--lm-primary);
}

.lm_ticket-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--lm-transition);
}

.lm_ticket-modal.active {
    opacity: 1;
    visibility: visible;
}

.lm_ticket-modal-content {
    background-color: white;
    border-radius: var(--lm-border-radius);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: var(--lm-transition);
}

.lm_ticket-modal.active .lm_ticket-modal-content {
    transform: translateY(0);
}

.lm_ticket-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: #666;
    transition: var(--lm-transition);
}

.lm_ticket-modal-close:hover {
    color: var(--lm-primary);
    transform: rotate(90deg);
}

.lm_ticket-modal-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--lm-dark);
}

.lm_ticket-modal-content h2 i {
    color: var(--lm-primary);
}

.lm_ticket-form-group {
    margin-bottom: 25px;
}

.lm_ticket-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lm_ticket-form-group label i {
    color: var(--lm-primary);
}

.lm_ticket-form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--lm-border-radius);
    font-family: 'Work Sans', sans-serif;
    transition: var(--lm-transition);
}

.lm_ticket-form-group input:focus {
    border-color: var(--lm-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
}

.lm_ticket-hint {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    color: #666;
}

.lm_ticket-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.lm_ticket-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--lm-light);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    transition: var(--lm-transition);
    border: 2px solid #ddd;
}

.lm_ticket-number:hover {
    background-color: #f0f0f0;
}

.lm_number-error {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--lm-primary);
    margin: 8px 0;
    padding: 8px 12px;
    background-color: #fff0f0;
    border-radius: 4px;
    animation: fadeIn 0.3s ease;
}

.lm_ticket-number.selected {
    background-color: var(--lm-primary);
    color: white;
    border-color: var(--lm-primary);
}

.lm_ticket-number-hint {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: var(--lm-border-radius);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.lm_ticket-number-hint i {
    color: var(--lm-primary);
}

.lm_form-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #666;
    background-color: #f8f9fa;
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--lm-transition);
}

.lm_form-hint i {
    color: var(--lm-primary);
    font-size: 1rem;
}

.lm_ticket-number {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--lm-light);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    transition: var(--lm-transition);
    border: 2px solid #ddd;
}

.lm_ticket-number span {
    position: relative;
    z-index: 1;
}

.lm_ticket-number.selected {
    background-color: var(--lm-primary);
    color: white;
    border-color: var(--lm-primary);
    transform: scale(1.1);
}

.lm_ticket-number.selected::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--lm-primary);
    border-radius: 50%;
    animation: lm_pulse 1.5s infinite;
}

@keyframes lm_pulse {
    0% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.5; transform: scale(1); }
}

.lm_ticket-number-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.lm_ticket-clear-btn, .lm_ticket-random-btn {
    flex: 1;
    padding: 10px;
    border-radius: var(--lm-border-radius);
    font-weight: 500;
    transition: var(--lm-transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.lm_ticket-clear-btn {
    background-color: #f8f9fa;
    color: #666;
}

.lm_ticket-random-btn {
    background-color: var(--lm-dark);
    color: white;
}

.lm_ticket-clear-btn:hover {
    background-color: #e9ecef;
}

.lm_ticket-random-btn:hover {
    background-color: #14213d;
}

.lm_ticket-form-agree {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lm_ticket-form-agree input {
    width: auto;
}

.lm_ticket-form-agree label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.9rem;
}

.lm_ticket-form-agree a {
    color: var(--lm-primary);
    text-decoration: underline;
}

.lm_ticket-submit-btn {
    background-color: var(--lm-primary);
    color: var(--lm-text-light);
    padding: 15px;
    width: 100%;
    border-radius: var(--lm-border-radius);
    font-weight: bold;
    transition: var(--lm-transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.lm_ticket-submit-btn:hover {
    background-color: darken(#e63946, 10%);
    transform: translateY(-3px);
}

.lm_ticket-submit-btn i {
    font-size: 1.2rem;
}

.lm_success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--lm-transition);
}

.lm_success-modal.active {
    opacity: 1;
    visibility: visible;
}

.lm_success-modal-content {
    background-color: white;
    border-radius: var(--lm-border-radius);
    width: 100%;
    max-width: 500px;
    padding: 40px;
    text-align: center;
    transform: translateY(20px);
    transition: var(--lm-transition);
}

.lm_success-modal.active .lm_success-modal-content {
    transform: translateY(0);
}

.lm_success-modal-content i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.lm_success-modal-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--lm-dark);
}

.lm_success-modal-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.lm_success-modal-close {
    background-color: var(--lm-primary);
    color: white;
    padding: 12px 30px;
    border-radius: var(--lm-border-radius);
    font-weight: bold;
    transition: var(--lm-transition);
}

.lm_success-modal-close:hover {
    background-color: darken(#e63946, 10%);
    transform: translateY(-3px);
}

.lm_scroll-top {
    position: fixed;
    bottom: 224px;
    right: 17px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--lm-primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--lm-transition);
    z-index: 99;
    box-shadow: var(--lm-shadow);
}

.lm_scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.lm_scroll-top:hover {
    background-color: darken(#e63946, 10%);
    transform: translateY(-5px);
}

@keyframes lm_fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes lm_fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .lm_welcome-content h2 {
        font-size: 3rem;
    }
    
    .lm_welcome-feature {
        width: calc(50% - 15px);
    }
    
    .lm_about-container {
        flex-direction: column;
    }
    
    .lm_about-image {
        order: -1;
    }
    
    .lm_feature-card {
        width: calc(50% - 15px);
    }
    
    .lm_play-step {
        width: calc(50% - 15px);
    }
    
    .lm_faq-categories {
        flex-direction: column;
    }
    
    .lm_responsibility-container {
        flex-direction: column;
    }
    
    .lm_responsibility-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .lm_header-wrapper {
        flex-direction: column;
    }
    
    .lm_header-navigation {
        width: 100%;
    }
    
    .lm_header-nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .lm_welcome-content h2 {
        font-size: 2.5rem;
    }
    
    .lm_timer-unit {
        min-width: 80px;
    }
    
    .lm_timer-unit span {
        font-size: 2rem;
    }
    
    .lm_features-grid, .lm_play-steps {
        gap: 20px;
    }
    
    .lm_feature-card, .lm_play-step {
        width: 100%;
    }
    
    .lm_testimonial-card {
        min-width: 300px;
    }
}

@media (max-width: 480px) {
    .lm_welcome-content h2 {
        font-size: 2rem;
    }
    
    .lm_welcome-feature {
        width: 100%;
    }
    
    .lm_timer-display {
        gap: 10px;
    }
    
    .lm_timer-unit {
        min-width: 60px;
        padding: 10px;
    }
    
    .lm_timer-unit span {
        font-size: 1.5rem;
    }
    
    .lm_timer-unit small {
        font-size: 0.8rem;
    }
    
    .lm_about-highlights {
        flex-direction: column;
    }
    
    .lm_ticket-number {
        width: 35px;
        height: 35px;
    }
    
    .lm_ticket-number-actions {
        flex-direction: column;
    }
    
    .lm_footer-wrapper {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 320px) {
    .lm_welcome-content h2 {
        font-size: 1.8rem;
    }
    
    .lm_timer-unit {
        min-width: 50px;
    }
    
    .lm_timer-unit span {
        font-size: 1.2rem;
    }
    
    .lm_header-nav-list {
        gap: 10px;
    }
    
    .lm_header-nav-link {
        padding: 5px 8px;
    }
    
    .lm_ticket-modal-content {
        padding: 20px;
    }
}

.lm_page-privacy-container {
    max-width: 1682px;
    margin: 0 auto;
    padding: 120px 20px 60px;
    font-family: 'Work Sans', sans-serif;
    color: #333;
}

.lm_page-privacy-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.lm_page-privacy-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.lm_page-privacy-header i {
    font-size: 4rem;
    color: #d4af37;
    opacity: 0.7;
}

.lm_page-privacy-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.lm_page-privacy-item {
    width: calc(33.333% - 30px);
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lm_page-privacy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.lm_page-privacy-item i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 15px;
    display: block;
}

.lm_page-privacy-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
}

.lm_page-privacy-item p {
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .lm_page-privacy-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .lm_page-privacy-header h2 {
        font-size: 2.5rem;
    }
    
    .lm_page-privacy-header i {
        font-size: 3rem;
    }
    
    .lm_page-privacy-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .lm_page-privacy-header h2 {
        font-size: 2rem;
    }
    
    .lm_page-privacy-container {
        padding: 100px 15px 40px;
    }
}

@media (max-width: 320px) {
    .lm_page-privacy-header h2 {
        font-size: 1.8rem;
    }
    
    .lm_page-privacy-item {
        padding: 20px 15px;
    }
}

.lm_page-terms-container {
    max-width: 1682px;
    margin: 0 auto;
    padding: 120px 20px 60px;
    font-family: 'Work Sans', sans-serif;
    color: #333;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.lm_page-terms-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.lm_page-terms-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: #8b4513;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.lm_page-terms-header i {
    font-size: 4rem;
    color: #8b4513;
    opacity: 0.7;
    animation: pulse 2s infinite;
}

.lm_page-terms-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.lm_page-terms-item {
    width: calc(33.333% - 30px);
    margin-bottom: 40px;
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #8b4513;
    transition: all 0.3s ease;
}

.lm_page-terms-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-left: 4px solid #d4af37;
}

.lm_page-terms-item i {
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 15px;
    display: block;
}

.lm_page-terms-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #5a3921;
}

.lm_page-terms-item p {
    line-height: 1.6;
    font-size: 1rem;
    color: #555;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 1024px) {
    .lm_page-terms-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .lm_page-terms-header h2 {
        font-size: 2.5rem;
    }
    
    .lm_page-terms-header i {
        font-size: 3rem;
    }
    
    .lm_page-terms-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .lm_page-terms-header h2 {
        font-size: 2rem;
    }
    
    .lm_page-terms-container {
        padding: 100px 15px 40px;
    }
}

@media (max-width: 320px) {
    .lm_page-terms-header h2 {
        font-size: 1.8rem;
    }
    
    .lm_page-terms-item {
        padding: 20px 15px;
    }
    
    .lm_page-terms-item i {
        font-size: 2rem;
    }
}

.lm_page-cookies-container {
    max-width: 1682px;
    margin: 0 auto;
    padding: 120px 20px 60px;
    font-family: 'Work Sans', sans-serif;
    color: #333;
    background-color: #f5f5f5;
}

.lm_page-cookies-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.lm_page-cookies-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: #4b5320;
    margin-bottom: 20px;
}

.lm_page-cookies-header i {
    font-size: 4rem;
    color: #4b5320;
    opacity: 0.7;
    animation: rotate 8s linear infinite;
}

.lm_page-cookies-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.lm_page-cookies-item {
    width: calc(33.333% - 30px);
    margin-bottom: 40px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.lm_page-cookies-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.lm_page-cookies-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4b5320, #8ba888);
}

.lm_page-cookies-item i {
    font-size: 2.5rem;
    color: #4b5320;
    margin-bottom: 15px;
    display: block;
}

.lm_page-cookies-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #3a4413;
}

.lm_page-cookies-item p {
    line-height: 1.6;
    font-size: 1rem;
    color: #555;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
    .lm_page-cookies-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .lm_page-cookies-header h2 {
        font-size: 2.5rem;
    }
    
    .lm_page-cookies-header i {
        font-size: 3rem;
    }
    
    .lm_page-cookies-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .lm_page-cookies-header h2 {
        font-size: 2rem;
    }
    
    .lm_page-cookies-container {
        padding: 100px 15px 40px;
    }
}

@media (max-width: 320px) {
    .lm_page-cookies-header h2 {
        font-size: 1.8rem;
    }
    
    .lm_page-cookies-item {
        padding: 20px 15px;
    }
    
    .lm_page-cookies-item i {
        font-size: 2rem;
    }
}

.lm_page-responsibly-container {
    max-width: 1682px;
    margin: 0 auto;
    padding: 120px 20px 60px;
    font-family: 'Work Sans', sans-serif;
    color: #333;
    background: linear-gradient(to bottom, #ffffff, #f0f7f4);
}

.lm_page-responsibly-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.lm_page-responsibly-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: #2e7d32;
    margin-bottom: 20px;
}

.lm_page-responsibly-header i {
    font-size: 4rem;
    color: #2e7d32;
    opacity: 0.7;
    animation: bounce 2s ease infinite;
}

.lm_page-responsibly-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.lm_page-responsibly-item {
    width: calc(33.333% - 30px);
    margin-bottom: 40px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(46,125,50,0.1);
    transition: all 0.3s ease;
    border-top: 3px solid #2e7d32;
}

.lm_page-responsibly-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(46,125,50,0.15);
}

.lm_page-responsibly-item i {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 15px;
    display: block;
}

.lm_page-responsibly-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1b5e20;
}

.lm_page-responsibly-item p {
    line-height: 1.6;
    font-size: 1rem;
    color: #555;
}

.lm_page-responsibly-item a {
    color: #2e7d32;
    text-decoration: underline;
    font-weight: bold;
}

.lm_page-responsibly-item a:hover {
    color: #1b5e20;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
    .lm_page-responsibly-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .lm_page-responsibly-header h2 {
        font-size: 2.5rem;
    }
    
    .lm_page-responsibly-header i {
        font-size: 3rem;
    }
    
    .lm_page-responsibly-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .lm_page-responsibly-header h2 {
        font-size: 2rem;
    }
    
    .lm_page-responsibly-container {
        padding: 100px 15px 40px;
    }
}

@media (max-width: 320px) {
    .lm_page-responsibly-header h2 {
        font-size: 1.8rem;
    }
    
    .lm_page-responsibly-item {
        padding: 20px 15px;
    }
    
    .lm_page-responsibly-item i {
        font-size: 2rem;
    }
}

.lm_page-error-container {
    max-width: 1682px;
    margin: 0 auto;
    padding: 150px 20px;
    font-family: 'Work Sans', sans-serif;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.lm_page-error-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.lm_page-error-icon i {
    font-size: 6rem;
    color: #dc3545;
    margin-bottom: 20px;
    animation: shake 0.5s ease-in-out infinite alternate;
}

.lm_page-error-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #343a40;
    margin-bottom: 20px;
}

.lm_page-error-content p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.lm_page-error-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #d4af37;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.lm_page-error-button:hover {
    background-color: #b8972e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

.lm_page-error-button i {
    margin-right: 8px;
}

@keyframes shake {
    from { transform: rotate(-5deg); }
    to { transform: rotate(5deg); }
}

@media (max-width: 768px) {
    .lm_page-error-container {
        padding: 100px 20px;
    }
    
    .lm_page-error-icon i {
        font-size: 5rem;
    }
    
    .lm_page-error-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .lm_page-error-content {
        padding: 30px 20px;
    }
    
    .lm_page-error-icon i {
        font-size: 4rem;
    }
    
    .lm_page-error-content h2 {
        font-size: 1.8rem;
    }
    
    .lm_page-error-content p {
        font-size: 1rem;
    }
    
    .lm_page-error-button {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .lm_page-error-container {
        padding: 80px 15px;
    }
    
    .lm_page-error-content {
        padding: 25px 15px;
    }
}