:root {
    --primary-bg: #fff;
    --secondary-bg: #F6F6F6;
    --accent: #D94645;
    --header-footer: #1d1d1d;
    --heading-color: #0d1d31;
    --text-color: #6d7a83;
    --container-width: 1300px;
}

html {
    background: url('../img/back.jpg') center no-repeat;
    background-attachment: fixed;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.wrapper {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    background: #fff;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.2;
}

p {
    line-height: 1.4;
}

.lotto-container {
    max-width: var(--container-width);
    padding: 0 15px;
    box-sizing: border-box;
}


.lotto-header {
    background-color: var(--header-footer);
    padding: 14px 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lotto-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lotto-logo {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lotto-menu {
    display: flex;
    list-style: none;
}

.lotto-menu li {
    margin-left: 30px;
}

.lotto-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.lotto-menu a:hover {
    color: var(--accent);
}

.lotto-auth-buttons {
    display: flex;
    gap: 15px;
}

.lotto-btn {
    padding: 10px 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.lotto-btn-primary {
    background-color: var(--accent);
    color: white;
    position: relative;
    overflow: hidden;
}

.lotto-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(217, 70, 69, 0.3);
}

.lotto-btn-outline {
    border: 1px solid white;
    color: white;
}

.lotto-modal-footer .lotto-btn-outline {
    color: #111;
}

.lotto-modal-footer .lotto-btn-primary {
    border: none;
}

.lotto-btn-outline:hover {
    background-color: white;
    color: var(--header-footer);
}

.lotto-mobile-menu {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}


.lotto-banner {
    background-image: url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 100px;
    color: white;
    text-align: center;
    position: relative;
}

.lotto-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.lotto-banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.lotto-subtitle {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
}

.lotto-title {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: white;
}

.lotto-banner-text {
    font-size: 18px;
    margin-bottom: 30px;
}


.lotto-about {
    padding: 100px 0;
}

.lotto-section-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.lotto-about-content {
    flex: 1;
}

.lotto-about-image {
    flex: 1;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.lotto-about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.lotto-section-title {
    font-family: 'Raleway', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color);
    text-transform: uppercase;
}

.lotto-section-text {
    margin-bottom: 30px;
    font-size: 16px;
}


.lotto-results {
    padding: 20px 0 100px 0;
}

.lotto-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.lotto-table th {
    background-color: #111;
    color: white;
    padding: 15px;
    text-align: left;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
}

.lotto-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.lotto-table tr:hover {
    background-color: #f9f9f9;
}

.lotto-balls {
    display: flex;
    gap: 10px;
}

.lotto-ball {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}


.lotto-overview {
    padding: 20px 0 100px 0;

}

.lotto-overview-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.lotto-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.lotto-feature {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.lotto-feature-icon {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 20px;
}

.lotto-feature-title {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--heading-color);
    text-transform: uppercase;
}


.lotto-why {
    padding: 20px 0 100px 0;
}

.lotto-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.lotto-benefit {
    flex: 1 1 calc(50% - 30px);
    min-width: 300px;
    display: flex;
    gap: 20px;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.lotto-benefit:hover {
    transform: translateY(-10px);
}

.lotto-benefit-icon {
    font-size: 50px;
    color: var(--accent);
    flex-shrink: 0;
}

.lotto-benefit-content h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--heading-color);
    text-transform: uppercase;
}

.lotto-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
}

.lotto-link:hover {
    text-decoration: underline;
}


.lotto-process {
    padding: 10px 0 100px 0;
}

.lotto-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 30px;
}

.lotto-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.lotto-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -30px;
    width: 60px;
    height: 2px;
    background-color: var(--accent);
}

.lotto-step-number {
    width: 70px;
    height: 70px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.lotto-step-title {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--heading-color);
    text-transform: uppercase;
}


.lotto-cta {
    padding: 100px 0;
    text-align: center;
    background: url('../img/cta.jpg') center no-repeat;
    background-size: cover;
}

