/* =================================================
LUCKYWORLD FOOTER BASE
Main footer background and global typography
================================================= */

.lw-footer{
background:#8c0000;
color:#fff;
padding:50px 20px 70px;
position:relative;
z-index:1;
font-family:inherit;
}
/* =================================================
FIX FOOTER BEHIND GLASS MENU
================================================= */

.lw-footer{
padding-bottom:120px;
}

/* =================================================
FOOTER INNER GRID
Controls layout spacing of footer columns
================================================= */

.lw-footer-inner{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
max-width:1200px;
margin:auto;
text-align:center;
}

.lw-footer-inner h4{
font-size:18px;
margin-bottom:15px;
font-weight:600;
}

/* =================================================
PAYMENT & RESPONSIBLE GAMING LOGOS
Standard logo sizing inside footer blocks
================================================= */

.lw-payment-logos,
.lw-gaming-logos{
display:flex;
justify-content:center;
align-items:center;
gap:18px;
flex-wrap:wrap;
}

.lw-payment-logos img{
height:26px !important;
width:auto !important;
object-fit:contain;
}

.lw-gaming-logos img{
height:32px;
width:auto;
object-fit:contain;
}

/* =================================================
SOCIAL ICONS
Footer social media icon size control
================================================= */

.lw-social-icons{
display:flex;
justify-content:center;
gap:12px;
}

.lw-social-icons img{
height:34px;
width:34px;
border-radius:50%;
background:#fff;
padding:6px;
}

/* =================================================
FOOTER GOLD DIVIDER
Visual separator between footer sections
================================================= */

.lw-footer-divider{
height:2px;
background:#d4a41b;
max-width:800px;
margin:35px auto;
}

/* =================================================
FOOTER LINK MENU
Secondary navigation displayed above footer bottom
================================================= */

.lw-footer-menu{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:25px;
margin-bottom:25px;
font-size:14px;
}

.lw-footer-menu a{
color:#fff;
text-decoration:none;
transition:0.2s;
}

.lw-footer-menu a:hover{
color:#ffd65a;
}

/* =================================================
FOOTER BOTTOM AREA
Contains logo, tagline and copyright
================================================= */

.lw-footer-bottom{
text-align:center;
max-width:800px;
margin:auto;
}

.lw-footer-logo{
height:60px;
margin-bottom:12px;
}

.lw-footer-tagline{
font-size:16px;
margin-bottom:8px;
font-weight:500;
}

.lw-footer-copy{
font-size:14px;
opacity:0.85;
}

/* =================================================
GLASS BOTTOM MENU
Floating mobile navigation bar
================================================= */

.lw-glass-menu{

position:fixed;
bottom:15px;
left:50%;
transform:translateX(-50%);

width:92%;
max-width:900px;

padding:10px 15px;

background:rgba(255,255,255,0.15);
backdrop-filter:blur(12px);
-webkit-backdrop-filter:blur(12px);

border:1px solid rgba(255,255,255,0.25);

border-radius:18px;

box-shadow:0 10px 35px rgba(0,0,0,0.25);

z-index:9999;

}

/* =================================================
GLASS MENU LIST LAYOUT
Horizontal layout for bottom navigation
================================================= */

.lw-glass-menu-list{

display:flex;
justify-content:space-around;
align-items:center;

list-style:none;
margin:0;
padding:0;

}

/* =================================================
GLASS MENU ITEM STYLE
Icon + label stack layout
================================================= */

.lw-glass-menu-list li a{

display:flex;
flex-direction:column;
align-items:center;

gap:4px;

font-size:12px;
font-weight:600;

text-decoration:none;
color:#FFD700;

}

/* =================================================
MENU ICON STYLE
Controls icon sizing inside bottom menu
================================================= */

.lw-menu-icon{
width:auto;
height:34px;
object-fit:contain;
}

/* =================================================
GLASS MENU HOVER EFFECT
Adds small lift animation and brightness
================================================= */

.lw-glass-menu-list li a:hover{
color:#ffffff;
transform:translateY(-2px);
opacity:.9;
}

/* =================================================
HAMBURGER ICON
Three-line menu icon styling
================================================= */

.lw-hamburger{

width:18px;
height:2px;
background:#FFD700;
display:block;
position:relative;
margin-bottom:6px;

}

.lw-hamburger:before,
.lw-hamburger:after{

content:"";
position:absolute;
width:18px;
height:2px;
background:#FFD700;
left:0;

}

.lw-hamburger:before{
top:-6px;
}

.lw-hamburger:after{
top:6px;
}

/* ===================================
DRAWER OVERLAY
Dark overlay background
=================================== */

