.elementor-7 .elementor-element.elementor-element-1e3a41b{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-5005363 *//* =====================================================
   PREMIUM CASINO UI - STYLE.CSS
   MOBILE RESPONSIVE FIXED
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #1e88ff;
    --secondary: #00c2ff;
    --accent: #ffb400;
    --bg: #08111f;
    --bg2: #101c2f;
    --card: #16243d;
    --white: #ffffff;
    --text: #d7dbe3;
    --green: #27d46d;
    --red: #ff5f6d;
    --radius: 18px;
    --shadow: 0 10px 40px rgba(0, 0, 0, .45);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #07111f, #091728);
    color: var(--white);
    overflow-x: hidden;
}

/* =====================================================
   HEADER
===================================================== */
.header {
    position: sticky;
    top: 0;
    height: 78px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background: rgba(9, 18, 35, .92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    z-index: 9999;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.logo i {
    color: var(--accent);
    font-size: 26px;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    padding: 5px;
}

.menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.menu a {
    text-decoration: none;
    color: #d5d5d5;
    font-size: 14px;
    font-weight: 500;
    transition: .3s;
    position: relative;
}

.menu a:hover {
    color: #fff;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 2px;
    width: 0;
    background: var(--primary);
    transition: .35s;
}

.menu a:hover::after {
    width: 100%;
}

.mobile-buttons {
    display: none !important;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.login {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: .3s;
    font-size: 14px;
}

.login:hover {
    background: #1a2c4a;
}

.register {
    background: linear-gradient(90deg, #2d8cff, #00c6ff);
    border: none;
    color: white;
    padding: 10px 22px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 136, 255, .35);
    transition: .35s;
    font-size: 14px;
}

.register:hover {
    transform: translateY(-2px);
}

/* =====================================================
   LAYOUT
===================================================== */
.container {
    display: flex;
}

.sidebar {
    width: 240px;
    min-height: calc(100vh - 78px);
    background: linear-gradient(180deg, #101c31, #0b1425);
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, .05);
    flex-shrink: 0;
}

.sidebar.active {
    display: block;
}

.wallet {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.deposit {
    background: linear-gradient(90deg, #ffd000, #ffb300);
    color: #222;
    font-weight: 700;
    padding: 12px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-size: 14px;
}

.withdraw {
    background: linear-gradient(90deg, #1e88ff, #4fc3ff);
    color: white;
    font-weight: 700;
    padding: 12px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-size: 14px;
}

.sidebar h3 {
    margin-bottom: 15px;
    font-size: 16px;
}

.sidebar ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 14px;
    cursor: pointer;
    transition: .3s;
    color: #d3d8df;
    font-size: 14px;
}

.sidebar li:hover {
    background: #182847;
    color: #fff;
    transform: translateX(4px);
}

.sidebar li i {
    width: 20px;
    color: #42a5ff;
}

/* =====================================================
   MAIN CONTENT
===================================================== */
.main {
    flex: 1;
    padding: 20px;
    min-width: 0;
}

/* =====================================================
   HERO
===================================================== */
.hero {
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 30px;
    position: relative;
    background: linear-gradient(135deg, #005eff, #8937ff, #ff4ecd);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at right, rgba(255, 255, 255, .25), transparent 55%);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    max-width: 420px;
}

.hero h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
}

.hero p {
    font-size: 16px;
    color: #eef5ff;
    margin-bottom: 20px;
}

.hero button {
    background: #fff;
    color: #111;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 16px;
    cursor: pointer;
    transition: .35s;
}

.hero button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
}

/* =====================================================
   FEATURED SECTION
===================================================== */
.featured {
    margin-top: 10px;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 24px;
    font-weight: 700;
}

.section-title a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    transition: .3s;
    font-size: 14px;
}

.section-title a:hover {
    color: #fff;
}

/* =====================================================
   GAME GRID
===================================================== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

/* =====================================================
   GAME CARD
===================================================== */
.game-card {
    background: linear-gradient(180deg, #16243d, #111d31);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .35);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .45);
}

/* HOT Badge */
.game-card::before {
    content: "HOT";
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff4747;
    color: #fff;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50px;
    z-index: 5;
    letter-spacing: .5px;
}

/* Provider Badge */
.game-card::after {
    content: "PG SOFT";
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 4px 8px;
    font-size: 9px;
    border-radius: 50px;
    z-index: 5;
}

.game-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
    display: block;
}

.game-card:hover img {
    transform: scale(1.08);
}

.game-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .75));
}

