.account-header {}

input {
    border-color: #061f29 !important;
}

i {
    color: #061f29;
}

.app-action-sidebar path {
    color: #061f29;
}

.sidebar-header {
    color: #061f29;
    border-bottom: 1px solid #061f29;
}

.sidebar-header path {
    color: #061f29;
}

@media only screen and (max-width: 768px) {
    .app-toolbar {
        width: 100% !important;
    }
}

.sidebar-menu ul li a {
    display: flex;
    justify-content: start !important;
}

.sidebar-menu ul li a i {
    margin-right: 20px;
    line-height: 2px;
}

.acc-menu-item {
    display: flex;
}

.app-body {
    padding-bottom: 100px;
    background-color: #fff;
}

.app-toolbar {
    align-self: center;
    position: absolute;
    bottom: 0px;
    width: max-content;
    background-color: #fff;
}

.nav-toolbar.w-100 ul i {
    font-size: 30px;
}

.nav-toolbar ul li a {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}

.nav-toolbar ul li a i {
    margin-bottom: 5px;
}

.img-captcha img {
    border-radius: 5px;
    border: 1px solid rgb(255, 128, 0);
}

h3 {
    text-align: center;
    margin-top: 10px;
}

.list-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.list-card img {
    width: inherit;
    height: inherit;
}

.list-card a {
    width: 300px;
    /* height: 125px; */
    box-sizing: content-box;
    margin-bottom: 10px;
    margin-left: 10px;
}

.list-card a div {
    margin-top: -15px;
}

.list-card a:hover {
    border-color: #fb8600;
}

#sidebar {
    display: none;
}

.nav.nav-tabs.mb-3 li .active {
    color: #061f29;
}

.swal2-popup {
    font-size: 0.8rem !important;
}








/* Importing fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Reseting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
}

.wrapper {
    max-width: 450px;
    min-height: 500px;
    margin: 80px auto;
    padding: 40px 30px 30px 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.logo {
    width: 80px;
    margin: 0 1000;
}

.logo img {
    width: 100%;
    height: 80px;
}

.wrapper .name {
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.5px;
    padding-left: 10px;
    color: #2d3748;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wrapper .form-field input {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    background: none;
    font-size: 1rem;
    color: #2d3748;
    padding: 15px 20px;
    font-weight: 500;
}

.wrapper .form-field {
    padding: 0;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wrapper .form-field:focus-within {
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.wrapper .form-field .fas {
    color: #667eea;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.wrapper .btn {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wrapper .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.wrapper .btn:hover::before {
    left: 100%;
}

.wrapper .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.wrapper a {
    text-decoration: none;
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 500;
    transition: all 0.3s ease;
}

.wrapper a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.forgot-link, .register-link {
    font-size: 0.85rem !important;
    margin: 10px 0;
}

.forgot-link {
    color: #e53e3e !important;
}

.register-link {
    color: #667eea !important;
}

.login-link {
    color: #667eea !important;
    font-size: 0.9rem !important;
    text-align: center;
    display: block;
    margin-top: 15px;
}

.captcha-container {
    text-align: center;
    margin: 20px 0;
}

.captcha-hint {
    color: #718096;
    font-size: 0.8rem;
    margin-top: 10px;
    display: block;
}

@media(max-width: 380px) {
    .wrapper {
        margin: 30px 20px;
        padding: 40px 15px 15px 15px;
    }
}












/*Card containing 2 cards*/
.card0 {
    margin: 40px 12px 15px 12px;
    border: 0;
}

/*Left Side card*/
.card1 {
    margin: 0;
    padding: 15px;
    padding-bottom: 0px;
    height: 100%;
}

.bill-head {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 0px;
    margin-top: 0px;
    font-size: 30px;
}

.line {
    border-right: 1px grey solid;
}

.bill-date {
    color: #BDBDBD;
}

.red-bg {
    margin-top: 25px;
    margin-left: 0px;
    margin-right: 0px;
    background-color: #F44336;
    padding-left: 20px !important;
    padding: 25px 10px 25px 15px;
}

#total {
    margin-top: 0px;
    padding-left: 7px;
}

#total-label {
    margin-bottom: 0px;
    color: #ffffff;
    padding-left: 7px;
}

#heading1 {
    color: #ffffff;
    font-size: 20px;
    padding-left: 10px;
}

#heading2 {
    font-size: 27px;
    color: #D50000;
}

/*For font-awesome icons in Placeholder*/
.placeicon {
    font-family: fontawesome !important;
}

/*Right Side Card*/
.card2 {
    padding: 25px;
    margin: 0;
    height: 100%;
}

