﻿/* ================= BUTTONS ================= */
.btn {
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 14px;
    cursor: pointer;
}

    .btn.primary {
        background: #3b82f6;
        color: #fff;
    }

    .btn.secondary {
        background: #1f3442;
        color: #fff;
    }

    .btn.big {
        padding: 14px 32px;
        font-size: 16px;
    }

/* ================= DESKTOP ================= */
.desktop-view {
    display: none;
}

/* ===== TOP BAR ===== */
.d-topbar {
    height: 64px;
    background: #0f1f2a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    border-bottom: 1px solid #1e3645;
}

.d-top-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.d-logo {
    height: 36px;
}

.d-main-nav a {
    margin-right: 18px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
}

    .d-main-nav a:hover {
        color: #fff;
    }

.d-top-right {
    display: flex;
    gap: 10px;
}

.credit-section {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.credit-section-dropdown {
    padding: 0.5rem 1.5rem;
    /*background-color: #feedad;*/
    background-color: #25A18C; display: flex;
    width: 50%;
    justify-content: space-between;
    border-radius: .256rem;
}

.credit-balance {
}

/* ===== MAIN LAYOUT ===== */
.d-layout {
    display: flex;
}

.transparent-button-bg {
    background-color: transparent !important;
    border-color: transparent !important;
}

/* ===== SIDEBAR ===== */
.d-sidebar {
    width: 260px;
    background: #0f1f2a;
    min-height: calc(100vh - 64px);
    padding: 12px;
    transition: width 0.25s ease;
    overflow: hidden;
}

    .d-sidebar.collapsed {
        width: 72px;
    }

.sidebar-toggle {
    padding: 12px;
    font-size: 18px;
    cursor: pointer;
    color: #cbd5e1;
}

    .sidebar-toggle:hover {
        color: #fff;
    }

.side-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
}

    .side-item:hover {
        background: #132a38;
        color: #fff;
    }

    .side-item span {
        transition: opacity 0.2s ease;
    }

.d-sidebar.collapsed .side-item span {
    opacity: 0;
    pointer-events: none;
}

.side-divider {
    height: 1px;
    background: #1e3645;
    margin: 12px 0;
}

/* ===== CONTENT ===== */
.d-content {
    flex: 1;
    padding: 32px;
}