.game-info {
    padding: 15px;
    position: relative;
    z-index: 2;
}

.game-info h4 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

.game-info button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(90deg, #0077ff, #00c2ff);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: .35s;
    opacity: .92;
}

.game-info button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 130, 255, .35);
}

.game-card:hover button {
    background: linear-gradient(90deg, #ff9800, #ffb300);
}

.game-card:hover {
    border: 1px solid rgba(0, 170, 255, .25);
}

.game-card {
    animation: fadeUp .8s ease;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   PROVIDERS
===================================================== */
.providers {
    margin: 50px 0;
}

.providers h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px;
}

.provider {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(180deg, #172740, #101b2d);
    border: 1px solid rgba(255, 255, 255, .05);
    transition: .35s;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-align: center;
    padding: 10px;
}

.provider:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #0d6efd, #00bfff);
    box-shadow: 0 20px 45px rgba(0, 140, 255, .35);
}

/* =====================================================
   PROMOTIONS
===================================================== */
.promotions {
    margin-top: 50px;
}

.promotions h2 {
    font-size: 24px;
    margin-bottom: 25px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.promo-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 30px;
    min-height: 200px;
    background: linear-gradient(135deg, #1b2d4b, #263d64);
    transition: .35s;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
}

.promo-card:hover {
    transform: translateY(-8px);
}

.promo-card:nth-child(1) {
    background: linear-gradient(135deg, #005eff, #0099ff);
}

.promo-card:nth-child(2) {
    background: linear-gradient(135deg, #ff6b00, #ffb000);
}

.promo-card:nth-child(3) {
    background: linear-gradient(135deg, #8b2cff, #ff45b5);
}

.promo-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.promo-card p {
    line-height: 1.6;
    opacity: .95;
    margin-bottom: 20px;
    font-size: 14px;
}

.promo-card button {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    background: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
    font-size: 14px;
}

.promo-card button:hover {
    transform: scale(1.05);
}

/* =====================================================
   JACKPOT
===================================================== */
.jackpot {
    margin: 60px 0;
    padding: 30px;
    border-radius: 25px;
    background: linear-gradient(135deg, #0c1d35, #102849);
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

.jackpot h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.jackpot-value {
    font-size: 44px;
    font-weight: 800;
    color: #FFD54F;
    letter-spacing: 2px;
    text-shadow: 0 0 25px rgba(255, 215, 0, .4);
}

/* =====================================================
   ANNOUNCEMENT
===================================================== */
.announcement {
    margin: 50px 0;
    padding: 14px 20px;
    border-radius: 16px;
    background: linear-gradient(90deg, #005eff, #00c2ff);
    overflow: hidden;
    white-space: nowrap;
}

.announcement span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
    font-weight: 600;
    font-size: 14px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-120%);
    }
}

/* =====================================================
   WINNERS
===================================================== */
.winners {
    margin-top: 50px;
}

.winners h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.winner-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.winner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-radius: 16px;
    background: #13223b;
    transition: .3s;
    flex-wrap: wrap;
    gap: 8px;
}

.winner:hover {
    background: #1b3053;
    transform: translateX(6px);
}

.winner-name {
    font-weight: 600;
    font-size: 14px;
}

.winner-game {
    color: #9db8d8;
    font-size: 14px;
}

.winner-amount {
    color: #2bff88;
    font-weight: 700;
    font-size: 16px;
}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

/* Tablets & Small Laptops */
@media (max-width: 1024px) {
    .sidebar {
        width: 200px;
        padding: 15px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu {
        position: fixed;
        top: 78px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 78px);
        background: rgba(9, 18, 35, .98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 15px;
        transition: .35s;
        border-right: 1px solid rgba(255, 255, 255, .06);
        overflow-y: auto;
        align-items: flex-start;
    }

    .menu.active {
        left: 0;
    }

    .menu a {
        font-size: 16px;
        padding: 8px 0;
        width: 100%;
    }

    .mobile-buttons {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        gap: 10px;
    }

    .mobile-buttons button {
        width: 100%;
        padding: 14px;
        font-size: 16px;
        border-radius: 14px;
    }

    .desktop-buttons {
        display: none !important;
    }

    .container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        min-height: auto;
        padding: 15px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .05);
        display: none;
    }

    .sidebar.active {
        display: block;
    }

    /* Sidebar Toggle Button */
    .sidebar-toggle {
        display: flex !important;
        width: 100%;
        padding: 12px;
        background: #16243d;
        border: none;
        border-radius: 14px;
        color: #fff;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        gap: 10px;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
    }

    .sidebar ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .sidebar li {
        padding: 10px 12px;
        font-size: 13px;
    }

    .main {
        padding: 15px;
    }

    .hero {
        height: 220px;
        padding: 20px;
        border-radius: 18px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero button {
        padding: 12px 22px;
        font-size: 13px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .game-image {
        height: 170px;
    }

    .game-info h4 {
        font-size: 14px;
    }

    .game-info button {
        font-size: 13px;
        padding: 10px;
    }

    .game-card::before {
        font-size: 9px;
        padding: 3px 8px;
        top: 8px;
        left: 8px;
    }

    .game-card::after {
        font-size: 8px;
        padding: 3px 6px;
        top: 8px;
        right: 8px;
    }

    .providers h2 {
        font-size: 20px;
    }

    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .provider {
        height: 65px;
        font-size: 14px;
    }

    .promotions h2 {
        font-size: 20px;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .promo-card {
        padding: 24px;
        min-height: 160px;
    }

    .promo-card h3 {
        font-size: 20px;
    }

    .jackpot {
        padding: 20px;
        margin: 40px 0;
    }

    .jackpot h2 {
        font-size: 22px;
    }

    .jackpot-value {
        font-size: 32px;
    }

    .announcement {
        padding: 12px 16px;
        margin: 35px 0;
    }

    .announcement span {
        font-size: 12px;
        animation: marquee 25s linear infinite;
    }

    .winners h2 {
        font-size: 20px;
    }

    .winner {
        padding: 12px 15px;
        font-size: 13px;
    }

    .winner-amount {
        font-size: 14px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .header {
        padding: 0 12px;
        height: 65px;
    }

    .logo {
        font-size: 16px;
        gap: 8px;
    }

    .logo i {
        font-size: 20px;
    }

    .menu-toggle {
        font-size: 24px;
    }

    .menu {
        top: 65px;
        height: calc(100vh - 65px);
        width: 100%;
        max-width: 320px;
    }

    .hero {
        height: 180px;
        padding: 15px;
        border-radius: 14px;
    }

    .hero h1 {
        font-size: 20px;
    }

    .hero p {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .hero button {
        padding: 10px 18px;
        font-size: 12px;
        border-radius: 12px;
    }

    .games-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .game-image {
        height: 140px;
    }

    .game-info {
        padding: 12px;
    }

    .game-info h4 {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .game-info button {
        font-size: 12px;
        padding: 8px;
        border-radius: 10px;
    }

    .sidebar ul {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .sidebar li {
        font-size: 12px;
        padding: 8px 10px;
        gap: 8px;
    }

    .provider {
        height: 55px;
        font-size: 12px;
        border-radius: 14px;
    }

    .jackpot-value {
        font-size: 26px;
    }

    .promo-card {
        padding: 18px;
        min-height: 140px;
        border-radius: 18px;
    }

    .promo-card h3 {
        font-size: 18px;
    }

    .promo-card p {
        font-size: 13px;
    }

    .promo-card button {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* =====================================================
   SIDEBAR TOGGLE (Mobile)
===================================================== */
.sidebar-toggle {
    display: none;
}

@media (max-width: 768px) {
    .sidebar-toggle {
        display: flex !important;
    }
}/* End custom CSS */