.form-card .pay {
    font-weight: bold;
}

.form-card input, .form-card textarea {
    padding: 10px 8px 10px 8px;
    border: none;
    border: 1px solid lightgrey;
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 14px;
    letter-spacing: 1px;
}

.form-card input:focus, .form-card textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none;
    font-weight: bold;
    border: 1px solid gray;
    outline-width: 0;
}

.btn-info {
    color: #ffffff !important;
}

/*Imaged Radio Buttons*/
.radio-group {
    position: relative;
    margin-bottom: 25px;
}

.radio {
    display: inline-block;
    width: 204;
    height: 100;
    border-radius: 0;
    box-sizing: border-box;
    border: 2px solid lightgrey;
    cursor: pointer;
    margin: 8px 25px 8px 0px;
}

.radio:hover {
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2);
}

.radio.selected {
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.4);
}

/*Fit image in bootstrap div*/
.fit-image {
    width: 100%;
    object-fit: cover;
}





.panel {
    background: aliceblue;
    padding: 0;
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.05), 0 0 0 10px rgba(0, 0, 0, 0.05);
    color: #061f29;
    border: 1px solid #fd7e14;
}

.panel .panel-heading {
    padding: 20px 15px;
    border-radius: 10px 10px 0 0;
    margin: 0;
}

.panel .panel-heading .title {
    color: #fd7e14;
    font-size: 26px;
    font-weight: bolder;
    text-transform: capitalize;
    line-height: 20px;
    margin: 0;
}

.panel .panel-heading .btn {
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    font-size: 16px;
    text-transform: capitalize;
    border: 2px solid #fff;
    border-radius: 50px;
    transition: all 0.3s ease 0s;
}

.panel .panel-heading .btn:hover {
    color: #fff;
    text-shadow: 3px 3px rgba(255, 255, 255, 0.2);
}

.panel .panel-heading .form-control {
    color: #fff;
    background-color: transparent;
    width: 35%;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease 0s;
}

.panel .panel-heading .form-control:focus {
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
    outline: none;
}

.panel .panel-heading .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    font-weight: 500;
}

.panel .panel-body {
    padding: 0;
}

.panel .panel-body .table thead tr th {
    color: black;
    font-size: 16px;
    font-weight: bolder;
    text-transform: uppercase;
    padding: 12px;
    border: none;
}

.panel .panel-body .table tbody tr td {
    color: black;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 12px;
    vertical-align: middle;
    border: none;
}

.panel .panel-body .table tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05);
}

.panel .panel-body .table tbody .action-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.panel .panel-body .table tbody .action-list li {
    display: inline-block;
    margin: 0 5px;
}

.panel .panel-body .table tbody .action-list li a {
    color: #fff;
    font-size: 15px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0s;
}

.panel .panel-body .table tbody .action-list li a:hover {
    text-shadow: 3px 3px 0 rgba(255, 255, 255, 0.3);
}

.panel .panel-body .table tbody .action-list li a:before,
.panel .panel-body .table tbody .action-list li a:after {
    content: attr(data-tip);
    color: #fff;
    background-color: #111;
    font-size: 12px;
    padding: 5px 7px;
    border-radius: 4px;
    text-transform: capitalize;
    display: none;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: -32px;
    transition: all 0.3s ease 0s;
}

.panel .panel-body .table tbody .action-list li a:after {
    content: '';
    height: 15px;
    width: 15px;
    padding: 0;
    border-radius: 0;
    transform: translateX(-50%) rotate(45deg);
    top: -18px;
    z-index: -1;
}

.panel .panel-body .table tbody .action-list li a:hover:before,
.panel .panel-body .table tbody .action-list li a:hover:after {
    display: block;
}

.panel .panel-footer {
    color: #fff;
    background-color: transparent;
    padding: 15px;
    border: none;
}

.panel .panel-footer .col {
    line-height: 35px;
}

.pagination {
    margin: 0;
}

.pagination li a {
    color: #fff;
    background-color: transparent;
    border: 2px solid transparent;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    line-height: 31px;
    width: 35px;
    height: 35px;
    padding: 0;
    margin: 0 3px;
    border-radius: 50px;
    transition: all 0.3s ease 0s;
}

.pagination li a:hover {
    color: #fff;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.2);
}

.pagination li a:focus,
.pagination li.active a,
.pagination li.active a:hover {
    color: #fff;
    background-color: transparent;
    border-color: #fff;
}

.pagination li:first-child a,
.pagination li:last-child a {
    border-radius: 50%;
}