.lw-full-menu{

position:fixed;
top:0;
left:0;

width:100%;
height:100vh;

background:rgba(0,0,0,0.55);

display:flex;

z-index:10000;

opacity:0;
pointer-events:none;

transition:opacity .3s ease;

}

/* ===================================
DRAWER ACTIVE STATE
=================================== */

.lw-full-menu.active{
opacity:1;
pointer-events:auto;
}

/* ===================================
SIDE DRAWER PANEL
LuckyWorld premium gradient panel
=================================== */

.lw-full-menu ul{

width:300px;
height:100%;

background:linear-gradient(
180deg,
#8f0000 0%,
#5c0000 45%,
#2a0000 100%
);

padding:80px 18px 30px;

list-style:none;
margin:0;

display:flex;
flex-direction:column;

gap:14px;

transform:translateX(-100%);
transition:transform .35s ease;

}

/* ===================================
DRAWER OPEN ANIMATION
=================================== */

.lw-full-menu.active ul{
transform:translateX(0);
}

/* ===================================
MENU BOX STYLE
Creates boxed menu items
=================================== */

.lw-full-menu li{

background:linear-gradient(
180deg,
rgba(255,255,255,0.06),
rgba(255,255,255,0.02)
);

border-radius:14px;

border:1px solid rgba(255,215,0,0.15);

transition:all .25s ease;

}

/* ===================================
MENU ITEM LAYOUT
=================================== */

.lw-full-menu li a{

display:flex;
align-items:center;

gap:14px;

padding:14px 16px;

color:#ffffff;

text-decoration:none;

font-size:15px;
font-weight:600;

}

/* ===================================
MENU ICON STYLE
=================================== */

.lw-full-menu img{

width:26px;
height:26px;

object-fit:contain;

}

/* ===================================
MENU HOVER EFFECT
=================================== */

.lw-full-menu li:hover{

transform:translateX(6px);

background:linear-gradient(
180deg,
rgba(255,215,0,0.18),
rgba(255,215,0,0.08)
);

box-shadow:
0 0 12px rgba(255,215,0,0.35),
0 0 28px rgba(255,140,0,0.15);

}

/* ===================================
CLOSE BUTTON
=================================== */

.lw-menu-close{

position:absolute;

top:18px;
left:18px;

font-size:28px;

color:#FFD700;

cursor:pointer;

}

/* ===================================
MOBILE ADJUSTMENTS
=================================== */

@media(max-width:768px){

.lw-full-menu ul{
width:250px;
}

}

/* =================================================
LUCKYWORLD PREMIUM FOOTER
================================================= */

.lw-footer{
background:#8c0000;
color:#fff;
padding:50px 20px 120px;
position:relative;
z-index:1;
font-family:inherit;
}


/* =================================================
TOP GRID
================================================= */

.lw-footer-inner{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
max-width:1200px;
margin:auto;
text-align:center;
}

.lw-footer-inner h4{
font-size:18px;
margin-bottom:15px;
font-weight:600;
}


/* =================================================
PAYMENT + GAMING LOGOS
================================================= */

.lw-payment-logos,
.lw-gaming-logos{
display:flex;
justify-content:center;
align-items:center;
gap:18px;
flex-wrap:wrap;
}

.lw-payment-logos img{
height:28px;
width:auto;
object-fit:contain;
}

.lw-gaming-logos img{
height:36px;
width:auto;
object-fit:contain;
}


/* =================================================
SOCIAL ICONS
================================================= */

.lw-social-icons{
display:flex;
justify-content:center;
gap:12px;
}

.lw-social-icons img{
height:34px;
width:34px;
border-radius:50%;
background:#fff;
padding:6px;
}


/* =================================================
GOLD DIVIDER
================================================= */

.lw-footer-divider{
height:2px;
background:#d4a41b;
max-width:800px;
margin:35px auto;
}


/* =================================================
FOOTER MENU
================================================= */

.lw-footer-menu{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:25px;
margin-bottom:25px;
font-size:14px;
}

.lw-footer-menu a{
color:#fff;
text-decoration:none;
transition:0.2s;
}

.lw-footer-menu a:hover{
color:#ffd65a;
}


/* =================================================
BOTTOM SECTION
================================================= */

.lw-footer-bottom{
text-align:center;
max-width:800px;
margin:auto;
}

.lw-footer-logo{
height:60px;
margin-bottom:12px;
}

.lw-footer-tagline{
font-size:16px;
margin-bottom:8px;
font-weight:500;
}

.lw-footer-copy{
font-size:14px;
opacity:0.85;
}


/* =================================================
FIX FOOTER BEHIND GLASS MENU
================================================= */

.lw-footer{
padding-bottom:120px;
}


