:root {
    --accent-gradient: linear-gradient(135deg, #ff6b6b, #ffa502, #7bed9f, #70a1ff);
    --text-light: #ffffff;
    --text-dark: #2f3542;
    --error-color: #ff4757;
    --success-color: #2ed573;
    --link-color: #70a1ff;
    --border-error: #ff4757;
    --animation-speed: 0.4s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    background-color: #f1f2f6;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Amatic SC', cursive;
    font-weight: 700;
}

.dml-header-container {
    background: var(--accent-gradient);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.dml-header-wrapper {
    max-width: 1650px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.dml-header-logo {
    display: flex;
    flex-direction: column;
}

.dml-header-title {
    font-size: 3rem;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.dml-header-subtitle {
    font-size: 1rem;
    margin-top: -0.5rem;
    align-self: flex-end;
    font-weight: 600;
}

.dml-header-nav {
    display: flex;
    align-items: center;
}

.dml-header-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.dml-header-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.dml-header-link:hover {
    transform: translateY(-3px);
}

.dml-header-actions {
    display: flex;
    gap: 1rem;
}

.dml-header-register {
    background-color: var(--text-light);
    color: var(--text-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dml-header-register:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.dml-header-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0;
}

.dml-header-warning {
    max-width: 1650px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.dml-registration-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity var(--animation-speed) ease;
}

.dml-registration-overlay.active {
    opacity: 1;
}

.dml-registration-container {
    background-color: var(--text-light);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: row-reverse;
    max-width: 750px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.dml-registration-logo {
    background: var(--accent-gradient);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-light);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
}

.dml-registration-logo h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.dml-registration-logo p {
    text-align: center;
    font-weight: 600;
}

.dml-registration-form {
    padding: 2rem;
    width: 60%;
    position: relative;
}

.dml-registration-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform var(--animation-speed) ease;
}

.dml-registration-close:hover {
    transform: rotate(90deg) scale(1.2);
}

.dml-registration-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.dml-registration-field {
    margin-bottom: 1.5rem;
    position: relative;
}

.dml-registration-error {
    color: var(--error-color);
    font-size: 0.8rem;
    min-height: 1rem;
    margin-bottom: 0.3rem;
}

.dml-registration-input, .dml-registration-select {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 2px solid #dfe4ea;
    border-radius: 5px;
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s ease;
}

.dml-registration-input:focus, .dml-registration-select:focus {
    border-color: var(--link-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(112, 161, 255, 0.3);
}

.dml-registration-icon {
    position: absolute;
    left: 1rem;
    top: 65%;
    transform: translateY(-65%);
    color: #747d8c;
}

.dml-registration-checkboxes {
    margin: 2rem 0;
}

.dml-registration-checkbox-group {
    margin-bottom: 1rem;
}

.dml-registration-checkbox-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dml-registration-checkbox {
    appearance: none;
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #dfe4ea;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.dml-registration-checkbox:checked {
    background-color: var(--link-color);
    border-color: var(--link-color);
}

.dml-registration-checkbox:checked::after {
    content: '\f00c';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.7rem;
}

.dml-registration-checkbox-label {
    font-size: 0.9rem;
    cursor: pointer;
}

.dml-registration-link {
    color: var(--link-color);
    text-decoration: none;
    font-weight: 600;
}

.dml-registration-link:hover {
    text-decoration: underline;
}

.dml-registration-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent-gradient);
    background-size: 200% 200%;
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    font-family: 'Amatic SC', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dml-registration-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    animation: gradientBG 3s ease infinite;
}

.dml-registration-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #dfe4ea;
}

.dml-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--animation-speed) ease;
}

.dml-success-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.dml-success-container {
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: slideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slideUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.dml-success-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform var(--animation-speed) ease;
}

.dml-success-close:hover {
    transform: rotate(90deg) scale(1.2);
}