.lotto-cta .lotto-title {
    color: #fff;
}


.lotto-footer {
    background-color: var(--header-footer);
    color: white;
    padding: 60px 0 30px;
}

.lotto-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.lotto-footer-logo {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.lotto-footer-disclaimer {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.lotto-footer-title {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.lotto-footer-links {
    list-style: none;
}

.lotto-footer-links li {
    margin-bottom: 10px;
}

.lotto-footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.lotto-footer-links a:hover {
    color: white;
}

.lotto-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.lotto-footer-col.cust {
    padding-left: 50px;
}

.lotto-partner {
    max-height: 50px;
    height: auto;
    filter: grayscale(100%) brightness(3);
    opacity: 0.8;
    transition: all 0.3s;
    max-width: 170px;
    width: auto;
}

.lotto-partner:hover {
    filter: none;
    opacity: 1;
}

.lotto-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #aaa;
}


.lotto-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lotto-modal-content {
    background-color: white;
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lotto-modal-header {
    padding: 20px;
    background-color: var(--header-footer);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lotto-modal-title {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
}

.lotto-modal-close {
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.lotto-modal-close:hover {
    color: var(--accent);
}

.lotto-modal-body {
    padding: 30px;
}

.lotto-form-group {
    margin-bottom: 20px;
}

.lotto-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.lotto-form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s;
}

.lotto-form-input:focus {
    border-color: var(--accent);
    outline: none;
}

.lotto-form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lotto-form-checkbox input {
    width: 18px;
    height: 18px;
}

.lotto-modal-footer {
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: right;
}

.lotto-message {
    padding: 20px;
    text-align: center;
    display: none;
}

.lotto-message-success {
    color: #28a745;
}

.lotto-message-error {
    color: #dc3545;
}


.lotto-breadcrumbs {
    background-color: #1d1d1d;
    padding: 60px 0 40px;
    color: white;
    margin-bottom: 60px;
}

.lotto-breadcrumbs-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.lotto-breadcrumbs-links {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.lotto-breadcrumbs-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
}

.lotto-breadcrumbs-links a:hover {
    color: #D94645;
}

.lotto-breadcrumbs-links span {
    color: #aaa;
    font-size: 14px;
}

.lotto-breadcrumbs-title {
    font-family: 'Raleway', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
}


.lotto-contact-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 100px;
}

.lotto-contact-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #F6F6F6;
    padding: 50px;
    border-radius: 8px;
}




.lotto-contact-form {
    display: grid;
    gap: 20px;
}

.lotto-form-group {
    margin-bottom: 15px;
}

.lotto-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #0d1d31;
}

.lotto-form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s;
}

.lotto-form-input:focus {
    border-color: #D94645;
    outline: none;
}

.lotto-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.lotto-form-submit {
    background-color: #D94645;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
}

.lotto-form-submit:hover {
    background-color: #c13a3a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(217, 70, 69, 0.3);
}