@media only screen and (max-width:767px) {
    .panel .panel-heading .title {
        text-align: center;
        margin: 0 0 10px;
        font-size: 22px;
    }

    .panel .panel-heading .btn_group {
        text-align: center;
    }
}



.accountLayout {
    display: flex;
    width: 100%;
    min-height: auto;
}

.accountLayout__infoLeft {
    width: 30%;
    padding: 0 20px 20px 0
}

@media only screen and (max-width:768px) {
    .accountLayout__infoLeft {
        width: 35%
    }
}

@media only screen and (max-width:480px) {
    .accountLayout__infoLeft {
        width: 100%;
        padding: 0
    }

    .accountLayout {
        padding: 10px 0 20px 0;
    }
}


@media only screen and (max-width:768px) {
    .accountLayout__infoRight {
        width: 70%;
        margin-left: 0 !important;
    }
}

@media only screen and (max-width:480px) {
    .accountLayout__infoRight {
        width: 100%;
        margin-left: 0 !important;
    }
    .panel .panel-body .table tbody tr td {
        font-size: 12px;
    }
    .panel .panel-body .table thead tr th {
        font-size: 12px;
    }
}

@media only screen and (max-width:480px) {
    .accountLayout .container {
        flex-direction: column
    }
}
.accountLayout__infoRight {
    background-color: #fff;
    border: 1px solid #fd7e14;
    border-radius: 5px;
    min-height: auto;
    min-width: 65%;
    margin-left: 30px;
    padding: 0;
    vertical-align: baseline;
}

.profileInfo .row {
    border-bottom: 1px solid #fd7e14;
    color: #5b545b;
    font-weight: 600;
    padding: 16px 0 16px 0;
    --bs-gutter-x: 1rem;
    margin-left: unset;
    margin-right: unset;
}

.btn-center {
    display: flex;
    justify-content: center;
}

.btn-capnhat {
    height: 30px !important;
    width: 160px !important;
    margin-top: -6px;
    border: 1px solid #fd7e14;
    border-radius: 8px;
    background-color: #fd7e14;
}

.txt-payment {
    color: #fffced !important;
    font-weight: bold;
}

.userInfo_name img {
    width: 34px;
}

.userInfo_name {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.userInfo_name p {
    margin-left: 5px;
}
@media only screen and (max-width: 1920px) {
    .username {
        white-space: nowrap;
        width: 155px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media only screen and (max-width: 1920px) {
    .coin-number {
        font-size: 18px;
    }
}

.footer2 {
    background-color: #fff;
    position: fixed;
    height: 60px;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-top: 2px solid darkcyan;
}

.footer2 i {
    color: #fd7e14;
    font-size: large;
}

.footer2 p {
    font-style: normal;
    font-size: 10px !important;
    color: black;
}
@media only screen and (max-width: 768px) {
    footer p, footer span, footer a {
        font-size: 10px !important;
    }
    .panel .panel-body .table tbody tr td {
        font-size: 12px;
    }
    .panel .panel-body .table thead tr th {
        font-size: 12px;
    }
}

.box {
    flex: 0 0 auto;
    width: 19%;
}

.btn_auto_copy {
    margin-left: 20px
}

.line {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.sidebar_icon {
    margin-right: 10px;
    margin-top: unset !important;
}

/* Futuristic Dashboard Styles */
.dashboard-container {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

.shape-5 {
    width: 140px;
    height: 140px;
    top: 10%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 2;
    padding: 60px 20px 40px;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.main-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: aquamarine;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
}

/* Hexagonal Grid */
.hex-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    height: 600px;
}

.hex-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
}

.hex-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hex-card:hover::before {
    opacity: 1;
}

.hex-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
}

.hex-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -2;
}

.hex-card:hover .hex-glow {
    opacity: 0.3;
}

/* Grid Positioning */
.main-hex {
    grid-column: 2;
    grid-row: 1 / 3;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.locked-hex {
    grid-column: 1;
    grid-row: 1;
}

.event-hex {
    grid-column: 3;
    grid-row: 1;
}

.server-hex {
    grid-column: 1;
    grid-row: 2;
}

.action-hex {
    grid-column: 3;
    grid-row: 2;
}

.status-hex {
    grid-column: 2;
    grid-row: 3;
}

/* Hex Content */
.hex-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.hex-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hex-info h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.hex-value {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 5px;
}

.hex-unit {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.hex-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-top: 10px;
}

.hex-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.hex-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.quick-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.quick-btn:hover {
    background: rgba(102, 126, 234, 0.4);
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

/* Status Indicator */
.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #48bb78;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-indicator span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Floating Action Button */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.fab-main:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.fab-main.active {
    transform: rotate(45deg);
}

.fab-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fab-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.fab-item:hover {
    background: rgba(102, 126, 234, 0.3);
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.fab-item::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.fab-item:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hex-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 20px;
    }
    
    .main-hex {
        grid-column: 1;
        grid-row: 1;
    }
    
    .locked-hex {
        grid-column: 1;
        grid-row: 2;
    }
    
    .event-hex {
        grid-column: 1;
        grid-row: 3;
    }
    
    .server-hex {
        grid-column: 1;
        grid-row: 4;
    }
    
    .action-hex {
        grid-column: 1;
        grid-row: 5;
    }
    
    .status-hex {
        grid-column: 1;
        grid-row: 6;
    }
    
    .fab-container {
        bottom: 20px;
        right: 20px;
    }
    
    .fab-main {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .fab-item {
        width: 40px;
        height: 40px;
    }
}

/* Account Hub Styles */
.account-hub {
    min-height: 50vh;
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.hub-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bg-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50% 50% 0 0;
    animation: waveMove 6s ease-in-out infinite;
}

.wave-1 {
    animation-delay: 0s;
    opacity: 0.3;
}

.wave-2 {
    animation-delay: 2s;
    opacity: 0.2;
    height: 80px;
}

.wave-3 {
    animation-delay: 4s;
    opacity: 0.1;
    height: 60px;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-20px); }
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-icons i {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: iconFloat 8s ease-in-out infinite;
}

.floating-icons i:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icons i:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.floating-icons i:nth-child(4) {
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.3; }
}