.dml-success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.dml-success-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.dml-success-message {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.dml-success-button {
    padding: 0.75rem 2rem;
    background: var(--accent-gradient);
    background-size: 200% 200%;
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dml-success-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    animation: gradientBG 3s ease infinite;
}

@media (max-width: 1280px) {
    .dml-header-wrapper {
        padding: 1rem;
    }
    
    .dml-header-menu {
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .dml-header-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .dml-header-nav {
        width: 100%;
        justify-content: center;
    }
    
    .dml-header-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .dml-registration-container {
        flex-direction: column-reverse;
        max-width: 90%;
    }
    
    .dml-registration-logo, .dml-registration-form {
        width: 100%;
    }
    
    .dml-registration-logo {
        padding: 1.5rem;
    }
    
    .dml-header-title {
        font-size: 2.5rem;
    }
    
    .dml-header-menu {
        gap: 0.75rem;
    }
    
    .dml-header-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .dml-header-menu {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .dml-header-title {
        font-size: 2rem;
    }
    
    .dml-registration-form {
        padding: 1.5rem;
    }
    
    .dml-registration-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 320px) {
    .dml-header-title {
        font-size: 1.8rem;
    }
    
    .dml-header-subtitle {
        font-size: 0.8rem;
    }
    
    .dml-registration-form {
        padding: 1rem;
    }
    
    .dml-registration-input, .dml-registration-select {
        padding-left: 2rem;
    }
}

:root {
    --accent-gradient: linear-gradient(135deg, #ff6b6b, #ffa502, #7bed9f, #70a1ff);
    --text-light: #ffffff;
    --text-dark: #2f3542;
    --error-color: #ff4757;
    --success-color: #2ed573;
    --link-color: #70a1ff;
    --border-error: #ff4757;
    --animation-speed: 0.4s;
    --section-padding: 5rem 2rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    background-color: #f1f2f6;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Amatic SC', cursive;
    font-weight: 700;
}


.dml-welcome-container {
    background: var(--accent-gradient);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-light);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.dml-welcome-wrapper {
    max-width: 1650px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.dml-welcome-content {
    max-width: 600px;
    padding: 2rem 0;
}

.dml-welcome-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.dml-welcome-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.dml-welcome-button {
    background-color: var(--text-light);
    color: var(--text-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dml-welcome-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.dml-welcome-image {
    width: 50%;
    height: 500px;
    background-image: url('../dml-images/dml-bg-img-1.png');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(-5deg); }
    100% { transform: translateY(0) rotate(-5deg); }
}

.dml-about-container {
    padding: var(--section-padding);
    background-color: var(--text-light);
}

.dml-about-wrapper {
    max-width: 1650px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.dml-about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dml-about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.dml-about-image:hover img {
    transform: scale(1.05);
}

.dml-about-content {
    flex: 1;
}

.dml-about-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.dml-about-text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.dml-about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.dml-about-stat {
    text-align: center;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    min-width: 150px;
    transition: transform 0.3s ease;
}

.dml-about-stat:hover {
    transform: translateY(-5px);
}

.dml-about-stat i {
    font-size: 2rem;
    color: var(--link-color);
    margin-bottom: 0.5rem;
}

.dml-about-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.dml-about-stat-text {
    font-size: 0.9rem;
    color: #747d8c;
}

.dml-benefits-container {
    padding: var(--section-padding);
    background: var(--accent-gradient);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-light);
}

.dml-benefits-wrapper {
    max-width: 1650px;
    width: 100%;
    margin: 0 auto;
}

.dml-benefits-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.dml-benefits-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #747d8c;
    margin-bottom: 3rem;
}

.dml-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(395px, 1fr));
    max-width: 100%;
    gap: 2rem;
}

.dml-benefit-card {
    width: 100%;
    max-width: 380px;    
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.dml-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dml-benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
    animation: gradientBG 8s ease infinite;
}

.dml-benefit-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.dml-benefit-text {
    color: #747d8c;
    font-size: 1rem;
}

.dml-howtoplay-container {
    padding: var(--section-padding);
    background-color: var(--text-light);
}

.dml-howtoplay-wrapper {
    max-width: 1650px;
    width: 100%;
    margin: 0 auto;
}

.dml-howtoplay-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.dml-howtoplay-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #747d8c;
    margin-bottom: 3rem;
}

.dml-howtoplay-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.dml-howtoplay-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    position: relative;
}

.dml-howtoplay-number {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Amatic SC', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    flex-shrink: 0;
    animation: gradientBG 8s ease infinite;
}

.dml-howtoplay-content {
    flex: 1;
}

.dml-howtoplay-step-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.dml-howtoplay-step-text {
    color: #747d8c;
    font-size: 1rem;
}

.dml-howtoplay-image {
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.dml-howtoplay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dml-howtoplay-image:hover img {
    transform: scale(1.1);
}

.dml-howtoplay-button {
    display: block;
    margin: 3rem auto 0;
    background: var(--accent-gradient);
    background-size: 200% 200%;
    color: var(--text-light);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dml-howtoplay-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    animation: gradientBG 3s ease infinite;
}

.dml-testimonials-container {
    padding: var(--section-padding);
    background: var(--accent-gradient);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-light);
}

.dml-testimonials-wrapper {
    max-width: 1650px;
    width: 100%;
    margin: 0 auto;
}

.dml-testimonials-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.dml-testimonials-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #747d8c;
    margin-bottom: 3rem;
}

