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

:root {
    --ng-deep-navy: #1a1a2e;
    --ng-midnight-blue: #16213e;
    --ng-vibrant-purple: #6a3093;
    --ng-electric-blue: #00b4d8;
    --ng-neon-cyan: #00f5d4;
    --ng-light-text: #e6e6e6;
    --ng-medium-text: #b8b8b8;
    --ng-dark-accent: #0f3460;
    --ng-card-bg: rgba(255, 255, 255, 0.05);
    --ng-border-glow: rgba(0, 245, 212, 0.3);
}

body {
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    background: linear-gradient(135deg, var(--ng-deep-navy) 0%, var(--ng-midnight-blue) 50%, var(--ng-dark-accent) 100%);
    color: var(--ng-light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.ng__header_navigation {
    background: rgba(22, 33, 62, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ng-border-glow);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.ng__header_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ng__header_logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ng__header_homelink {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.ng__header_logo {
    width: 100%;
    max-width: 120px;
    height: 100%;
    max-height: 120px;
    transition: transform 0.3s ease;
}

.ng__header_sitename {
    font-family: 'Prata', serif;
    font-size: 1.5rem;
    color: var(--ng-neon-cyan);
}

.ng__header_links-section {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.ng__header_link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--ng-light-text);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.ng__header_link:hover {
    color: var(--ng-neon-cyan);
    border-color: var(--ng-border-glow);
    background: rgba(0, 245, 212, 0.1);
}

.ng__header_link i {
    font-size: 1.2rem;
}

.ng__header_burger {
    display: none;
    background: none;
    border: none;
    color: var(--ng-light-text);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ng__draws_showcase {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem 2rem;
    margin-top: 6%;
    overflow: hidden;
}

.ng__draws_background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(106, 48, 147, 0.1) 25%, 
        rgba(0, 180, 216, 0.1) 50%, 
        rgba(0, 245, 212, 0.1) 75%, 
        transparent 100%);
    animation: ngBackgroundFlow 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes ngBackgroundFlow {
    0%, 100% { transform: translateX(-10%) scale(1.1); }
    50% { transform: translateX(10%) scale(1.2); }
}

.ng__draws_content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.ng__draws_content h1 {
    font-family: 'Prata', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--ng-light-text) 0%, var(--ng-neon-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ngTitleGlow 3s ease-in-out infinite;
}

@keyframes ngTitleGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(0, 245, 212, 0.5); }
    50% { text-shadow: 0 0 30px rgba(106, 48, 147, 0.8); }
}

.ng__draws_highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 1rem 2rem;
    background: var(--ng-card-bg);
    border-radius: 50px;
    border: 1px solid var(--ng-border-glow);
    backdrop-filter: blur(10px);
}

.ng__draws_highlight i {
    font-size: 2rem;
    color: var(--ng-neon-cyan);
}

.ng__draws_highlight p {
    font-size: 1.2rem;
    color: var(--ng-medium-text);
}

.ng__draws_timer-container {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--ng-card-bg);
    border-radius: 20px;
    border: 1px solid var(--ng-border-glow);
    backdrop-filter: blur(15px);
}

.ng__draws_timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.ng__draws_timeunit {
    text-align: center;
    padding: 1rem;
    min-width: 100px;
}

.ng__draws_timevalue {
    display: block;
    font-family: 'Prata', serif;
    font-size: 3rem;
    color: var(--ng-neon-cyan);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 245, 212, 0.5);
    animation: ngTimerPulse 2s ease-in-out infinite;
}

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

.ng__draws_timelabel {
    font-size: 0.9rem;
    color: var(--ng-medium-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ng__draws_actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.ng__draws_primary, .ng__draws_secondary {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ng__draws_primary {
    background: linear-gradient(135deg, var(--ng-vibrant-purple) 0%, var(--ng-electric-blue) 100%);
    color: white;
}

.ng__draws_secondary {
    background: transparent;
    color: var(--ng-light-text);
    border-color: var(--ng-border-glow);
}

.ng__draws_primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(106, 48, 147, 0.4);
}

.ng__draws_secondary:hover {
    background: rgba(0, 245, 212, 0.1);
    transform: translateY(-2px);
}

.ng__packages_selection {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--ng-dark-accent) 0%, var(--ng-deep-navy) 100%);
}