/* Profile Card */
.profile-card {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid aquamarine;
    display: flex;
    align-items: center;
    gap: 30px;
}

.profile-avatar {
    position: relative;
}

.avatar-container {
    position: relative;
}

.avatar-ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: mediumaquamarine;
    position: absolute;
    top: -5px;
    left: -5px;
    animation: ringRotate 10s linear infinite;
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.avatar-inner {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #667eea;
    position: relative;
    z-index: 1;
}

.avatar-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid white;
}

.avatar-status.online {
    background: #48bb78;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.profile-details {
    flex: 1;
}

.profile-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-title {
    color: #718096;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.profile-stats {
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-label {
    color: #718096;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hub Content */
.hub-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hub-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 3px solid aquamarine;
    transition: all 0.3s ease;
}

.hub-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.header-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.header-text h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 5px;
}

.header-text p {
    color: #718096;
    font-size: 1rem;
}

/* Payment Grid */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.payment-option {
    position: relative;
    background: linear-gradient(135deg, #f0fff0 0%, #e6ffe6 100%);
    border: 3px solid #32cd32;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(50, 205, 50, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.1);
}

.option-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 17px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.payment-option:hover .option-glow {
    opacity: 0.3;
}

.payment-option:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    text-decoration: none;
    color: inherit;
}

