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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f8ff;
    color: #333;
    line-height: 1.6;
}

.x7y9z_container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1a5f3f;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.x7y9z_header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.x7y9z_logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.x7y9z_nav_menu {
    display: none;
}

.x7y9z_nav_menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.x7y9z_nav_menu a:hover {
    color: #ff9800;
}
.x7y9z_burger_btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    width: 30px;
    height: 30px;
}

.x7y9z_burger_icon {
    width: 30px;
    height: 20px;
    position: relative;
    display: block;
}

.x7y9z_burger_icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.x7y9z_burger_icon span:nth-child(1) {
    top: 0px;
}

.x7y9z_burger_icon span:nth-child(2) {
    top: 8px;
}

.x7y9z_burger_icon span:nth-child(3) {
    top: 16px;
}

.x7y9z_mobile_menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: #1a5f3f;
    z-index: 999;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.x7y9z_mobile_menu.active {
    right: 0;
}

.x7y9z_mobile_menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 18px;
}

.x7y9z_close_menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}
.page-header {
    margin-top: 60px;
    padding: 60px 0;
    background: linear-gradient(135deg, #1a5f3f 0%, #4caf50 100%);
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: 20px;
}
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 40px;
    color: #1a5f3f;
}
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info h3 {
    color: #1a5f3f;
    margin-bottom: 20px;
    font-size: clamp(20px, 3vw, 28px);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: #4caf50;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-form {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #1a5f3f;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.error-message {
    color: #f44336;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff9800;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #e68900;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #ff9800;
    color: #fff;
}

.btn-primary:hover {
    background-color: #e68900;
}

.btn-secondary {
    background-color: #607d8b;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #455a64;
}
.hero {
    background: linear-gradient(135deg, #1a5f3f 0%, #4caf50 100%);
    color: #fff;
    text-align: center;
    padding: 100px 0;
    margin-top: 60px;
}

.hero h1 {
    font-size: clamp(32px, 6vw, 56px);
    margin-bottom: 20px;
}

.hero p {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 30px;
    opacity: 0.9;
}

.advantages {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.advantage-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.draws {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.draw-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.draw-info h3 {
    color: #1a5f3f;
    margin-bottom: 5px;
}

.draw-time {
    color: #666;
    font-size: 14px;
}

.jackpot {
    background-color: #ff9800;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-author {
    color: #666;
    font-weight: bold;
}
.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-card h3 {
    color: #1a5f3f;
    margin-bottom: 15px;
    font-size: clamp(20px, 3vw, 28px);
}

.team {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 20px;
}

.member-avatar {
    width: 60px;
    height: 60px;
    background-color: #4caf50;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

.member-info h4 {
    color: #1a5f3f;
    margin-bottom: 5px;
}

.member-info p {
    color: #666;
    margin-bottom: 5px;
}
.responsible-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.responsible-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.responsible-card h3 {
    color: #1a5f3f;
    margin-bottom: 20px;
    font-size: clamp(20px, 3vw, 28px);
}

.tools {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tool-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.tool-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.help-resources {
    margin-top: 40px;
}

.resource-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.resource-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.resource-item h4 {
    color: #1a5f3f;
    margin-bottom: 10px;
}
.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.privacy-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.privacy-section h3 {
    color: #1a5f3f;
    margin-bottom: 15px;
    font-size: clamp(20px, 3vw, 28px);
}

.privacy-section ul {
    margin-left: 20px;
    margin-top: 10px;
}

.privacy-section li {
    margin-bottom: 8px;
}
.disclaimer {
    background-color: #f0f0f0;
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.disclaimer a {
    color: #1a5f3f;
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}
footer {
    background-color: #1a5f3f;
    color: #fff;
    padding: 40px 0;
}

.x7y9z_footer_content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.x7y9z_footer_links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.x7y9z_footer_links a {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    background-color: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.x7y9z_footer_links a:hover {
    background-color: rgba(255,255,255,0.2);
}

.x7y9z_footer_logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.x7y9z_footer_logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
    background-color: #2c3e50;
    border-radius: 5px;
    padding: 10px;
}

.x7y9z_footer_logos img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.x7y9z_age_18 {
    display: inline-block;
    background-color: #ff0000;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    margin-left: 10px;
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.popup-overlay.active {
    display: flex;
}

.popup {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.popup h3 {
    color: #1a5f3f;
    margin-bottom: 15px;
}

.popup p {
    margin-bottom: 20px;
    color: #666;
}

.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.age-verification-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.age-verification-popup.active {
    display: flex;
}

.age-popup {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-popup h2 {
    color: #1a5f3f;
    margin-bottom: 20px;
    font-size: 28px;
}

.age-popup p {
    margin-bottom: 30px;
    font-size: 18px;
    color: #666;
}

.age-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.age-buttons .btn {
    padding: 15px 30px;
    font-size: 18px;
}
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1500;
    transform: translateY(150%);
    transition: transform 0.3s ease;
}

.cookie-popup.active {
    transform: translateY(0);
}

.cookie-text {
    margin-bottom: 15px;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 15px;
    font-size: 14px;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}
.australian-pattern {
    background-image: 
        radial-gradient(circle at 20% 80%, #e27b58 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, #4caf50 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, #2196f3 0%, transparent 50%);
    background-size: 200px 200px;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
@media (min-width: 900px) {
    .x7y9z_burger_btn {
        display: none;
    }
    
    .contact-content {
        flex-direction: row;
    }
    
    .contact-info {
        flex: 1;
    }
    
    .contact-form {
        flex: 1;
    }
    
    .x7y9z_footer_content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .advantages {
        flex-direction: row;
        justify-content: center;
    }
    
    .advantage-card {
        flex: 1;
        max-width: 300px;
    }
    
    .draws {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .draw-card {
        flex: 1;
        min-width: 250px;
        max-width: 300px;
    }
    
    .testimonials {
        flex-direction: row;
        justify-content: center;
    }
    
    .testimonial-card {
        flex: 1;
        max-width: 350px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media print {
    header, footer, .popup-overlay, .cookie-popup, .burger-btn, .mobile-menu {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .page-header {
        margin-top: 0;
    }
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
a:focus, button:focus, input:focus, textarea:focus {
    outline: 2px solid #4caf50;
    outline-offset: 2px;
}
@media (prefers-contrast: high) {
    body {
        background-color: #fff;
        color: #000;
    }
    
    header, footer {
        background-color: #000;
        color: #fff;
    }
    
    .btn {
        background-color: #000;
        color: #fff;
        border: 2px solid #fff;
    }
}
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}