.dml-testimonials-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.dml-testimonials-slider::-webkit-scrollbar {
    display: none;
}

.dml-testimonial-card {
    min-width: 350px;
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

.dml-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dml-testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 5px solid #f1f2f6;
}

.dml-testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dml-testimonial-content {
    text-align: center;
}

.dml-testimonial-name {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.dml-testimonial-location {
    color: #747d8c;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.dml-testimonial-rating {
    color: #ffa502;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.dml-testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #57606f;
}

.dml-testimonial-amount {
    font-weight: 700;
    color: var(--link-color);
}

.dml-faq-container {
    padding: var(--section-padding);
    background-color: var(--text-light);
}

.dml-faq-wrapper {
    max-width: 1650px;
    width: 100%;
    margin: 0 auto;
}

.dml-faq-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.dml-faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #747d8c;
    margin-bottom: 3rem;
}

.dml-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.dml-faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dml-faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border: none;
    text-align: left;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dml-faq-question:hover {
    background-color: #e8e9eb;
}

.dml-faq-question i {
    transition: transform 0.3s ease;
}

.dml-faq-question.active i {
    transform: rotate(45deg);
}

.dml-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--text-light);
}

.dml-faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #57606f;
}

.dml-responsible-container {
    padding: var(--section-padding);
    background: var(--accent-gradient);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-light);
}