.ng__packages_container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.ng__packages_container h2 {
    font-family: 'Prata', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--ng-light-text);
}

.ng__packages_subtitle {
    font-size: 1.2rem;
    color: var(--ng-medium-text);
    margin-bottom: 3rem;
}

.ng__packages_grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.ng__package_card {
    background: var(--ng-card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--ng-border-glow);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 500px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ng__package_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 212, 0.1), transparent);
    transition: left 0.6s ease;
}

.ng__package_card:hover::before {
    left: 100%;
}

.ng__package_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 245, 212, 0.2);
}

.ng__package_header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ng__package_header i {
    font-size: 2.5rem;
    color: var(--ng-neon-cyan);
}

.ng__package_header h3 {
    font-family: 'Prata', serif;
    font-size: 1.8rem;
    color: var(--ng-light-text);
}

.ng__package_rotations {
    font-size: 1.4rem;
    color: var(--ng-neon-cyan);
    margin-bottom: 1rem;
    font-weight: 400;
}

.ng__package_cost {
    font-size: 2rem;
    font-family: 'Prata', serif;
    color: var(--ng-light-text);
    margin-bottom: 1.5rem;
}

.ng__package_description {
    color: var(--ng-medium-text);
    margin-bottom: 2rem;
    min-height: 3rem;
}

.ng__package_action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--ng-vibrant-purple) 0%, var(--ng-electric-blue) 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
}

.ng__package_action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(106, 48, 147, 0.4);
}

.ng__responsible_gaming {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--ng-deep-navy) 0%, var(--ng-midnight-blue) 100%);
}

.ng__responsible_container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.ng__responsible_container h2 {
    font-family: 'Prata', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--ng-light-text);
}

.ng__responsible_description {
    font-size: 1.2rem;
    color: var(--ng-medium-text);
    margin-bottom: 3rem;
}

.ng__responsible_partners {
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.ng__responsible_partner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--ng-card-bg);
    border-radius: 15px;
    border: 1px solid var(--ng-border-glow);
    transition: all 0.3s ease;
    text-decoration: none;
}

.ng__responsible_partner:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 245, 212, 0.2);
}

.ng__responsible_partner img {
    width: 100%;
    max-width: 180px;
    height: 80px;
}

.ng__footer_main {
    background: linear-gradient(135deg, var(--ng-dark-accent) 0%, var(--ng-deep-navy) 100%);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--ng-border-glow);
}

.ng__footer_container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.ng__footer_block {
    order: calc(5 - var(--block-order));
}

.ng__footer_block:nth-child(1) { --block-order: 1; }
.ng__footer_block:nth-child(2) { --block-order: 2; }
.ng__footer_block:nth-child(3) { --block-order: 3; }
.ng__footer_block:nth-child(4) { --block-order: 4; }