.lotto-thankyou-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lotto-thankyou-content {
    background-color: white;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lotto-thankyou-icon {
    font-size: 60px;
    color: #D94645;
    margin-bottom: 20px;
}

.lotto-thankyou-title {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: #0d1d31;
    text-transform: uppercase;
}

.lotto-thankyou-text {
    margin-bottom: 25px;
    color: #6d7a83;
}

.lotto-thankyou-close {
    background-color: #D94645;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.lotto-thankyou-close:hover {
    background-color: #c13a3a;
}


@media (max-width: 768px) {
    .lotto-breadcrumbs-title {
        font-size: 28px;
    }

    .lotto-section-title {
        font-size: 28px;
    }

    .lotto-contact-container {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .lotto-contact-container {
        padding: 20px;
    }
}



.lotto-about-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 100px;
}

.lotto-about-block {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.lotto-about-block:nth-child(even) {
    flex-direction: row-reverse;
}

.lotto-about-content {
    flex: 1;
}

.lotto-about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.lotto-about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.lotto-section-subtitle {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D94645;
    font-weight: 600;
}

.lotto-section-title {
    font-family: 'Raleway', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0d1d31;
    text-transform: uppercase;
}

.lotto-section-text {
    margin-bottom: 30px;
    font-size: 16px;
    color: #6d7a83;
    line-height: 1.7;
}

.lotto-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.lotto-stat {
    text-align: center;
    padding: 40px 20px;
    background-color: #F6F6F6;
    border-radius: 8px;
}

.lotto-stat-number {
    font-family: 'Raleway', sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: #D94645;
    margin-bottom: 15px;
}

.lotto-stat-title {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.lotto-responsibility {
    background-color: #1d1d1d;
    padding: 40px;
    border-radius: 8px;
    color: white;
}

.lotto-responsibility .lotto-section-title {
    color: white;
}

.lotto-responsibility-list {
    margin-top: 30px;
}

.lotto-responsibility-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.lotto-responsibility-icon {
    font-size: 24px;
    color: #D94645;
    flex-shrink: 0;
}


@media (max-width: 992px) {
    .lotto-about-block {
        flex-direction: column;
    }

    .lotto-about-block:nth-child(even) {
        flex-direction: column;
    }

    .lotto-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .lotto-breadcrumbs-title {
        font-size: 28px;
    }

    .lotto-section-title {
        font-size: 28px;
    }

    .lotto-about-block {
        margin-bottom: 60px;
    }

    .lotto-responsibility {
        padding: 30px;
    }
}





.lotto-content-section {
    padding: 30px;
}



.lotto-policy-block {
    margin-bottom: 40px;
}

.lotto-policy-title {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0d1d31;
    text-transform: uppercase;
}

.lotto-policy-text {
    margin-bottom: 15px;
    color: #6d7a83;
    line-height: 1.7;
}

.lotto-policy-list {
    margin-left: 20px;
    color: #6d7a83;
}

.lotto-policy-list li {
    margin-bottom: 10px;
}

.lotto-contact-info {
    margin-top: 50px;
    padding: 30px;
    background-color: #F6F6F6;
    border-radius: 8px;
}

.lotto-contact-title {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: #0d1d31;
    text-transform: uppercase;
}


@media (max-width: 768px) {
    .lotto-policy-title {
        font-size: 20px;
    }

    .lotto-content-section {
        padding: 40px 0 60px;
    }

    .lotto-contact-info {
        padding: 20px;
    }
}










































@media (max-width: 992px) {
    .lotto-section-inner {
        flex-direction: column;
    }

    .lotto-about-image {
        order: -1;
        margin-bottom: 40px;
    }

    .lotto-steps {
        flex-direction: column;
        gap: 50px;
    }

    .lotto-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .lotto-menu {
        display: none;
        position: absolute;
        left: 0;
        top: 70px;
        width: 100%;
        z-index: 2;
        background: #1d1d1d;
        padding: 12px 0;
    }

    .lotto-menu li {
        margin: 10px 0 10px 20px;
    }

    .lotto-mobile-menu {
        display: block;
    }

    .lotto-banner {
        padding: 150px 0 80px;
    }

    .lotto-title {
        font-size: 36px;
    }

    .lotto-benefit {
        flex: 1 1 100%;
    }

    .scrolling {
        overflow-x: scroll;
    }

    .scrolling table {
        width: 720px;
    }
}

@media (max-width: 576px) {
    .lotto-banner {
        padding: 60px 0 60px;
    }

    .lotto-title {
        font-size: 28px;
    }

    .lotto-subtitle {
        font-size: 14px;
    }

    .lotto-section-title {
        font-size: 28px;
    }

    .lotto-auth-buttons {
        display: none;
    }

    .lotto-footer-col.cust {
        padding-left: 0;
    }
}