/* =================================================
MOBILE
================================================= */

@media(max-width:768px){

/* only these 3 sections left aligned */
.lw-footer-inner{
grid-template-columns:1fr;
gap:30px;
text-align:left;
}

/* headings left */
.lw-footer-inner h4{
text-align:left;
}

/* logos left */
.lw-payment-logos,
.lw-gaming-logos,
.lw-social-icons{
justify-content:flex-start;
}

.lw-footer-menu{
gap:15px;
font-size:13px;
}

.lw-footer-logo{
height:50px;
}

.lw-footer{
padding:40px 15px 110px;
}

}

/* DESKTOP FOOTER LOGO + TEXT LAYOUT */

@media(min-width:769px){

.lw-footer-bottom{
display:grid;
grid-template-columns:auto 1fr;
column-gap:18px;
align-items:center;
max-width:420px;
margin:0 auto;
text-align:left;
}

/* logo */
.lw-footer-logo{
height:64px;
grid-row:1 / span 2;
}

/* tagline */
.lw-footer-tagline{
font-size:17px;
font-weight:600;
margin:0;
line-height:1.2;
}

/* copyright */
.lw-footer-copy{
font-size:14px;
opacity:0.85;
margin-top:4px;
}


}

/* ======================= ==================================
=================== New Footer CSS 19 july 2026 update =============*/
/* ==================================================
   LUCKYWORLD NEW FOOTER
================================================== */

.lw-new-footer,
.lw-new-footer * {
    box-sizing: border-box;
}

.lw-new-footer {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    border-top: 3px solid #e9a900;
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
}

.lw-new-footer img {
    display: block;
    max-width: 100%;
    height: auto;
}

.lw-new-footer-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
}


/* ==================================================
   SOCIAL MEDIA SECTION
================================================== */

.lw-new-footer-social {
    padding: 18px 0 20px;
    background: #000;
}

.lw-new-social-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 70px;
    margin: 0 auto;
    padding: 14px 30px;
    gap: 28px;
    background: #310000;
    border-radius: 50px;
}

.lw-new-follow-text {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
}

.lw-new-social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.lw-new-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    overflow: hidden;
    border-radius: 50%;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.lw-new-social-link:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.lw-new-social-link img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}


/* ==================================================
   PAYMENT METHODS SECTION
================================================== */

.lw-new-footer-payments {
    padding: 8px 0 35px;
    background: #310000;
}

.lw-new-payment-heading {
    position: relative;
    width: fit-content;
    margin: 0 auto 28px;
    padding: 0 0 8px;
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
}

.lw-new-payment-heading::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #d9a400;
    content: "";
}

.lw-new-payment-logos {
   display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    gap: 22px;
}

.lw-new-payment-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px 30px;
}

.lw-new-payment-row-first {
    gap: 35px;
}

.lw-new-payment-logo {
      display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
}

.lw-new-payment-logo img {
    width: auto;
    max-width: 155px;
    height: 38px;
    object-fit: contain;
}


/* ==================================================
   NEW FOOTER MENU
================================================== */

.lw-new-footer-menu-section {
    padding: 38px 0;
    background: #000;
}

.lw-new-footer-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 25px;
}

.lw-new-footer-menu a {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 2px 0 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: #e29a79;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    transition: color 0.2s ease;
}

.lw-new-footer-menu a:hover,
.lw-new-footer-menu a:focus {
    color: #f1b400;
}


/* ==================================================
   FOOTER BOTTOM SECTION
================================================== */

.lw-new-footer-bottom {
    padding: 28px 0 25px;
    background: #310000;
}

.lw-new-footer-bottom-grid {
    display: grid;
    grid-template-columns:
        minmax(240px, 1.3fr)
        minmax(240px, 1.2fr)
        minmax(230px, 1fr)
        minmax(240px, 1.1fr);
    align-items: center;
    gap: 25px;
}


/* ==================================================
   COMPLIANCE COLUMN
================================================== */

.lw-new-compliance-column {
    min-width: 0;
}

.lw-new-compliance-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.lw-new-compliance-logos a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.lw-new-compliance-logos img {
    width: auto;
    max-width: 125px;
    height: 48px;
    object-fit: contain;
}

.lw-new-responsible-notice {
    margin: 8px 0 0;
    color: #fff;
    font-size: 9px;
    font-weight: 400;
    line-height: 1.4;
}


/* ==================================================
   CONTACT AND SUPPORT ITEMS
================================================== */

.lw-new-contact-column,
.lw-new-support-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    gap: 7px;
}

.lw-new-info-item {
    display: flex;
    align-items: flex-start;
    width: 100%;
    min-width: 0;
    gap: 8px;
    color: #fff;
    font-size: 12px;
    line-height: 1.35;
}