.ng__footer_block h3, .ng__footer_block h4 {
    font-family: 'Prata', serif;
    color: var(--ng-neon-cyan);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.ng__footer_block p {
    color: var(--ng-medium-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ng__footer_compliance {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.ng__footer_compliance p:first-child {
    color: var(--ng-neon-cyan);
    font-weight: 400;
}

.ng__footer_age-restriction {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ng__footer_age-restriction i {
    font-size: 2rem;
    color: var(--ng-neon-cyan);
}

.ng__footer_age-restriction span {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--ng-light-text);
}

.ng__footer_navigation {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.ng__footer_navigation a {
    color: var(--ng-medium-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ng__footer_navigation a:hover {
    color: var(--ng-neon-cyan);
}

.ng__footer_legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ng__footer_legal-links a {
    color: var(--ng-medium-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.ng__footer_legal-links a:hover {
    color: var(--ng-neon-cyan);
}

.ng__footer_copyright {
    color: var(--ng-medium-text);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.ng__footer_social {
    display: flex;
    gap: 1rem;
}

.ng__footer_social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--ng-card-bg);
    border-radius: 50%;
    color: var(--ng-medium-text);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--ng-border-glow);
}

.ng__footer_social a:hover {
    color: var(--ng-neon-cyan);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 245, 212, 0.3);
}

.cookie-notification-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--ng-midnight-blue) 0%, var(--ng-dark-accent) 100%);
    border-top: 2px solid var(--ng-border-glow);
    padding: 1.5rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-content-section i {
    font-size: 2rem;
    color: var(--ng-neon-cyan);
    flex-shrink: 0;
}

.cookie-text-content p {
    color: var(--ng-light-text);
    margin-bottom: 0.5rem;
}

.cookie-policy-link {
    color: var(--ng-neon-cyan);
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-policy-link:hover {
    text-decoration: underline;
}

.cookie-action-section {
    flex-shrink: 0;
}

.cookie-accept-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--ng-vibrant-purple) 0%, var(--ng-electric-blue) 100%);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cookie-accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(106, 48, 147, 0.4);
}

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 30, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    padding: 2rem;
}

.age-confirmation-dialog {
    background: linear-gradient(135deg, var(--ng-deep-navy) 0%, var(--ng-midnight-blue) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--ng-border-glow);
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 245, 212, 0.3);
    animation: ngModalAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes ngModalAppear {
    0% { 
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.age-verification-icon {
    margin-bottom: 1.5rem;
}

.age-verification-icon i {
    font-size: 4rem;
    color: var(--ng-neon-cyan);
}

.age-confirmation-dialog h2 {
    font-family: 'Prata', serif;
    font-size: 2rem;
    color: var(--ng-light-text);
    margin-bottom: 1rem;
}

.age-confirmation-dialog p {
    color: var(--ng-medium-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.age-verification-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-confirm-btn, .age-decline-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1rem;
}

.age-confirm-btn {
    background: linear-gradient(135deg, var(--ng-vibrant-purple) 0%, var(--ng-electric-blue) 100%);
    color: white;
}

.age-decline-btn {
    background: transparent;
    color: var(--ng-medium-text);
    border: 1px solid var(--ng-border-glow);
}

.age-confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(106, 48, 147, 0.4);
}

.age-decline-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ng-light-text);
}

@media (max-width: 1024px) {
    .ng__footer_container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .ng__draws_content h1 {
        font-size: 3rem;
    }
    
    .ng__draws_timer {
        gap: 1.5rem;
    }
    
    .ng__draws_timeunit {
        min-width: 80px;
    }
    
    .ng__draws_timevalue {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .ng__header_links-section {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(22, 33, 62, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid var(--ng-border-glow);
    }
    
    .ng__header_links-section.active {
        display: flex;
    }
    
    .ng__header_burger {
        display: block;
    }
    
    .ng__header_container {
        flex-wrap: wrap;
    }
    
    .ng__header_logo-section {
        order: 2;
        flex: 1;
        justify-content: center;
    }
    
    .ng__header_burger {
        order: 1;
    }
    
    .ng__header_links-section {
        order: 3;
        width: 100%;
    }
    
    .ng__draws_content h1 {
        font-size: 2.5rem;
    }
    
    .ng__draws_timer {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .ng__draws_timeunit {
        min-width: 70px;
        padding: 0.5rem;
    }
    
    .ng__draws_timevalue {
        font-size: 2rem;
    }
    
    .ng__draws_actions {
        flex-direction: column;
        align-items: center;
    }
    
    .ng__responsible_partners {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }
    
    .age-verification-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .ng__header_container,
    .ng__draws_showcase,
    .ng__packages_selection,
    .ng__responsible_gaming,
    .ng__footer_main {
        padding-left: 0.3rem;
        padding-right: 0.3rem;
    }
    
    .ng__draws_content h1 {
        font-size: 2rem;
    }
    
    .ng__draws_highlight {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.8rem;
    }
    
    .ng__draws_timer-container {
        padding: 0.8rem;
    }
    
    .ng__draws_timevalue {
        font-size: 1.8rem;
    }
    
    .ng__package_card {
        padding: 1.5rem;
    }
    
    .ng__footer_container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .age-confirmation-dialog {
        padding: 1.5rem;
    }
    
    .cookie-notification-bar {
        padding: 0.8rem;
    }
}

@media (max-width: 320px) {
    .ng__header_logo {
        max-width: 80px;
        max-height: 80px;
    }
    
    .ng__header_sitename {
        font-size: 1.2rem;
    }
    
    .ng__draws_content h1 {
        font-size: 1.8rem;
    }
    
    .ng__draws_timevalue {
        font-size: 1.5rem;
    }
    
    .ng__package_header {
        flex-direction: column;
        text-align: center;
    }
}