.option-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.option-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.banking-option .option-icon {
    background: linear-gradient(135deg, #48bb78, #38a169);
}

.card-option .option-icon {
    background: linear-gradient(135deg, #48bb78, #38a169);
}

.option-info {
    flex: 1;
}

.option-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.option-info p {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.option-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.option-arrow {
    color: #667eea;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.payment-option:hover .option-arrow {
    transform: translateX(5px);
}

/* Account Grid */
.account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.account-item {
    background: linear-gradient(135deg, #f0fff0 0%, #e6ffe6 100%);
    border: 3px solid #32cd32;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 0 1px rgba(50, 205, 50, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.1);
}

.account-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.balance-item {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-color: rgba(102, 126, 234, 0.2);
}

.item-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.item-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.item-title h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.item-title p {
    color: #718096;
    font-size: 0.8rem;
}

.item-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label {
    color: #718096;
    font-weight: 500;
}

.value {
    color: #2d3748;
    font-weight: 600;
}

.password-mask {
    font-family: 'Courier New', monospace;
}

.balance-display {
    text-align: center;
}

.balance-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #667eea;
    display: block;
    margin-bottom: 5px;
}

.balance-unit {
    color: #718096;
    font-size: 0.9rem;
    font-weight: 500;
}

.action-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #32cd32;
    cursor: pointer;
    width: fit-content;
    box-shadow: 
        0 0 0 1px rgba(50, 205, 50, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.action-button.edit {
    background: linear-gradient(135deg, #32cd32 0%, #228b22 100%);
    color: white;
}

.action-button.edit:hover {
    background: #c53030;
    color: white;
    text-decoration: none;
}

.action-button.add {
    background: linear-gradient(135deg, #32cd32 0%, #228b22 100%);
    color: white;
}

.action-button.add:hover {
    background: #5a67d8;
    color: white;
    text-decoration: none;
}

/* Actions Grid */
.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.quick-action {
    background: linear-gradient(135deg, #f0fff0 0%, #e6ffe6 100%);
    border: 3px solid #32cd32;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 
        0 0 0 1px rgba(50, 205, 50, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.1);
}

.quick-action:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.action-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.2rem;
}

.action-text h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.action-text p {
    color: #718096;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .profile-stats {
        justify-content: center;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .account-grid {
        grid-template-columns: 1fr;
    }
    
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .option-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Top-up Page Styles */
.topup-page {
    min-height: 100vh;
    padding: 20px;
}

.topup-container {
    max-width: 1200px;
    margin: 0 auto;
}

.topup-header {
    text-align: center;
    margin-bottom: 40px;
}

.topup-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.topup-header p {
    font-size: 1.2rem;
    color: #718096;
    font-weight: 500;
}

.payment-methods-section {
    margin-bottom: 50px;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.payment-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 25px;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.payment-card:hover::before {
    left: 100%;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
    text-decoration: none;
    color: inherit;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    flex-shrink: 0;
}

.card-method .card-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.banking-method .card-icon {
    background: linear-gradient(135deg, #48bb78, #38a169);
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 20px;
    line-height: 1.5;
}

.card-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.feature {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-arrow {
    color: #667eea;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.payment-card:hover .card-arrow {
    transform: translateX(10px);
}

.selection-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    color: #667eea;
    font-weight: 600;
    font-size: 1rem;
}

.selection-note i {
    font-size: 1.2rem;
}

.history-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: #718096;
    font-size: 1rem;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.history-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.item-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.item-type {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #2d3748;
}

.item-type i {
    color: #667eea;
    font-size: 1.1rem;
}

.item-pin {
    font-size: 0.9rem;
    color: #718096;
}

.pin-masked {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #667eea;
}

.item-time {
    font-size: 0.85rem;
    color: #a0aec0;
}

.item-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.item-status {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
}

.item-status.success {
    background: #c6f6d5;
    color: #22543d;
}

.item-status.error {
    background: #fed7d7;
    color: #742a2a;
}

.item-status.pending {
    background: #bee3f8;
    color: #2a4365;
}

.item-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #667eea;
}

.empty-history {
    text-align: center;
    padding: 60px 20px;
    color: #a0aec0;
}

.empty-history i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #e2e8f0;
}

.empty-history h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #718096;
}

.empty-history p {
    font-size: 1rem;
    color: #a0aec0;
}

@media (max-width: 768px) {
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .card-content {
        margin: 20px 0;
    }
    
    .history-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .item-right {
        text-align: left;
        width: 100%;
    }
}

/* History Page Styles */
.history-page {
    min-height: 100vh;
    padding: 20px;
}

.history-container {
    max-width: 1200px;
    margin: 0 auto;
}

.history-header {
    text-align: center;
    margin-bottom: 40px;
}

.history-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.history-header p {
    font-size: 1.2rem;
    color: #718096;
    font-weight: 500;
}

.history-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.table-container {
    width: 100%;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

.table-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

.table-title i {
    color: mediumaquamarine;
    font-size: 1.3rem;
}

.table-actions {
    display: flex;
    gap: 15px;
}

.refresh-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.refresh-btn i {
    font-size: 0.9rem;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.modern-table thead {
    background: linear-gradient(135deg, #48bb78, #38a169);
}

.modern-table thead th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 700;
    color: white;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.modern-table tbody tr:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: scale(1.01);
}

.modern-table tbody tr:last-child {
    border-bottom: none;
}

.modern-table tbody td {
    padding: 20px 15px;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
}

.modern-table tbody td:first-child {
    font-weight: 700;
    color: #667eea;
}

.modern-table tbody td:nth-child(2) {
    font-weight: 600;
    color: #2d3748;
}

.modern-table tbody td:nth-child(3) {
    font-weight: 700;
    color: #48bb78;
    font-size: 1.1rem;
}

.modern-table tbody td:nth-child(4) {
    color: #718096;
    font-size: 0.9rem;
}

.modern-table tbody td:last-child {
    font-weight: 600;
}

/* Status badges */
.status-success {
    background: #c6f6d5;
    color: #22543d;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
}

.status-error {
    background: #fed7d7;
    color: #742a2a;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
}

.status-pending {
    background: #bee3f8;
    color: #2a4365;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
}

/* DataTables customization */
.dataTables_wrapper {
    padding: 0;
}

.dataTables_length,
.dataTables_filter {
    margin-bottom: 20px;
}

.dataTables_length select,
.dataTables_filter input {
    padding: 8px 12px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dataTables_length select:focus,
.dataTables_filter input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.dataTables_info {
    color: #718096;
    font-weight: 500;
    margin-top: 20px;
}

.dataTables_paginate {
    margin-top: 20px;
}

.dataTables_paginate .paginate_button {
    padding: 8px 12px;
    margin: 0 2px;
    border: 2px solid transparent;
    border-radius: 8px;
    color: #667eea;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dataTables_paginate .paginate_button:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: #667eea;
    color: #667eea;
}

.dataTables_paginate .paginate_button.current {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: #667eea;
}

@media (max-width: 768px) {
    .table-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .table-actions {
        width: 100%;
        justify-content: center;
    }
    
    .modern-table thead th,
    .modern-table tbody td {
        padding: 15px 10px;
        font-size: 0.85rem;
    }
    
    .history-header h1 {
        font-size: 2rem;
    }
    
    .history-header p {
        font-size: 1rem;
    }
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

.game-title h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2d3748;
    margin: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-title p {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
    font-weight: 500;
}

.user-section {
    position: relative;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.user-info:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.user-avatar {
    font-size: 2.5rem;
    color: #667eea;
}

.user-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.username {
    font-weight: 700;
    color: #2d3748;
    font-size: 1.1rem;
}

.user-balance {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
}

.user-balance i {
    font-size: 0.8rem;
}

.user-menu-toggle {
    color: #667eea;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.user-info:hover .user-menu-toggle {
    transform: rotate(180deg);
}

.user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.user-info:hover .user-menu,
.user-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.menu-item:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    text-decoration: none;
}

.menu-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Navigation Bottom Styles */
.nav-bottom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 12px;
    text-decoration: none;
    color: #718096;
    transition: all 0.3s ease;
    position: relative;
    min-width: 60px;
}

.nav-item:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    text-decoration: none;
    transform: translateY(-2px);
}

.nav-item.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.15);
}

.nav-item.active::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #667eea;
    border-radius: 50%;
}

.nav-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-icon {
    transform: scale(1.1);
}

.nav-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .header-content {
        padding: 15px 0;
    }
    
    .logo-section {
        gap: 15px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .game-title h1 {
        font-size: 1.5rem;
    }
    
    .game-title p {
        font-size: 0.8rem;
    }
    
    .user-info {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .user-avatar {
        font-size: 2rem;
    }
    
    .username {
        font-size: 1rem;
    }
    
    .user-balance {
        font-size: 0.8rem;
    }
    
    .nav-items {
        padding: 12px 0;
    }
    
    .nav-item {
        padding: 8px 10px;
        min-width: 50px;
    }
    
    .nav-icon {
        font-size: 1.3rem;
    }
    
    .nav-label {
        font-size: 0.7rem;
    }
}

/* Ancient Wuxia Banking Styles */
.ancient-banking-hub {
    min-height: 100vh;
    position: relative;
    background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23228b22' fill-opacity='0.05'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm-20 18c-9.941 0-18-8.059-18-18s8.059-18 18-18 18 8.059 18 18-8.059 18-18 18z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(135deg, #f0fff0 0%, #e6ffe6 50%, #ccffcc 100%);
    font-family: 'Ma Shan Zheng', cursive;
    overflow: hidden;
}

.ancient-banking-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.ancient-banking-wrapper {
    width: 100%;
    max-width: 800px;
}

.ancient-banking-box {
    background: linear-gradient(135deg, #f0fff0 0%, #e6ffe6 100%);
    border: 3px solid #32cd32;
    border-radius: 16px;
    box-shadow: 
        0 0 0 1px rgba(50, 205, 50, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 40px;
    position: relative;
    font-family: 'Ma Shan Zheng', cursive;
}

.ancient-banking-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23228b22' fill-opacity='0.08'%3E%3Cpath d='M20 20c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm-20 18c-9.941 0-18-8.059-18-18s8.059-18 18-18 18 8.059 18 18-8.059 18-18 18z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.12;
}

.ancient-banking-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
}

.ancient-banking-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #228b22;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 4px rgba(34, 139, 34, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.ancient-banking-title i {
    color: #32cd32;
    text-shadow: 2px 2px 4px rgba(50, 205, 50, 0.5);
}

.ancient-banking-subtitle {
    font-size: 1.1rem;
    color: #006400;
    margin: 0;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 100, 0, 0.3);
}

.ancient-payment-tabs {
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
}

.ancient-tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.ancient-tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f0fff0 0%, #e6ffe6 100%);
    border: 3px solid #228b22;
    border-radius: 0;
    color: #006400;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Ma Shan Zheng', cursive;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-shadow: 1px 1px 2px rgba(0, 100, 0, 0.3);
}

.ancient-tab-btn:hover {
    background: linear-gradient(135deg, #e6ffe6 0%, #ccffcc 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 139, 34, 0.3);
}

.ancient-tab-btn.active {
    background: linear-gradient(135deg, #32cd32 0%, #228b22 100%);
    border-color: #32cd32;
    color: #f0fff0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 
        0 0 0 2px rgba(50, 205, 50, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2);
}

.ancient-tab-btn i {
    font-size: 1.2rem;
}

.ancient-tab-content {
    position: relative;
    z-index: 3;
}

.ancient-tab-pane {
    display: none;
}

.ancient-tab-pane.active {
    display: block;
}

.ancient-payment-info {
    background: 
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23228b22' fill-opacity='0.05'%3E%3Cpath d='M40 40c0-22.091-17.909-40-40-40s-40 17.909-40 40 17.909 40 40 40 40-17.909 40-40zm-40 20c-11.046 0-20-8.954-20-20s8.954-20 20-20 20 8.954 20 20-8.954 20-20 20z'/%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(135deg, #f0fff0 0%, #e6ffe6 100%);
    border: 4px solid #228b22;
    border-radius: 0;
    padding: 30px;
    box-shadow: 
        0 0 0 2px #006400,
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
}

.ancient-payment-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23228b22' fill-opacity='0.08'%3E%3Cpath d='M15 15c0-8.284-6.716-15-15-15s-15 6.716-15 15 6.716 15 15 15 15-6.716 15-15zm-15 7.5c-4.142 0-7.5-3.358-7.5-7.5s3.358-7.5 7.5-7.5 7.5 3.358 7.5 7.5-3.358 7.5-7.5 7.5z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.08;
}

.ancient-info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 2px solid rgba(34, 139, 34, 0.2);
    position: relative;
    z-index: 2;
}

.ancient-info-item:last-child {
    border-bottom: none;
}

.ancient-info-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #006400;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0, 100, 0, 0.3);
}

.ancient-info-label i {
    color: #228b22;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(34, 139, 34, 0.3);
}

.ancient-info-value {
    color: #228b22;
    font-weight: 600;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(34, 139, 34, 0.3);
}

.ancient-info-value.highlight {
    color: #006400;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 100, 0, 0.4);
}

.ancient-info-value-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ancient-copy-btn {
    background: linear-gradient(135deg, #228b22 0%, #006400 100%);
    color: #f0fff0;
    border: 2px solid #006400;
    border-radius: 0;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.ancient-copy-btn:hover {
    background: linear-gradient(135deg, #32cd32 0%, #228b22 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 139, 34, 0.4);
}

.ancient-copy-btn i {
    font-size: 1rem;
}

.ancient-notice-section {
    margin-top: 30px;
    background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23228b22' fill-opacity='0.05'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm-20 18c-9.941 0-18-8.059-18-18s8.059-18 18-18 18 8.059 18 18-8.059 18-18 18z'/%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(135deg, #f0fff0 0%, #e6ffe6 100%);
    border: 4px solid #228b22;
    border-radius: 0;
    padding: 20px;
    box-shadow: 
        0 0 0 2px #006400,
        0 5px 15px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 3;
}

.ancient-notice-content {
    color: #006400;
    font-size: 14px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 100, 0, 0.3);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ancient-notice-content i {
    color: #228b22;
    font-size: 1.2rem;
    margin-top: 2px;
    text-shadow: 1px 1px 2px rgba(34, 139, 34, 0.3);
}

.ancient-fanpage-link {
    color: #228b22;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(34, 139, 34, 0.3);
    transition: all 0.3s ease;
}

.ancient-fanpage-link:hover {
    color: #32cd32;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(50, 205, 50, 0.5);
}

/* Payment Tabs Styles for Banking Page */
.payment-tabs {
    margin-bottom: 30px;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    border: 3px solid #32cd32;
    border-radius: 8px;
    color: #006400;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Ma Shan Zheng', cursive;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-shadow: 1px 1px 2px rgba(0, 100, 0, 0.3);
    box-shadow: 
        0 0 0 1px rgba(50, 205, 50, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.tab-btn:hover {
    background: linear-gradient(135deg, #e6ffe6 0%, #ccffcc 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 139, 34, 0.3);
}

.tab-btn.active {
    background: linear-gradient(135deg, #228b22 0%, #006400 100%);
    color: #f0fff0;
    border-color: #006400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-content {
    position: relative;
    z-index: 3;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.payment-info {
    border: 3px solid #32cd32;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 
        0 0 0 1px rgba(50, 205, 50, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.payment-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23228b22' fill-opacity='0.08'%3E%3Cpath d='M15 15c0-8.284-6.716-15-15-15s-15 6.716-15 15 6.716 15 15 15 15-6.716 15-15zm-15 7.5c-4.142 0-7.5-3.358-7.5-7.5s3.358-7.5 7.5-7.5 7.5 3.358 7.5 7.5-3.358 7.5-7.5 7.5z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.08;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 2px solid rgba(34, 139, 34, 0.2);
    position: relative;
    z-index: 2;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #006400;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0, 100, 0, 0.3);
}

.info-label i {
    color: #228b22;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(34, 139, 34, 0.3);
}

.info-value {
    color: #228b22;
    font-weight: 600;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(34, 139, 34, 0.3);
}

.info-value.highlight {
    color: #006400;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 100, 0, 0.4);
}

.info-value-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.copy-btn {
    background: linear-gradient(135deg, #228b22 0%, #006400 100%);
    color: #f0fff0;
    border: 2px solid #006400;
    border-radius: 0;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #32cd32 0%, #228b22 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 139, 34, 0.4);
}

.copy-btn i {
    font-size: 1rem;
}

.notice-section {
    margin-top: 30px;
    border: 3px solid #32cd32;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 
        0 0 0 1px rgba(50, 205, 50, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 3;
}

.notice-content {
    color: #006400;
    font-size: 14px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 100, 0, 0.3);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.notice-content i {
    color: #228b22;
    font-size: 1.2rem;
    margin-top: 2px;
    text-shadow: 1px 1px 2px rgba(34, 139, 34, 0.3);
}

.fanpage-link {
    color: #228b22;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(34, 139, 34, 0.3);
    transition: all 0.3s ease;
}

.fanpage-link:hover {
    color: #32cd32;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(50, 205, 50, 0.5);
}

/* VN Card Form Styles */
.vn-form {
    margin-top: 20px;
}

.vn-card-form {
    display: flex;
    flex-direction: column;
}

.vn-card-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #006400;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0, 100, 0, 0.3);
}

.form-label i {
    color: #228b22;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(34, 139, 34, 0.3);
}

.form-select,
.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 3px solid #32cd32;
    border-radius: 8px;
    font-size: 16px;
    background: linear-gradient(135deg, #f0fff0 0%, #e6ffe6 100%);
    color: #006400;
    font-family: 'Ma Shan Zheng', cursive;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 0 1px rgba(50, 205, 50, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-select:focus,
.form-input:focus {
    outline: none;
    border-color: #32cd32;
    background: linear-gradient(135deg, #f0fff0 0%, #e6ffe6 100%);
    box-shadow: 
        0 0 0 2px rgba(50, 205, 50, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

.form-select::placeholder,
.form-input::placeholder {
    color: #228b22;
    opacity: 0.7;
}

.captcha-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.captcha-input {
    flex: 1;
}

.captcha-image {
    cursor: pointer;
    border: 3px solid #32cd32;
    border-radius: 8px;
    padding: 5px;
    background: linear-gradient(135deg, #f0fff0 0%, #e6ffe6 100%);
    box-shadow: 
        0 0 0 1px rgba(50, 205, 50, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.captcha-image:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 0 2px rgba(50, 205, 50, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

.vn-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #32cd32 0%, #228b22 100%);
    color: #f0fff0;
    border: 3px solid #32cd32;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Ma Shan Zheng', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(50, 205, 50, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.1);
}

.vn-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.vn-btn:hover::before {
    left: 100%;
}

.vn-btn:hover {
    background: linear-gradient(135deg, #48bb78 0%, #32cd32 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 0 0 2px rgba(50, 205, 50, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.2);
}

.vn-btn:active {
    transform: translateY(0);
}

.vn-btn i {
    font-size: 1.2rem;
}

.highlight {
    color: #dc2626;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(220, 38, 38, 0.3);
}

/* Responsive Design for Banking */
@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .info-value-group {
        width: 100%;
        justify-content: space-between;
    }
    
    .captcha-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .captcha-image {
        align-self: center;
    }
}