.lw-new-info-icon {
    width: 16px;
    min-width: 16px;
    height: 16px;
    margin-top: 1px;
    object-fit: contain;
}

.lw-new-info-item a,
.lw-new-info-item span {
    min-width: 0;
    color: #fff;
    font-size: inherit;
    font-weight: 600;
    line-height: inherit;
    overflow-wrap: anywhere;
}

.lw-new-info-item a {
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.lw-new-info-item a:hover,
.lw-new-info-item a:focus {
    color: #f1b400;
}


/* ==================================================
   BRAND COLUMN
================================================== */

.lw-new-brand-column {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 12px;
}

.lw-new-brand-logo {
    width: 58px;
    min-width: 58px;
    height: 58px;
    object-fit: contain;
}

.lw-new-brand-text {
    min-width: 0;
}

.lw-new-quality-text {
    margin: 0 0 4px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.lw-new-copyright-text {
    margin: 0;
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
}


/* ==================================================
   SUPPORT COLUMN
================================================== */

.lw-new-support-heading {
    margin: 0 0 2px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1100px) {
    .lw-new-footer-bottom-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
        gap: 30px 35px;
    }

    .lw-new-footer-payments {
        padding-top: 18px;
    }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {
    .lw-new-footer {
        border-top-width: 2px;
    }

    .lw-new-footer-container {
        padding-right: 15px;
        padding-left: 15px;
    }


    /* Social section */

    .lw-new-footer-social {
        padding: 15px 0;
    }

    .lw-new-social-box {
        width: 100%;
        max-width: 360px;
        min-height: auto;
        padding: 12px 18px;
        gap: 16px;
    }

    .lw-new-follow-text {
        font-size: 12px;
    }

    .lw-new-social-icons {
        gap: 7px;
    }

    .lw-new-social-link {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .lw-new-social-link img {
        width: 30px;
        height: 30px;
    }


    /* Payment section */

    .lw-new-footer-payments {
        padding: 18px 0 28px;
    }

    .lw-new-payment-heading {
        margin-bottom: 23px;
        font-size: 21px;
    }

    .lw-new-payment-logos {
        gap: 18px 20px;
    }

    .lw-new-payment-logo img {
        max-width: 115px;
        height: 32px;
    }


    /* Footer page links */

    .lw-new-footer-menu-section {
        padding: 28px 0;
    }

    .lw-new-footer-menu {
        flex-direction: column;
        gap: 15px;
    }

    .lw-new-footer-menu a {
        font-size: 14px;
    }


    /* Bottom section */

    .lw-new-footer-bottom {
        padding: 25px 0 85px;
    }

    .lw-new-footer-bottom-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .lw-new-compliance-column,
    .lw-new-contact-column,
    .lw-new-brand-column,
    .lw-new-support-column {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .lw-new-compliance-logos {
        justify-content: center;
    }

    .lw-new-responsible-notice {
        text-align: center;
    }

    .lw-new-contact-column,
    .lw-new-support-column {
        align-items: flex-start;
    }

    .lw-new-brand-column {
        justify-content: flex-start;
    }
}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 420px) {
    .lw-new-social-box {
        padding-right: 14px;
        padding-left: 14px;
        gap: 12px;
    }

    .lw-new-follow-text {
        font-size: 11px;
    }

    .lw-new-social-icons {
        gap: 6px;
    }

    .lw-new-social-link {
        width: 27px;
        height: 27px;
        flex-basis: 27px;
    }

    .lw-new-social-link img {
        width: 27px;
        height: 27px;
    }

    .lw-new-payment-logos {
        gap: 16px;
    }

    .lw-new-payment-logo img {
        max-width: 100px;
        height: 29px;
    }

    .lw-new-brand-logo {
        width: 52px;
        min-width: 52px;
        height: 52px;
    }
}

/* Keep footer content above the fixed glass menu */
.lw-new-footer-bottom {
    padding-bottom: 140px !important;
}

/* Tablet */
@media (max-width: 1024px) {
    .lw-new-footer-bottom {
        padding-bottom: 130px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .lw-new-footer-bottom {
        padding-bottom: 120px !important;
    }
}

@media (max-width: 767px) {
    .lw-new-payment-logos {
        gap: 18px;
    }

    .lw-new-payment-row,
    .lw-new-payment-row-first {
        gap: 16px 20px;
    }

    .lw-new-payment-logo img {
        max-width: 105px;
        height: 30px;
    }
}

.lw-new-compliance-logos img {
    width: 240px !important;
    max-width: 240px !important;
    height: 58px !important;
    object-fit: contain;
}