.dml-responsible-wrapper {
    max-width: 1650px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.dml-responsible-content {
    flex: 1;
}

.dml-responsible-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.dml-responsible-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.dml-responsible-list {
    list-style: none;
    margin-bottom: 2rem;
}

.dml-responsible-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.dml-responsible-list i {
    font-size: 1.5rem;
    color: #7bed9f;
}

.dml-responsible-contact {
    font-size: 1.1rem;
    margin-top: 2rem;
}

.dml-responsible-contact a {
    color: var(--text-light);
    text-decoration: underline;
    font-weight: 600;
}

.dml-responsible-linksresponsible {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.dml-responsible-linksresponsible img {
    background-color: #fff;
    padding: 8px;
    border-radius: 4px;
}

.dml-responsible-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.dml-responsible-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.dml-responsible-image:hover img {
    transform: scale(1.05);
}

.dml-footer-container {
    background-color: #2f3542;
    color: #dfe4ea;
    padding: 4rem 2rem 2rem;
}

.dml-footer-wrapper {
    max-width: 1650px;
    width: 100%;
    margin: 0 auto;
}

.dml-footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 3rem;
}

.dml-footer-logo {
    flex: 1;
    min-width: 250px;
}

.dml-footer-title {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.dml-footer-subtitle {
    font-size: 1rem;
    color: #a4b0be;
}

.dml-footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.dml-footer-column {
    min-width: 150px;
}

.dml-footer-heading {
    font-family: 'Amatic SC', cursive;
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.dml-footer-list {
    list-style: none;
}

.dml-footer-list li {
    margin-bottom: 0.75rem;
}

.dml-footer-list a {
    color: #a4b0be;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dml-footer-list a:hover {
    color: var(--text-light);
}

.dml-footer-list i {
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.dml-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #3d4454;
}

.dml-footer-social {
    display: flex;
    gap: 1rem;
}

.dml-footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #3d4454;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.dml-footer-social-link:hover {
    background: var(--accent-gradient);
    background-size: 200% 200%;
    transform: translateY(-3px);
    animation: gradientBG 3s ease infinite;
}

.dml-footer-copyright {
    font-size: 0.9rem;
    color: #a4b0be;
}

.dml-footer-payment {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: #a4b0be;
}

.dml-ageverify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.dml-ageverify-container {
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    text-align: center;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.dml-ageverify-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.dml-ageverify-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #57606f;
}

.dml-ageverify-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.dml-ageverify-confirm {
    padding: 1rem 2rem;
    background: var(--accent-gradient);
    background-size: 200% 200%;
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dml-ageverify-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    animation: gradientBG 3s ease infinite;
}

.dml-ageverify-exit {
    padding: 1rem 2rem;
    background-color: #ff4757;
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dml-ageverify-exit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.dml-ageverify-warning {
    font-size: 0.9rem;
    color: #747d8c;
    margin-top: 2rem;
    font-style: italic;
}

.dml-cookies-overlay {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 600px;
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 952;
    animation: slideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.dml-cookies-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.dml-cookies-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #57606f;
}

.dml-cookies-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dml-cookies-accept {
    padding: 0.75rem 1.5rem;
    background: var(--accent-gradient);
    background-size: 200% 200%;
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dml-cookies-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    animation: gradientBG 3s ease infinite;
}

.dml-cookies-settings {
    padding: 0.75rem 1.5rem;
    background-color: #f1f2f6;
    color: var(--text-dark);
    border: none;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dml-cookies-settings:hover {
    background-color: #dfe4ea;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.dml-cookies-link {
    font-size: 0.9rem;
    color: var(--link-color);
    text-decoration: none;
    font-weight: 600;
}

.dml-cookies-link:hover {
    text-decoration: underline;
}

.dml-cookies-settings-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.dml-cookies-settings-container {
    background-color: #fff;
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dml-cookies-settings-content {
    padding: 30px;
}

.dml-cookies-settings-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.dml-cookies-accordion {
    margin: 20px 0;
}

.dml-cookies-accordion-item {
    border-bottom: 1px solid #eee;
}

.dml-cookies-accordion-item:last-child {
    border-bottom: none;
}

.dml-cookies-accordion-header {
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dml-cookies-accordion-header span {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.dml-cookies-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-right: 20px;
}

.dml-cookies-accordion-content p {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.dml-cookies-accordion-item.active .dml-cookies-accordion-content {
    max-height: 500px;
    padding-bottom: 15px;
}

.dml-cookies-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.dml-cookies-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.dml-cookies-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.dml-cookies-toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.dml-cookies-toggle input:checked + .dml-cookies-toggle-slider {
    background-color: #4CAF50;
}

.dml-cookies-toggle input:checked + .dml-cookies-toggle-slider:before {
    transform: translateX(26px);
}

.dml-cookies-toggle.disabled {
    opacity: 0.6;
}

.dml-cookies-toggle.disabled .dml-cookies-toggle-slider {
    cursor: not-allowed;
}

.dml-cookies-settings-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.dml-cookies-settings-buttons button {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    flex: 1;
}

.dml-cookies-settings-confirm {
    background-color: #333;
    color: white;
}

.dml-cookies-settings-accept-all {
    background-color: #4CAF50;
    color: white;
}

@media (max-width: 1280px) {
    :root {
        --section-padding: 4rem 2rem;
    }
    
    .dml-welcome-title {
        font-size: 3.5rem;
    }
    
    .dml-about-wrapper,
    .dml-responsible-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .dml-welcome-wrapper {
        flex-direction: column;
    }
    
    .dml-welcome-image {
        width: 100%;
        margin-top: 2rem;
    }
    
    .dml-about-wrapper,
    .dml-responsible-wrapper {
        flex-direction: column;
    }
    
    .dml-howtoplay-step {
        flex-direction: column;
        text-align: center;
    }
    
    .dml-howtoplay-number {
        margin-bottom: 1rem;
    }
    
    .dml-howtoplay-image {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 1.5rem;
    }
    
    .dml-welcome-title {
        font-size: 3rem;
    }
    
    .dml-about-stat {
        min-width: 120px;
        padding: 1rem;
    }
    
    .dml-footer-top {
        flex-direction: column;
        gap: 2rem;
    }
    
    .dml-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .dml-footer-social,
    .dml-footer-payment {
        justify-content: center;
    }
    
    .dml-ageverify-buttons {
        flex-direction: column;
    }
    
    .dml-ageverify-confirm,
    .dml-ageverify-exit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 2rem 1rem;
    }
    
    .dml-welcome-title {
        font-size: 2.5rem;
    }

    .dml-about-title,
    .dml-about-text {
        text-align: center;
    }

    .dml-benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    }
    
    .dml-about-stats {
        flex-direction: column;
    }
    
    .dml-testimonial-card {
        min-width: 280px;
    }
    
    .dml-cookies-overlay {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
    
    .dml-cookies-buttons {
        flex-direction: column;
    }
    
    .dml-cookies-accept,
    .dml-cookies-settings {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .dml-welcome-title {
        font-size: 2rem;
    }
    
    .dml-testimonial-card {
        min-width: 240px;
        padding: 1.5rem;
    }
}

.dmlpage-privacy-container {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dmlpage-privacy-header {
    background: var(--accent-gradient);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-light);
    padding: 6rem 2rem 4rem;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 0 0 20px 20px;
}

.dmlpage-privacy-header-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.dmlpage-privacy-main-title {
    font-family: 'Amatic SC', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.dmlpage-privacy-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.dmlpage-privacy-content {
    max-width: 1000px;
    margin: 0 auto 5rem;
}

.dmlpage-privacy-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.dmlpage-privacy-item:hover {
    transform: translateY(-5px);
}

.dmlpage-privacy-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-light);
    animation: gradientBG 8s ease infinite;
}

.dmlpage-privacy-text {
    flex: 1;
}

.dmlpage-privacy-title {
    font-family: 'Amatic SC', cursive;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.dmlpage-privacy-description {
    font-size: 1.1rem;
    color: #57606f;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 1024px) {
    .dmlpage-privacy-main-title {
        font-size: 3.5rem;
    }
    
    .dmlpage-privacy-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .dmlpage-privacy-icon {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .dmlpage-privacy-main-title {
        font-size: 3rem;
    }
    
    .dmlpage-privacy-header {
        padding: 5rem 2rem 3rem;
    }
    
    .dmlpage-privacy-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .dmlpage-privacy-main-title {
        font-size: 2.5rem;
    }
    
    .dmlpage-privacy-subtitle {
        font-size: 1rem;
    }
    
    .dmlpage-privacy-title {
        font-size: 1.8rem;
    }
    
    .dmlpage-privacy-description {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .dmlpage-privacy-container {
        padding: 0 1rem;
    }
    
    .dmlpage-privacy-main-title {
        font-size: 2.2rem;
    }
    
    .dmlpage-privacy-header {
        padding: 4rem 1rem 2rem;
    }
    
    .dmlpage-privacy-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

:root {
    --primary-color: #e04f16;
    --secondary-color: #f8a31b;
    --text-dark: #2f3542;
    --text-light: #ffffff;
    --background-light: #f8f9fa;
    --border-color: #dfe4ea;
    --accent-gradient: linear-gradient(135deg, #e04f16, #f8a31b, #7bed9f, #70a1ff);
    --section-padding: 4rem 2rem;
}

.dmlpage-terms-container {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dmlpage-terms-header {
    background: var(--accent-gradient);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-light);
    padding: 6rem 2rem 4rem;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 0 0 20px 20px;
}

.dmlpage-terms-header-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.dmlpage-terms-main-title {
    font-family: 'Amatic SC', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.dmlpage-terms-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.dmlpage-terms-content {
    max-width: 1000px;
    margin: 0 auto 5rem;
}

.dmlpage-terms-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.dmlpage-terms-item:hover {
    transform: translateY(-5px);
}

.dmlpage-terms-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-light);
    animation: gradientBG 8s ease infinite;
}

.dmlpage-terms-text {
    flex: 1;
}

.dmlpage-terms-title {
    font-family: 'Amatic SC', cursive;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.dmlpage-terms-description {
    font-size: 1.1rem;
    color: #57606f;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 1024px) {
    .dmlpage-terms-main-title {
        font-size: 3.5rem;
    }
    
    .dmlpage-terms-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .dmlpage-terms-icon {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .dmlpage-terms-main-title {
        font-size: 3rem;
    }
    
    .dmlpage-terms-header {
        padding: 5rem 2rem 3rem;
    }
    
    .dmlpage-terms-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .dmlpage-terms-main-title {
        font-size: 2.5rem;
    }
    
    .dmlpage-terms-subtitle {
        font-size: 1rem;
    }
    
    .dmlpage-terms-title {
        font-size: 1.8rem;
    }
    
    .dmlpage-terms-description {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .dmlpage-terms-container {
        padding: 0 1rem;
    }
    
    .dmlpage-terms-main-title {
        font-size: 2.2rem;
    }
    
    .dmlpage-terms-header {
        padding: 4rem 1rem 2rem;
    }
    
    .dmlpage-terms-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

:root {
    --primary-color: #e04f16;
    --secondary-color: #f8a31b;
    --text-dark: #2f3542;
    --text-light: #ffffff;
    --background-light: #f8f9fa;
    --border-color: #dfe4ea;
    --accent-gradient: linear-gradient(135deg, #e04f16, #f8a31b, #7bed9f, #70a1ff);
    --section-padding: 4rem 2rem;
}

.dmlpage-cookie-container {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dmlpage-cookie-header {
    background: var(--accent-gradient);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-light);
    padding: 6rem 2rem 4rem;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 0 0 20px 20px;
}

.dmlpage-cookie-header-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.dmlpage-cookie-main-title {
    font-family: 'Amatic SC', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.dmlpage-cookie-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.dmlpage-cookie-content {
    max-width: 1000px;
    margin: 0 auto 5rem;
}

.dmlpage-cookie-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.dmlpage-cookie-item:hover {
    transform: translateY(-5px);
}

.dmlpage-cookie-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-light);
    animation: gradientBG 8s ease infinite;
}

.dmlpage-cookie-text {
    flex: 1;
}

.dmlpage-cookie-title {
    font-family: 'Amatic SC', cursive;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.dmlpage-cookie-description {
    font-size: 1.1rem;
    color: #57606f;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 1024px) {
    .dmlpage-cookie-main-title {
        font-size: 3.5rem;
    }
    
    .dmlpage-cookie-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .dmlpage-cookie-icon {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .dmlpage-cookie-main-title {
        font-size: 3rem;
    }
    
    .dmlpage-cookie-header {
        padding: 5rem 2rem 3rem;
    }
    
    .dmlpage-cookie-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .dmlpage-cookie-main-title {
        font-size: 2.5rem;
    }
    
    .dmlpage-cookie-subtitle {
        font-size: 1rem;
    }
    
    .dmlpage-cookie-title {
        font-size: 1.8rem;
    }
    
    .dmlpage-cookie-description {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .dmlpage-cookie-container {
        padding: 0 1rem;
    }
    
    .dmlpage-cookie-main-title {
        font-size: 2.2rem;
    }
    
    .dmlpage-cookie-header {
        padding: 4rem 1rem 2rem;
    }
    
    .dmlpage-cookie-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

.dmlpage-responsible-container {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dmlpage-responsible-header {
    background: var(--accent-gradient);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-light);
    padding: 6rem 2rem 4rem;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 0 0 20px 20px;
}

.dmlpage-responsible-header-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.dmlpage-responsible-main-title {
    font-family: 'Amatic SC', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.dmlpage-responsible-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.dmlpage-responsible-content {
    max-width: 1000px;
    margin: 0 auto 5rem;
}

.dmlpage-responsible-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.dmlpage-responsible-item:hover {
    transform: translateY(-5px);
}

.dmlpage-responsible-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-light);
    animation: gradientBG 8s ease infinite;
}

.dmlpage-responsible-text {
    flex: 1;
}

.dmlpage-responsible-title {
    font-family: 'Amatic SC', cursive;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.dmlpage-responsible-description {
    font-size: 1.1rem;
    color: #57606f;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 1024px) {
    .dmlpage-responsible-main-title {
        font-size: 3.5rem;
    }
    
    .dmlpage-responsible-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .dmlpage-responsible-icon {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .dmlpage-responsible-main-title {
        font-size: 3rem;
    }
    
    .dmlpage-responsible-header {
        padding: 5rem 2rem 3rem;
    }
    
    .dmlpage-responsible-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .dmlpage-responsible-main-title {
        font-size: 2.5rem;
    }
    
    .dmlpage-responsible-subtitle {
        font-size: 1rem;
    }
    
    .dmlpage-responsible-title {
        font-size: 1.8rem;
    }
    
    .dmlpage-responsible-description {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .dmlpage-responsible-container {
        padding: 0 1rem;
    }
    
    .dmlpage-responsible-main-title {
        font-size: 2.2rem;
    }
    
    .dmlpage-responsible-header {
        padding: 4rem 1rem 2rem;
    }
    
    .dmlpage-responsible-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}