:root {
    --primary-bg: #f5f9f9;
    --accent-color: #FCB42D;
    --footer-bg: linear-gradient(0deg, rgb(38, 38, 40) 0%, rgb(24, 24, 24) 80%, rgb(24, 24, 24) 100%);
    --slider-bg: linear-gradient(0deg, rgb(38, 38, 40) 0%, rgb(24, 24, 24) 80%, rgb(24, 24, 24) 100%);
    --heading-color: #333;
    --text-color: #707070;
    --white: #ffffff;
    --dark-bg: #262628;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Archivo', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-color);
    line-height: normal;}

p{
    line-height: 1.3;
}

.logo, .footer-logo{
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo span, .footer-logo span{
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-left: 5px;
    text-transform: uppercase;
}

.footer-logo span{
    color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


.playaus-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 12px;
}

.playaus-logo {
    height: 40px;
}

.playaus-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.nav-item {
    margin-left: 25px;
}

.nav-link {
    text-decoration: none;
    color: var(--heading-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-color);
}

.auth-buttons {
    display: flex;
}

.auth-btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-left: 10px;
}

.login-btn {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.login-btn:hover {
    background-color: rgba(252, 180, 45, 0.1);
}

.register-btn {
    background-color: var(--accent-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.register-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.3s;
}

.register-btn:hover::after {
    left: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--heading-color);
    cursor: pointer;
}


.playaus-slider {
    background: url('../media/bg2.jpeg') center no-repeat;
    background-size: cover;
    color: var(--white);
    padding: 140px 0 100px;
}

.slider-content {
    display: flex;
    align-items: center;
}

.slider-text {
    flex: 1;
    padding-right: 50px;
}

.slider-subtitle {
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.slider-description {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 500px;
}

.slider-image {
    flex: 1;
    text-align: center;
}

.slider-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.slider-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.slider-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(252, 180, 45, 0.2);
}


.playaus-features {
    background-color: var(--accent-color);
    padding: 80px 0;
}

.features-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature-card {
    flex: 0 0 calc(33.333% - 30px);
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}


.playaus-about {
    padding: 80px 0;
}

.section-subtitle {
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.about-content {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.about-text {
    flex: 1;
    padding-right: 50px;
}

.about-description {
    margin-bottom: 30px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
}

.tag-item {
    background-color: rgba(252, 180, 45, 0.1);
    color: var(--accent-color);
    padding: 8px 15px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}


.playaus-lottery {
    padding: 80px 0;
    background-color: rgba(252, 180, 45, 0.05);
}

.lottery-container {
    display: flex;
    align-items: center;
}

.lottery-image {
    flex: 1;
    text-align: center;
    padding-right: 50px;
}

.lottery-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.lottery-content {
    flex: 1;
}

.lottery-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.lottery-features {
    margin-top: 20px;
}

.lottery-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-check {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 20px;
}


.playaus-stats {
    padding: 80px 0;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stat-item {
    flex: 0 0 calc(25% - 30px);
    text-align: center;
    padding: 40px 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-color);
}


.playaus-security {
    padding: 80px 0;
    background-color: rgba(252, 180, 45, 0.05);
}

.security-container {
    display: flex;
    align-items: center;
}

.security-content {
    flex: 1;
    padding-right: 50px;
}

.security-badges {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.badge-item {
    width: 49%;
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.badge-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.badge-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
}


.playaus-process {
    padding: 80px 0;
}

.process-steps {
    margin-top: 50px;
}

.step-item {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 5px;
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.step-description {
    margin-bottom: 15px;
}


.playaus-footer {
    background: var(--footer-bg);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
}

.footer-logo {
    flex: 0 0 100%;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
}

.footer-disclaimer {
    flex: 0 0 100%;
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-disclaimer p{
    margin: 5px 0;
}

.footer-links {
    flex: 0 0 25%;
    margin-bottom: 30px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer-support {
    margin-bottom: 30px;
}

.support-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
}

.support-logo {
    margin-right: 20px;
    margin-bottom: 20px;
}

.support-logo img {
    max-height: 46px;
    height: auto;
    max-width: 180px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.support-logo img:hover {
    opacity: 1;
}

.age-restriction {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.age-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.copyright {
    flex: 0 0 100%;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}


.playaus-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;
}

.modal-content {
    background-color: var(--white);
    border-radius: 8px;
    width: 100%;
    max-width: 540px;
    padding: 30px;
    position: relative;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--heading-color);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--heading-color);
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: var(--accent-color);
    outline: none;
}

.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-input {
    margin-right: 10px;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-submit:hover {
    background-color: #e6a520;
}

.modal-message {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.message-icon {
    font-size: 50px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.message-text {
    font-size: 18px;
    color: var(--heading-color);
}

.breadcrumbs-section {
            background: linear-gradient(0deg, rgb(38, 38, 40) 0%, rgb(24, 24, 24) 80%, rgb(24, 24, 24) 100%);
            padding: 105px 0 30px;
            color: var(--white);
        }

        .breadcrumbs {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

        .breadcrumb-item {
            margin-right: 15px;
            position: relative;
        }

        .breadcrumb-item:not(:last-child)::after {
            content: '/';
            position: absolute;
            right: -10px;
            color: rgba(255, 255, 255, 0.5);
        }

        .breadcrumb-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb-link:hover {
            color: var(--accent-color);
        }

        .breadcrumb-current {
            color: var(--white);
        }

        .page-title {
            font-size: 36px;
            font-weight: 700;
            margin-top: 20px;
        }

        
        .about-section {
            padding: 80px 0;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--accent-color);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--heading-color);
        }

        .about-content {
            display: flex;
            align-items: center;
            margin-top: 40px;
        }

        .about-text {
            flex: 1;
            padding-right: 50px;
        }

        .about-description {
            margin-bottom: 30px;
        }

        .tag-list {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .tag-item {
            background-color: rgba(252, 180, 45, 0.1);
            color: var(--accent-color);
            padding: 8px 15px;
            border-radius: 20px;
            margin-right: 10px;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .about-image {
            flex: 1;
            text-align: center;
        }

        .about-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        
        .stats-section {
            padding: 80px 0;
            background-color: rgba(252, 180, 45, 0.05);
        }

        .stats-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .stat-item {
            flex: 0 0 calc(25% - 30px);
            text-align: center;
            padding: 40px 20px;
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .stat-number {
            font-size: 42px;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 16px;
            color: var(--text-color);
        }

        
        .choose-section {
            padding: 80px 0;
            background: var(--accent-color);
        }




        
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }

            .about-text {
                padding-right: 0;
                margin-bottom: 40px;
            }

            .stat-item {
                flex: 0 0 calc(50% - 20px);
            }

            .feature-card {
                flex: 0 0 calc(50% - 20px);
            }
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 28px;
            }

            .section-title {
                font-size: 28px;
            }

            .stat-item, .feature-card {
                flex: 0 0 100%;
            }
        }

 .contact-section {
            padding: 80px 0;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--accent-color);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 40px;
            color: var(--heading-color);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--white);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--heading-color);
        }

        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Archivo', sans-serif;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .form-input:focus {
            border-color: var(--accent-color);
            outline: none;
        }

        textarea.form-input {
            min-height: 150px;
            resize: vertical;
        }

        .form-submit {
            width: 100%;
            padding: 14px;
            background-color: var(--accent-color);
            color: var(--white);
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .form-submit:hover {
            background-color: #e6a520;
        }

        
        .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;
        }

        .thankyou-content {
            background-color: var(--white);
            border-radius: 8px;
            width: 100%;
            max-width: 500px;
            padding: 40px;
            text-align: center;
            animation: modalFadeIn 0.3s;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .thankyou-icon {
            font-size: 50px;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        .thankyou-text {
            font-size: 20px;
            color: var(--heading-color);
            margin-bottom: 20px;
        }

        .close-thankyou {
            padding: 10px 20px;
            background-color: var(--accent-color);
            color: var(--white);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
        }

        
        @media (max-width: 768px) {
            .page-title {
                font-size: 28px;
            }

            .section-title {
                font-size: 28px;
            }

            .contact-form {
                padding: 30px 20px;
            }
        }


.content-section {
    padding: 60px 0;
}

.content-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.content-title {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--heading-color);
}

.content-title:first-child {
    margin-top: 0;
}

.content-list {
    margin: 15px 0 25px 20px;
}

.content-list li {
    margin-bottom: 8px;
}


@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }
    
    .content-wrapper {
        padding: 30px 20px;
    }
    
    .content-title {
        font-size: 20px;
    }
}





































@media (max-width: 992px) {
    .feature-card {
        flex: 0 0 calc(50% - 20px);
    }

    .stat-item {
        flex: 0 0 calc(50% - 20px);
    }

    .about-content, .lottery-container, .security-container {
        flex-direction: column;
    }

    .about-text, .lottery-content, .security-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .lottery-image {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .badge-item {
        flex: 0 0 calc(50% - 15px);
        margin-right: 15px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .playaus-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s;
        z-index: 999;
    }

    .playaus-nav.active {
        transform: translateY(0);
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .nav-item {
        margin-left: 0;
        margin-bottom: 15px;
    }

    .auth-buttons {
        width: 100%;
        flex-direction: column;
    }

    .auth-btn {
        margin-left: 0;
        margin-bottom: 10px;
        text-align: center;
    }

    .slider-content {
        flex-direction: column;
    }

    .slider-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .slider-description {
        max-width: 100%;
    }

    .feature-card {
        flex: 0 0 100%;
    }

    .footer-links, .footer-support {
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .slider-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .stat-item {
        flex: 0 0 100%;
    }

    .badge-item {
        flex: 0 0 100%;
        margin-right: 0;
    }

    .footer-links, .footer-support {
        flex: 0 0 100%;
    }
    .playaus-lottery{
        padding-top: 0;
    }
}