/* ===== HERO ===== */
.d-hero {
    background: radial-gradient(circle at center, #1a3550, #0b1a24);
    padding: 80px 24px;
    border-radius: 20px;
    text-align: center;
}

    .d-hero h1 {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .d-hero p {
        opacity: 0.85;
        margin-bottom: 26px;
    }

/* ===== SEARCH ===== */
.d-search {
    max-width: 720px;
    margin: 30px auto;
}

    .d-search input {
        width: 100%;
        padding: 16px;
        border-radius: 14px;
        border: none;
        background: #142a38;
        color: #fff;
    }

/* ===== TRENDING ===== */
.d-section {
    margin-top: 40px;
}

    .d-section h2 {
        margin-bottom: 16px;
        font-size: 18px;
    }

.d-games {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* ================= GAME CARDS ================= */
.game-card {
    /*height: 159.45px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;*/

    flex: 0 0 auto; /* prevent shrinking */
    width: 32.4%; /* ~118px for 420px container */
    aspect-ratio: 118.88 / 159.45; /* maintain correct proportion */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    background: #fff;
}

.GP001 {
    background-image: url(../../images/Limbo_resized_180x236.png);
    background-size: cover;
}

.GP002 {
    background-image: url(../../images/lottery.jpg);
    background-size: cover;
}

.GP003 {
    background-image: url(../../images/crash.jpg);
    background-size: cover;
}

.GP004 {
    background-image: url(../../images/blackjack.png);
    background-size: cover;
}

.GP005 {
    background-image: url(../../images/dice.jpg);
    background-size: cover;
}

.GP006 {
    background-image: url(../../images/baccarat.jpg);
    background-size: cover;
}

.GP007 {
    background-image: url(../../images/roulette.jpg);
    background-size: cover;
}

.GP008 {
    background-image: url(../../images/aviator.jpg);
    background-size: cover;
}

.GP009 {
    background-image: url(../../images/uncrossableChicken.jpg);
    background-size: cover;
}

.GP999 {
    background-image: url(../../images/lottery.jpg);
    background-size: cover;
}
/* ================= MOBILE ================= */
.mobile-view {
    /* display: block;
    max-width: 420px;
    margin: 0 auto;
    min-height: 100vh;
    background: linear-gradient(180deg, #132a38, #0b1a24);
    padding-bottom: 90px;*/

    display: block; /* always show */
    width: 430px; /* fixed mobile width */
    max-width: 100%;
    margin: 0 auto; /* center on desktop */
    min-height: 100vh;
    background: linear-gradient(180deg, #0d0c1f, #0d0c1f);
    padding-bottom: 65px;
    overflow-x: hidden;
}

.content-section {
    padding-top: 60px;
}

/* ===== MOBILE HEADER ===== */
.m-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(0.25rem * 0) 0.5rem;
    /*background: linear-gradient( 180deg, #f6d6a8 0%, #d8a15b 35%, #b97a3d 65%, #8b5a2b 100% );*/
    /*background: linear-gradient(90deg, #36d1dc, #5b86e5);*/
    background-color: #1a1d29;
    height: 60px;
    position: fixed;
    width: 430px;
    z-index: 9999;
}

.m-headerOld {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(0.25rem * 0) 0.5rem;
    background: #0f1f2a;
    height: 60px;
}

.m-header .dropdown-menu {
    background-color: #25a08b !important;
}

    .game-app {
        height: 36px;
    }

.m-auth {
    display: flex;
    gap: 8px;
}

.m-login-sec {
    display: flex;
    gap: .25rem;
    flex-direction: row;
}



/* ===== MOBILE HERO ===== */
.m-hero {
    padding: 20px 16px;
    text-align: center;
}

    .m-hero h1 {
        font-size: 20px;
        line-height: 1.25;
        margin-bottom: 14px;
    }

.m-home-page-hero {
    padding: .25rem 0rem;
}

.m-home-page-header-bg {
    background-image: image-set(url(../../images/Landing/home-page-header-bg-en-small.png) 1x, url(../../images/Landing/home-page-header-bg-en-big.png) 2x);
    background-size: cover;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: calc(.25rem * 8) 1rem;
}

.m-header-home-container {
    background-color: #0e202b;
    border: 1px solid white;
    border-radius: 0.35rem;
    max-width: calc(1200px + 6vw);
    padding: calc(.25rem * 0) 0.5rem;
    width: 100%;
}

.m-header-home-progress-bar {
    height: 0.5rem !important;
    border-radius: 10px !important;
}

/* ===== MOBILE SEARCH ===== */
.m-search {
    padding: 30px 14px 10px;
}

    .m-search input {
        width: 100%;
        padding: 10px;
        border-radius: 10px;
        border: 2px solid #2f4553;
        background: #142a38;
        color: #fff;
    }

.m-ge-search {
    border: 0.5px solid #b1bad3;
    border-radius: 5px;
    margin-bottom: 1rem;
    width: 100%;
    padding: .1rem;
}

    .m-ge-search > input {
        width: 100%;
        padding: 10px;
        border-radius: 10px;
        border: none;
        background: #142a38;
        color: #fff;
    }

/* ===== MOBILE TRENDING ===== */

.text-neutral-default {
    color: #fff;
}

.m-section {
    padding: 10px;
    padding-bottom: 90px;
}

    .m-section h2 {
        margin-bottom: 12px;
    }

/* Horizontal scroll (Stake-style) */
.m-games {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    padding-bottom: 3px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

    .m-games::-webkit-scrollbar {
        display: none;
    }

/* ===== MOBILE browse menu ===== */

.m-browse {
    padding: 1rem;
}

.m-b-search {
    border: 0.5px solid #b1bad3;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

    .m-b-search input {
        width: 100%;
        padding: 14px;
        border-radius: 12px;
        border: none;
        background: #142a38;
        color: #fff;
    }

.header-button {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

    .header-button a {
        position: relative;
        overflow: hidden;
        align-items: center;
        flex: 1;
        justify-content: center;
        display: flex;
        min-height: 50px;
        text-decoration: none;
        border-radius: 0.5rem;
    }

        .header-button a img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            border-radius: 0.356rem;
        }

        .header-button a span {
            display: flex;
            z-index: 2;
            color: white;
        }

.m-b-section {
    height: auto;
    margin-top: 1rem;
    background: #132a38;
    color: #fff;
    border-radius: 0.5rem;
}

.shrink-0 {
    color: #b1bad3;
}

.m-section-line {
    padding-block: calc(0.25rem * 2.5);
    padding-inline: calc(0.25rem * 2);
    /*color: #2f4553;*/
    color: #b1bad3;
}

.svelte-1ey91rp {
    width: 100%;
    margin-top: 0.256rem !important;
    margin-bottom: 0.256rem !important;
}

.menu-title {
    display: flex;
    gap: 0.5rem;
}

.menu-collapse {
    width: 100%;
    text-align: end;
}

.child-item {
    display: none; /* hidden by default */
    flex-direction: column; /* dropdown style */
    padding-left: 20.5px;
    padding-bottom: 10px;
}

    .child-item.show {
        display: flex;
    }

.rotate {
    transform: rotate(180deg) !important;
}

.item-Lang {
    padding: 0.5rem 1.5rem !important;
    border-left: 2px solid #2f4553;
    color: #fff !important;
}

    .item-Lang input {
        /*float: right;
        transform: scale(1.5);*/
        display: none;
    }

/* ===== MOBILE FOOTER NAV ===== */

.bottom-nav.fab-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    height: 74px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 12px 8px 8px;
    z-index: 9999;
    background: transparent;
}

    .bottom-nav.fab-nav::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 62px;
        background: linear-gradient(180deg, #202437, #111321);
        box-shadow: 0 -4px 18px rgba(0,0,0,.45);
        z-index: -2;
    }

    .bottom-nav.fab-nav::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 65px;
        height: 50px;
        bottom: 12px;
        background: #0d0c1f;
        border-bottom-left-radius: 100px;
        border-bottom-right-radius: 100px;
        z-index: 1;
    }

.fab-nav .m-menu {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.fab-nav .div-nav-content {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .18s ease;
    flex-direction: column;
}

.fab-nav .menu-icon {
    font-size: 23px;
    color: #8b90aa;
    transition: .18s ease;
}

.fab-nav .div-nav-content .navbar-title {
    font-size: .55rem;
    font-weight: bolder;
    color: white;
    line-height: 0rem;
}


.div-nav-content.selected-nav .menu-icon {
    color: #25e0c3;
    transform: translateY(-2px) scale(1.1);
    text-shadow: 0 1px 0 #0b3f39, 0 2px 0 #0a3732, 0 3px 0 #072a26, 0 4px 6px rgba(0,0,0,.5);
    filter: drop-shadow(0 0 6px rgba(37,224,195,.6));
}

.fab-nav .div-nav-content:hover {
    transform: translateY(-4px);
}

.center-menu {
    position: relative;
}

.center-fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-top: -20px;
    background: linear-gradient(180deg, #5861ff, #1b1f9a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    transition: .18s ease;
    z-index: 2;
}

    .center-fab:hover,
    .center-fab.selected-fab {
        /*transform: translateY(-5px) scale(1.06);*/
        background: linear-gradient(180deg, #25e0c3, #168f80);
        box-shadow: 0 8px 0 #06443e, 0 0 24px rgba(37,224,195,.85), inset 0 3px 0 rgba(255,255,255,.35);
    }

.a-active {
    border-top: 2px solid #25e0c3;
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .bottom-nav.fab-nav {
        height: calc(74px + env(safe-area-inset-bottom));
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
    }
}

    .div-nav-content.selected-nav .browse-arrow,
    .div-nav-content.selected-nav .arrow-right {
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
        border-left: 13px solid #25e0c3;
        position: absolute;
        left: calc(100% + 10px);
        top: 65%;
        transform: translateY(-50%);
        z-index: 10;
        filter: drop-shadow(0 0 5px rgba(37,224,195,.9));
    }

    .div-nav-content.selected-nav .arrow-left,
    .div-nav-content.selected-nav .Bet-arrow {
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
        border-right: 13px solid #25e0c3;
        position: absolute;
        right: calc(100% + 10px);
        top: 65%;
        transform: translateY(-50%);
        z-index: 10;
        filter: drop-shadow(0 0 5px rgba(37,224,195,.9));
    }

.notify-wrapper {
    position: relative;
}

.notify-badge {
    position: absolute;
    top: -10px;
    left: -30px;
    min-width: 10px;
    height: 10px;
    padding: 0 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff5b5b, #d91f1f);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    line-height: 18px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .45);
}

.fa-icon {
    display: block;
}

.nav-3d-icon {
    display: none;
    width: 70px;
    height: 50px;
    object-fit: cover;
}

.nav-3d-icon-unselect {
    width: 100px;
    height: auto;
    object-fit: cover;
}

.selected-nav .fa-icon {
    display: none;
}

.selected-nav .nav-3d-icon {
    display: block;
    filter: drop-shadow(0 6px 6px rgba(0,0,0,.6));
}


/*====================Profile Dropdown======================*/
.Profile-dropdown-menu {
    display: flex;
    gap: .256rem;
    justify-content: end;
}

.dropdown-menu-arrow::before {
    content: "";
    position: absolute;
    top: -5px;
    right: 11px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    z-index: 1;
}

.dropdown-menu-arrow2::before {
    content: "";
    position: absolute;
    top: -5px;
    right: 50px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #feedad;
    z-index: 1;
}

.m-min-width-13dot5rem {
    min-width: 13.5rem !important;
}

.dropdown-menu-arrow2.dropdown-menu-transform {
    transform: translate(-13px, 50px) !important;
}

.dropdown-menu-border-radius {
    border-radius: .5rem !important;
}

/*====================Credit Dropdown======================*/

.dropdown-menu-credit-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: .25rem 0.556rem;
    background-color: #feedad;
}

.credit-balance-text {
    width: 16ch;
}

.credit-desc-lang {
    display: flex;
    align-items: center;
    width: 40%;
}

.credit-svg {
    display: inline-flex;
    font: 400 1rem / 1.5rem "proxima-nova", ui-sans-serif, -apple-system, system-ui, sans-serif;
    padding-right: 2.5px;
}

/* ================= RESPONSIVE SWITCH ================= */


.bootstrap-datetimepicker-widget.dropdown-menu {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: 95vw !important;
    max-width: 380px !important;
    min-width: 280px !important;
    box-sizing: border-box;
    z-index: 9999;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
    overflow: hidden;
}

    .bootstrap-datetimepicker-widget.dropdown-menu:before,
    .bootstrap-datetimepicker-widget.dropdown-menu:after {
        display: none !important;
    }

@media (max-width: 768px) {
    .desktop-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }

    /*.bootstrap-datetimepicker-widget.dropdown-menu {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: 95vw !important;
        max-width: 380px !important;
        min-width: 280px !important;
        box-sizing: border-box;
        z-index: 9999;
    }

    .bootstrap-datetimepicker-widget.dropdown-menu {
        background: #fff !important;
        border: 1px solid #ddd !important;
        border-radius: 10px !important;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
        overflow: hidden;
    }

        .bootstrap-datetimepicker-widget.dropdown-menu:before,
        .bootstrap-datetimepicker-widget.dropdown-menu:after {
            display: none !important;
        }*/

    /*.bootstrap-datetimepicker-widget table td,
    .bootstrap-datetimepicker-widget table th {
        padding: 12px !important;
        font-size: 16px !important;
    }

    .bootstrap-datetimepicker-widget .btn {
        padding: 10px 14px !important;
        font-size: 16px !important;
    }*/
}



/*======================Front Family========================*/

.font-family-default {
    font-family: "proxima-nova", ui-sans-serif, -apple-system, system-ui, sans-serif !important;
}

.font-botton-nav-family {
    font: 600 .75rem / 1rem "proxima-nova", ui-sans-serif, -apple-system, system-ui, sans-serif !important;
}

.font-w-600 {
    font-weight: 600 !important;
}

.font-size-1-25rem {
    font-size: 1.25rem;
}

.font-size-0-7rem {
    font-size: 0.7rem !important;
}

.m-ds-heading-large {
    font: 700 1.25rem / 1.75rem "proxima-nova", ui-sans-serif, -apple-system, system-ui, sans-serif !important;
}

.m-ds-body-md-strong {
    font: 600 1rem / 1.5rem "proxima-nova", ui-sans-serif, -apple-system, system-ui, sans-serif !important;
}

.m-ds-body-md {
    font: 400 1rem/1.5rem "proxima-nova",ui-sans-serif,-apple-system,system-ui,sans-serif !important;
}

.m-ds-body-sm-strong {
    font: 600 .875rem / 1.25rem "proxima-nova", ui-sans-serif, -apple-system, system-ui, sans-serif !important;
}

.m-ds-body-sm {
    font: 400 .875rem/1.25rem "proxima-nova",ui-sans-serif,-apple-system,system-ui,sans-seri !important;
    font: 400 1rem/1.5rem "proxima-nova",ui-sans-serif,-apple-system,system-ui,sans-serif !important;
}

.color-text-white {
    color: white !important;
}

.color-text-black{
    color: black !important;
}

.lagacy-subl-title {
    color: #b1bad3 !important;
}


/*======================Main UI========================*/

.Profile-dropdown-menu {
    display: flex;
    gap: 10px;
    /* gap: 12px; */
    align-items: center;
}

/* 3D GAME BUTTON */
.game-btn-3d {
    width: 45px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: none;
    /* cartoon gradient */
    /* background: linear-gradient( 180deg, #fff8c4 0%, #ffe27a 35%, #ffc83d 65%, #f0a500 100% ); */
    background-color: #25A18C !important;
    /* 3D depth */
    /* box-shadow: inset 0 3px 6px rgba(255,255,255,0.8), inset 0 -3px 0 rgba(140,90,0,0.4), 0 6px 0 #c48900, 0 10px 16px rgba(0,0,0,0.35); */
    /* transition: all 0.15s ease; */
}

    /* hover pop */
    .game-btn-3d:hover {
        /* transform: translateY(-2px) scale(1.05); */
        /* box-shadow: inset 0 3px 8px rgba(255,255,255,0.9), inset 0 -3px 0 rgba(140,90,0,0.4), 0 8px 0 #c48900, 0 14px 22px rgba(0,0,0,0.45); */
    }


/* icon size */
.nav-icon-profile {
    /*  width: 58px;
            height: 58px;
            pointer-events: none; */
    width: 58px;
    height: 40px;
    pointer-events: none;
}

.nav-icon-notification {
    /*  width: 58px;
            height: 58px;
            pointer-events: none; */
    width: 58px;
    height: 55px;
    pointer-events: none;
}



/* 3D dropdown menu panel */
.game-dropdown-menu {
    border-radius: 14px;
    padding: 10px;
    /* background: linear-gradient( 180deg, #fff8c4, #ffd75e ); */
    border: none;
    box-shadow: 0 6px 0 #00bc8c, 0 14px 24px rgba(0,0,0,0.35);
}


    /* dropdown item style */
    .game-dropdown-menu .dropdown-item {
        border-radius: 10px;
        padding: 8px 12px;
        font-weight: 600;
        transition: 0.15s;
    }

        .game-dropdown-menu .dropdown-item:hover {
            /*background: #fff3a0;*/
            /*background: #25A18C;*/
            background: #168571;
            transform: translateX(3px);
        }

/* circle button */
.icon-circle {
    width: 58px;
    height: 58px;
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(180deg,#8eeaff 0%, #4BBEED 45%, #2388da 100%);
            box-shadow: inset 0 3px 5px rgba(255,255,255,.35), inset 0 -4px 8px rgba(0,0,0,.18), 0 6px 14px rgba(0,0,0,.45); */
}

/* icon wrapper */
.icon-menu-cartoon {
    position: relative;
    width: 26px;
    height: 22px;
}

/* 3 bars */
.menu-bar {
    position: absolute;
    left: 0;
    display: block;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg,#ffffff 0%, #eaf9ff 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 2px 0 rgba(0,0,0,.18), 0 3px 5px rgba(0,0,0,.20);
}

.bar-1 {
    top: 2px;
    width: 14px;
}

.bar-2 {
    top: 9px;
    width: 18px;
}

.bar-3 {
    top: 16px;
    width: 22px;
}

/* small circle */
.menu-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(180deg,#ffffff 0%, #dff6ff 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 2px 0 rgba(0,0,0,.18), 0 3px 5px rgba(0,0,0,.20);
}