/* Global Styles */
* {
    font-family: 'Urbanist', sans-serif;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', sans-serif;
    background-color: #060d0d;
    margin: 0;
    padding: 0;
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 8px;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 0 24px;
    }
}

.hero-desktop,
.hero-mobile {
    position: relative;
    width: 100%;
}

.hero-bg-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content-mobile {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 32px;
}

.hero-title {
    font-family: 'Alatsi', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: white;
    margin: 0;
    -webkit-text-stroke: 0px transparent;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 55px;
    }
}

.hero-title-mobile {
    font-family: 'Alatsi', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: white;
    margin: 0;
    -webkit-text-stroke: 0px transparent;
}

.hero-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 16px;
}

@media (min-width: 640px) {
    .hero-subtitle-wrapper {
        margin-top: 24px;
    }
}

.hero-subtitle-wrapper-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

@media (min-width: 640px) {
    .hero-subtitle-wrapper-mobile {
        margin-top: 24px;
    }
}

.hero-icon {
    display: flex;
    height: 24px;
    width: 24px;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-icon {
        height: 28px;
        width: 28px;
    }
}

.hero-icon-img {
    height: auto;
    width: 100%;
}

.hero-subtitle {
    font-family: 'Alatsi', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin: 0;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 20px;
    }
}

.hero-subtitle-mobile {
    font-family: 'Alatsi', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin: 0;
}

@media (min-width: 640px) {
    .hero-subtitle-mobile {
        font-size: 16px;
    }
}

/* Pattern Background Section */
.pattern-background-section {
    position: relative;
}

.pattern-bg-overlay {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    background-color: #060D0D;
    background-image: url('https://art-chip.s3.ap-southeast-1.amazonaws.com/next/backgrounds/home-pattern-4.webp');
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
    opacity: 1;
    pointer-events: none;
}

.pattern-content {
    position: relative;
    z-index: 10;
}

/* Categories Section */
.categories-section {
    padding: 16px 8px;
}

@media (min-width: 768px) {
    .categories-section {
        padding: 16px 24px;
    }
}

.categories-desktop {
    gap: 8px;
}

@media (min-width: 1024px) {
    .categories-desktop {
        gap: 12px;
    }
}

.category-item {
    flex: 1;
}

.category-link {
    position: relative;
    display: block;
    height: 88px;
    width: 100%;
    overflow: hidden;
    transition: transform 0.2s ease;
    text-decoration: none;
}

.category-link:hover {
    transform: scale(1.05);
}

.category-link.category-disabled {
    opacity: 0.75;
    cursor: default;
}

.category-image {
    width: 100%;
    height: 100%;
}

.category-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 12px;
}

.category-title {
    font-size: 14px;
    line-height: 1.2;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    order: 1;
}

@media (min-width: 640px) {
    .category-title {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .category-title {
        font-size: 18px;
    }
}

.category-coming-soon {
    font-size: 12px;
    line-height: 1.2;
    color: white;
    opacity: 0.8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 4px 0 0 0;
    order: 2;
}

/* Mobile Categories */
.categories-mobile {
    position: relative;
}

.categories-swiper {
    overflow: hidden;
    padding: 0 24px;
}

.category-item-mobile {
    flex: 1;
}

.category-link-mobile {
    position: relative;
    display: block;
    height: 80px;
    width: 100%;
    overflow: hidden;
    transition: transform 0.2s ease;
    text-decoration: none;
}

.category-link-mobile:hover {
    transform: scale(1.05);
}

.category-link-mobile.category-disabled {
    opacity: 0.75;
    cursor: default;
}

.category-image-mobile {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-overlay-mobile {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 8px 16px;
}

.category-title-mobile {
    font-size: 12px;
    line-height: 1.2;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    order: 1;
}

.category-coming-soon-mobile {
    font-size: 12px;
    line-height: 1.2;
    color: white;
    opacity: 0.8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 4px 0 0 0;
    order: 2;
}

.categories-nav-prev,
.categories-nav-next {
    width: 24px;
    height: 24px;
    background-color: #2d2d2d;
    border-radius: 50%;
    color: white;
    transition: background-color 0.2s ease;
}

.categories-nav-prev:hover,
.categories-nav-next:hover {
    background-color: #4A9A4A;
}

.categories-nav-prev::after,
.categories-nav-next::after {
    font-size: 12px;
}

/* Games Section */
.games-section {
    padding: 24px 0;
}

@media (min-width: 640px) {
    .games-section {
        padding: 24px 16px;
    }
}

@media (min-width: 768px) {
    .games-section {
        padding: 40px 24px;
    }
}

.games-header {
    margin-bottom: 24px;
    width: 100%;
}

.games-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
}

@media (min-width: 768px) {
    .games-header-content {
        padding: 8px;
    }
}

.games-header-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.games-title {
    font-family: 'Alatsi', sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

@media (min-width: 768px) {
    .games-title {
        font-size: 30px;
    }
}

.games-header-divider {
    height: 2px;
    flex: 1;
    background-color: #5AB25A;
    margin: 0 8px;
}

.games-nav-buttons {
    display: flex;
    flex-shrink: 0;
    gap: 8px;
}

.games-nav-btn {
    display: flex;
    height: 28px;
    width: 28px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 2px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
    transition: all 0.2s ease;
    padding: 0;
}

@media (min-width: 640px) {
    .games-nav-btn {
        height: 32px;
        width: 32px;
    }
}

.games-nav-btn:hover {
    border-color: rgba(3, 199, 44, 0.3);
    background-color: rgba(3, 199, 44, 0.3);
}

.games-nav-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.games-nav-icon {
    height: 8px;
    width: 8px;
    filter: brightness(0) invert(1);
}

@media (min-width: 640px) {
    .games-nav-icon {
        height: 12px;
        width: 12px;
    }
}

/* Game Card */
.game-card {
    width: 100%;
    position: relative;
    background: transparent;
    border-radius: 8px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.game-card-image-section {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
    height: 220px;
    width: 100%;
}

@media (min-width: 640px) {
    .game-card-image-section {
        height: 250px;
    }
}

@media (min-width: 768px) {
    .game-card-image-section {
        height: 300px;
        width: 237px;
    }
}

.game-card-media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    border-radius: 6px;
    background: #1a1a1a;
}

.game-card-media img,
.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.game-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    background-color: transparent;
    transition: all 0.3s ease;
    opacity: 0;
}

.game-card:hover .game-overlay {
    background-color: rgba(85, 188, 85, 0.7);
    opacity: 1;
}

.game-play-button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    opacity: 0;
}

@media (min-width: 640px) {
    .game-play-button {
        gap: 12px;
    }
}

.game-card:hover .game-play-button {
    opacity: 1;
}

.play-btn {
    display: flex;
    height: 48px;
    width: 48px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(3, 199, 44, 0.3);
    background-color: #000000;
    transition: all 0.2s ease;
    padding: 0;
}

@media (min-width: 640px) {
    .play-btn {
        height: 64px;
        width: 64px;
    }
}

.play-btn:hover {
    border-color: rgba(3, 199, 44, 0.3);
}

.play-icon {
    height: 16px;
    width: 16px;
    fill: rgba(3, 199, 44, 0.3);
}

@media (min-width: 640px) {
    .play-icon {
        height: 24px;
        width: 24px;
    }
}

.play-text {
    padding: 0 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

@media (min-width: 640px) {
    .play-text {
        font-size: 14px;
    }
}

.game-name-section {
    flex-shrink: 0;
    background: #000000;
    border-radius: 5px;
    overflow: visible;
    margin-top: 10px;
    width: 100%;
}

@media (min-width: 768px) {
    .game-name-section {
        width: 237px;
    }
}

.game-name-simple {
    padding: 10px 4px;
    margin: 0;
    text-align: center;
    border: 2px solid rgba(3, 199, 44, 0.3);
    border-radius: 5px;
    background-color: rgba(3, 199, 44, 0.16);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.game-card:hover .game-name-simple {
    background-color: #55bc55;
}

.game-name {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 500;
    color: white;
    margin: 0;
}

@media (min-width: 640px) {
    .game-name {
        font-size: 12px;
    }
}

/* Additional styles for game card structure */
.game-card-simple {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.game-card.group {
    width: 100%;
}

.game-card .absolute {
    position: absolute;
}

.game-card .inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.game-card .z-10 {
    z-index: 10;
}

.game-card .hidden {
    display: none;
}

@media (min-width: 640px) {
    .game-card .sm\:flex {
        display: flex;
    }

    .game-card:hover .sm\:group-hover\:opacity-100 {
        opacity: 1;
    }
}

.game-card .flex {
    display: flex;
}

.game-card .flex-col {
    flex-direction: column;
}

.game-card .items-center {
    align-items: center;
}

.game-card .justify-center {
    justify-content: center;
}

.game-card .gap-2 {
    gap: 8px;
}

@media (min-width: 640px) {
    .game-card .sm\:gap-3 {
        gap: 12px;
    }
}

.game-card .opacity-0 {
    opacity: 0;
}

.game-card .transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.game-card .transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.game-card .duration-300 {
    transition-duration: 300ms;
}

.game-card .h-12 {
    height: 48px;
}

.game-card .w-12 {
    width: 48px;
}

.game-card .h-4 {
    height: 16px;
}

.game-card .w-4 {
    width: 16px;
}

.game-card .px-2 {
    padding-left: 8px;
    padding-right: 8px;
}

.game-card .text-center {
    text-align: center;
}

.game-card .text-xs {
    font-size: 12px;
}

.game-card .font-semibold {
    font-weight: 600;
}

.game-card .text-white {
    color: white;
}

.game-card .rounded-full {
    border-radius: 9999px;
}

.game-card .border-2 {
    border-width: 2px;
}

.game-card .bg-black {
    background-color: #000000;
}

.game-card .transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.game-card .disabled\\:opacity-50:disabled {
    opacity: 0.5;
}

.game-card .max-w-full {
    max-width: 100%;
}

.game-card .truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.game-card .font-medium {
    font-weight: 500;
}

@media (min-width: 640px) {
    .game-card .sm\:h-16 {
        height: 64px;
    }

    .game-card .sm\:w-16 {
        width: 64px;
    }

    .game-card .sm\:h-6 {
        height: 24px;
    }

    .game-card .sm\:w-6 {
        width: 24px;
    }

    .game-card .sm\:text-sm {
        font-size: 14px;
    }

    .game-card .sm\:text-\[12px\] {
        font-size: 12px;
    }

    .game-card:hover .sm\:group-hover\:bg-\[#55BC55B3\] {
        background-color: rgba(85, 188, 85, 0.7);
    }
}

/* Swiper Games Styles */
.popular-games-swiper,
.top-games-swiper,
.new-games-swiper {
    overflow: hidden;
    padding: 0;
}

@media (min-width: 768px) {

    .popular-games-swiper,
    .top-games-swiper,
    .new-games-swiper {
        padding: 0 14px;
    }
}

.popular-games-swiper .swiper-slide,
.top-games-swiper .swiper-slide,
.new-games-swiper .swiper-slide {
    height: auto;
    width: 100%;
}

@media (min-width: 768px) {

    .popular-games-swiper .swiper-slide,
    .top-games-swiper .swiper-slide,
    .new-games-swiper .swiper-slide {
        width: auto;
    }
}

.popular-games-swiper .swiper-slide .game-card,
.top-games-swiper .swiper-slide .game-card,
.new-games-swiper .swiper-slide .game-card {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
}

@media (min-width: 768px) {

    .popular-games-swiper .swiper-slide .game-card,
    .top-games-swiper .swiper-slide .game-card,
    .new-games-swiper .swiper-slide .game-card {
        min-width: 230px;
        max-width: 270px;
        width: auto;
    }
}

/* Top Winners Section */
.top-winners-section {
    padding: 0 8px 32px 8px;
}

@media (min-width: 640px) {
    .top-winners-section {
        padding: 0 16px 32px 16px;
    }
}

.top-winners-header {
    margin-bottom: 24px;
    width: 100%;
}

.top-winners-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
}

@media (min-width: 768px) {
    .top-winners-header-content {
        padding: 8px;
    }
}

.top-winners-line {
    height: 2px;
    flex: 1;
    background-color: #5AB25A;
}

.top-winners-title {
    font-family: 'Alatsi', sans-serif;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: white;
    margin: 0;
    -webkit-text-stroke: 1px #5AB25A;
}

@media (min-width: 768px) {
    .top-winners-title {
        font-size: 24px;
    }
}

.top-winners-container {
    position: relative;
    overflow: hidden;
}

.top-winners-scroll {
    display: flex;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.winner-card {
    position: relative;
    width: 320px;
    flex-shrink: 0;
}

.winner-card-inner {
    display: flex;
    overflow: hidden;
    background-color: #55BC55;
    transition: background-color 0.2s ease;
}

.winner-image-wrapper {
    position: relative;
    margin: auto;
    height: 80px;
    width: 112px;
    overflow: hidden;
}

.winner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.winner-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    background-color: #55BC55;
    padding: 8px;
}

.winner-amount-badge {
    display: flex;
    min-width: fit-content;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
    padding: 8px 12px;
    font-size: 10px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.winner-coin-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.winner-game-name {
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10px;
    font-weight: 500;
    color: white;
}

.winner-username {
    font-size: 10px;
    color: white;
}

.winner-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -6px;
    z-index: 10;
    width: 1px;
    background-color: #060D0D;
}

/* Service Advantages Section */
.service-advantages-section {
    position: relative;
    margin-top: 32px;
    margin-bottom: 0;
    padding: 0 8px;
}

@media (min-width: 640px) {
    .service-advantages-section {
        padding: 0 16px;
    }
}

.service-advantages-banner {
    position: relative;
    overflow: hidden;
}

.service-banner-desktop,
.service-banner-mobile {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.service-advantages-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 16px;
    padding-right: 0;
}

@media (min-width: 768px) {
    .service-advantages-content {
        align-items: center;
        justify-content: flex-end;
        padding-top: 0;
        padding-right: 64px;
    }
}

.service-advantages-text {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.service-jackpot-title {
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .service-jackpot-title {
        font-size: 30px;
    }
}

@media (min-width: 1024px) {
    .service-jackpot-title {
        font-size: 50px;
    }
}

.service-jackpot-amount-wrapper {
    position: relative;
    margin-bottom: 8px;
}

.service-jackpot-svg {
    height: 48px;
    width: 100%;
}

@media (min-width: 768px) {
    .service-jackpot-svg {
        height: 64px;
    }
}

@media (min-width: 1024px) {
    .service-jackpot-svg {
        height: 80px;
    }
}

.service-coin-treasure {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

.coin-treasure-img {
    height: 32px;
    width: auto;
}

@media (min-width: 768px) {
    .coin-treasure-img {
        height: 80px;
    }
}

@media (min-width: 1024px) {
    .coin-treasure-img {
        height: 108px;
    }
}

.service-jackpot-amount {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jackpot-currency {
    font-size: 25px;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .jackpot-currency {
        font-size: 35px;
    }
}

@media (min-width: 1024px) {
    .jackpot-currency {
        font-size: 50px;
    }
}

.jackpot-number {
    font-size: 25px;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-left: 4px;
}

@media (min-width: 768px) {
    .jackpot-number {
        font-size: 35px;
    }
}

@media (min-width: 1024px) {
    .jackpot-number {
        font-size: 50px;
    }
}

.service-be-part {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 8px;
    color: white;
}

@media (min-width: 768px) {
    .service-be-part {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .service-be-part {
        font-size: 18px;
    }
}

/* Swiper Custom Styles */
.swiper-button-prev,
.swiper-button-next {
    color: white;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .container-fluid {
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media (min-width: 768px) {
    .container-fluid {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* ===== NAVBAR STYLES (Minimized) ===== */
.navbar-template4 {
    position: relative;
    z-index: 100;
    background-color: #000304;
}

.navbar-container {
    padding: 12px 8px;
}

@media (min-width: 768px) {
    .navbar-container {
        padding: 24px;
    }
}

.navbar-logo {
    height: auto;
    width: 120px;
}

.navbar-icon-btn {
    position: relative;
    display: flex;
    height: 50px;
    width: 50px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 2px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
    transition: transform 0.2s ease;
    padding: 0;
}

.navbar-icon-btn:hover {
    transform: scale(1.05);
}

.navbar-icon {
    height: 22px;
    width: 22px;
    transition: all 0.2s ease;
}

.navbar-icon-btn:hover .navbar-icon {
    filter: brightness(0) invert(1);
}

/* Navbar Tooltip */
.navbar-tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.navbar-tooltip {
    position: absolute;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-50%) translateY(4px);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
    top: 100%;
    left: 50%;
    margin-top: 8px;
}

.navbar-tooltip-wrapper:hover .navbar-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    transition-delay: 200ms;
}

.navbar-tooltip-content {
    border-radius: 8px;
    background: white;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    color: #111827;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    position: relative;
}

.navbar-tooltip-arrow {
    position: absolute;
    height: 0;
    width: 0;
    border: 4px solid transparent;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-color: white;
}

.navbar-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    display: grid;
    height: 16px;
    min-width: 16px;
    place-items: center;
    border-radius: 50%;
    background-color: #55BC55;
    padding: 0 4px;
    font-size: 10px;
    line-height: 1;
    font-weight: bold;
    color: black;
}

.btn-outline-hover {
    display: flex;
    width: 130px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 5px;
    border: 2px solid rgba(3, 199, 44, 0.3);
    background-color: #060D0D;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    transition: ease-out 0.5s;
    box-shadow: inset 0 0 0 0 #55bc55;
}

.btn-outline-hover:hover {
    color: white !important;
    box-shadow: inset 0 -100px 0 0 #55bc55 !important;
}

.btn-outline-hover:active {
    transform: scale(0.9);
}

.btn-filled-hover {
    position: relative;
    display: flex;
    width: 130px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 5px;
    border: 2px solid #55BC55;
    background-color: #55BC55;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    overflow: hidden;
}

.btn-filled-hover::after {
    content: ' ';
    width: 0%;
    height: 100%;
    background: rgba(19, 145, 19, 0.8);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
    top: 0;
    z-index: 1;
}

.btn-filled-hover:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.btn-filled-hover span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

.wallet-dropdown-wrapper {
    position: relative;
}

.wallet-btn {
    display: flex;
    height: 50px;
    width: 200px;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-radius: 5px;
    border: 2px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: white;
    transition: all 0.2s ease;
}

.wallet-btn:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.wallet-icon {
    height: 24px;
    width: 24px;
}

.wallet-amount {
    flex: 1;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    color: white;
}

.wallet-dropdown-icon {
    height: 12px;
    width: 12px;
    transition: transform 0.2s ease;
}

.wallet-dropdown-wrapper.active .wallet-dropdown-icon {
    transform: rotate(180deg);
}

.wallet-dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 1000;
    width: 200px;
    display: none;
}

.wallet-dropdown-wrapper.active .wallet-dropdown-menu {
    display: block;
}

.wallet-dropdown-outer {
    background-color: rgba(3, 199, 44, 0.3);
    border-radius: 0;
    padding: 2px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.wallet-dropdown-inner {
    background-color: #000304;
    border-radius: 0;
    padding: 10px;
}

.wallet-dropdown-items {
    border-radius: 7px;
    background-color: #000304;
    padding: 1px;
    overflow: hidden;
    border: 1px solid #5AB25A;
}

.wallet-dropdown-item {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: transparent;
    border-bottom: 1px solid #5AB25A;
    border-left: none;
    border-right: none;
    border-top: none;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wallet-dropdown-item:last-child {
    border-bottom: none;
}

.wallet-dropdown-item:hover {
    background-color: #55BC55;
}

.wallet-dropdown-item:hover .wallet-dropdown-label,
.wallet-dropdown-item:hover .wallet-dropdown-value {
    color: black;
}

.wallet-dropdown-label {
    color: white;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.wallet-dropdown-value {
    color: #55BC55;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.user-menu-wrapper {
    position: relative;
}

.user-menu-btn {
    display: flex;
    height: 50px;
    cursor: pointer;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    border: 2px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    color: white;
    transition: all 0.2s ease;
}

.user-menu-btn:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.user-initial {
    display: inline-flex;
    height: 29px;
    width: 29px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #55BC55;
    font-size: 12px;
    color: white;
}

.user-name {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-menu-icon {
    height: 12px;
    width: 12px;
    transition: transform 0.2s ease;
}

.user-menu-wrapper.active .user-menu-icon {
    transform: rotate(180deg);
}

.user-menu-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 1000;
    width: 150px;
    display: none;
}

.user-menu-wrapper.active .user-menu-dropdown {
    display: block;
}

.user-menu-dropdown-outer {
    background-color: rgba(3, 199, 44, 0.3);
    border-radius: 0;
    padding: 2px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.user-menu-dropdown-inner {
    background-color: #000304;
    border-radius: 0;
    padding: 10px;
}

.user-menu-dropdown-items {
    border-radius: 7px;
    background-color: #000304;
    padding: 1px;
    overflow: hidden;
    border: 1px solid #5AB25A;
}

.user-menu-item {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #5AB25A;
    padding: 8px 12px;
    background-color: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 12px;
}

.user-menu-item:last-child {
    border-bottom: none;
}

.user-menu-item:hover {
    background-color: #55BC55;
}

.user-menu-item:hover span {
    color: black;
}

.user-menu-item-icon {
    height: 20px;
    width: 20px;
    transition: all 0.2s ease;
}

.user-menu-item:hover .user-menu-item-icon {
    transform: scale(1.1);
    filter: brightness(0);
}

.user-menu-item span {
    font-size: 12px;
    color: white;
    transition: color 0.2s ease;
}

.language-switcher-mobile {
    position: relative;
}

.lang-btn-mobile {
    display: flex;
    height: 40px;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: transparent;
    padding: 0 4px;
    cursor: pointer;
}

.lang-flag {
    height: 14px;
    width: 20px;
}

.lang-label {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.lang-dropdown-icon {
    height: 12px;
    width: 12px;
    transition: transform 0.2s ease;
}

.language-switcher-mobile.active .lang-dropdown-icon {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 1001;
    min-width: 150px;
    display: none;
}

.language-switcher-mobile.active .language-dropdown {
    display: block;
}

.lang-option {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #5AB25A;
    padding: 8px 12px;
    background-color: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 12px;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background-color: #55BC55;
}

.lang-option:hover span {
    color: black;
}

.lang-option-icon {
    height: 20px;
    width: 20px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-option span {
    font-size: 12px;
    color: white;
    transition: color 0.2s ease;
}

.mobile-menu-btn {
    position: relative;
    display: flex;
    height: 40px;
    width: 45px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: transparent;
    color: white;
    transition: color 0.2s ease;
    padding: 0;
}

.mobile-menu-btn:hover {
    color: #03c72c;
}

.mobile-menu-icon {
    height: 20px;
    width: 20px;
}

/* SubNavbar (Announcement Section) */
.subnavbar-template4 {
    position: relative;
    z-index: 1;
    background-color: #000304;
    padding: 0 8px;
}

@media (min-width: 768px) {
    .subnavbar-template4 {
        padding: 0 24px;
    }
}

.subnavbar-container {
    z-index: 1;
    margin-bottom: 16px;
    border-radius: 5px;
    border: 2px solid rgba(3, 199, 44, 0.3);
    background: #060D0D;
    padding: 8px;
}

@media (min-width: 768px) {
    .subnavbar-container {
        margin-bottom: 0;
        padding: 12px;
    }
}

/* Desktop Layout */
.subnavbar-desktop-grid {
    grid-template-columns: 650px 1fr;
    align-items: center;
}

.subnavbar-announcement-wrapper {
    display: flex;
    justify-content: flex-start;
}

.subnavbar-announcement-pill {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    border-radius: 9999px;
    padding: 8px 16px 8px 0;
    color: #5AB25A;
    transition: color 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.subnavbar-announcement-pill:hover {
    color: white;
}

.subnavbar-announce-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.subnavbar-divider {
    height: 16px;
    width: 1px;
    flex-shrink: 0;
    background: #5AB25A;
}

.subnavbar-marquee-container {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    flex: 1;
}

.subnavbar-marquee-content {
    white-space: nowrap;
    word-wrap: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    padding-right: 50px;
    flex-shrink: 0;
    min-width: max-content;
}

.subnavbar-marquee-content span {
    font-size: 12px;
    font-weight: 500;
}

@media (min-width: 640px) {
    .subnavbar-marquee-content span {
        font-size: 13px;
    }
}

@media (min-width: 768px) {
    .subnavbar-marquee-content span {
        font-size: 14px;
    }
}

.subnavbar-marquee-duplicate {
    display: none;
}

.subnavbar-right-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.subnavbar-time-display {
    display: flex;
    height: 35px;
    align-items: center;
    padding: 0 12px;
}

@media (min-width: 768px) {
    .subnavbar-time-display {
        height: 30px;
    }
}

.subnavbar-time-text {
    background: white;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .subnavbar-time-text {
        font-size: 13px;
    }
}

@media (min-width: 768px) {
    .subnavbar-time-text {
        font-size: 14px;
    }
}

.subnavbar-language-wrapper {
    background: #060D0D;
    display: flex;
    height: 40px;
    align-items: center;
    border-radius: 6px;
    border: 2px solid rgba(3, 199, 44, 0.3);
    padding: 0 4px;
    color: white;
    transition: box-shadow 0.3s;
}

.subnavbar-language-wrapper:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.language-switcher-desktop {
    position: relative;
}

.lang-btn-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px 8px;
}

.lang-btn-desktop img.lang-flag {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-btn-desktop .lang-label {
    font-size: 14px;
    font-weight: 500;
}

.lang-btn-desktop .lang-dropdown-icon {
    width: 12px;
    height: 12px;
    transition: transform 0.2s;
}

.language-switcher-desktop.active .lang-dropdown-icon {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 1000;
    width: 150px;
    display: none;
}

.language-switcher-desktop.active .language-dropdown {
    display: block;
}

.language-dropdown-outer {
    background-color: rgba(3, 199, 44, 0.3);
    border-radius: 0;
    padding: 2px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.language-dropdown-inner {
    background-color: #000304;
    border-radius: 0;
    padding: 10px;
}

.language-dropdown-items {
    border-radius: 7px;
    background-color: #000304;
    padding: 1px;
    overflow: hidden;
}

.lang-option {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #5AB25A;
    padding: 8px 12px;
    background-color: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 12px;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background-color: #55BC55;
}

.lang-option:hover span {
    color: black;
}

.lang-option-icon {
    height: 20px;
    width: 20px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-option span {
    font-size: 12px;
    color: white;
    transition: color 0.2s ease;
}

/* About Us Section */
.about-section {
    padding: 24px 8px;
    min-height: calc(100vh - 200px);
}

@media (min-width: 640px) {
    .about-section {
        padding: 32px 16px;
    }
}

@media (min-width: 768px) {
    .about-section {
        padding: 48px 24px;
    }
}

@media (min-width: 1024px) {
    .about-section {
        padding: 64px 32px;
    }
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-border-wrapper {
    border-radius: 10px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    padding: 2px;
}

.about-content-wrapper {
    border-radius: 8px;
    padding: 20px;
}

@media (min-width: 640px) {
    .about-content-wrapper {
        padding: 24px;
    }
}

@media (min-width: 768px) {
    .about-content-wrapper {
        padding: 32px;
    }
}

@media (min-width: 1024px) {
    .about-content-wrapper {
        padding: 40px;
    }
}

.about-title {
    font-family: 'Alatsi', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #55BC55;
    margin: 0 0 24px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .about-title {
        font-size: 28px;
        margin-bottom: 28px;
    }
}

@media (min-width: 768px) {
    .about-title {
        font-size: 32px;
        margin-bottom: 32px;
    }
}

@media (min-width: 1024px) {
    .about-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
}

.about-content {
    color: white;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
}

@media (min-width: 640px) {
    .about-content {
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    .about-content {
        font-size: 16px;
        line-height: 1.9;
    }
}

@media (min-width: 1024px) {
    .about-content {
        font-size: 17px;
        line-height: 2;
    }
}

.about-content p {
    margin: 0;
    text-align: justify;
}

@media (min-width: 768px) {
    .about-content p {
        text-align: left;
    }
}

/* Mobile Layout */
.subnavbar-mobile-layout {
    align-items: center;
    justify-content: space-between;
}

.subnavbar-announcement-pill-mobile {
    position: relative;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    border-radius: 9999px;
    padding: 8px 8px 8px 0;
    font-size: 12px;
    color: #5AB25A;
    transition: color 0.3s;
    text-decoration: none;
    width: 100%;
}

.subnavbar-announcement-pill-mobile:hover {
    color: white;
}

.subnavbar-mobile-wallet {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000;
    height: 100%;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-drawer.active {
    transform: translateX(0);
}

.mobile-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 320px;
    max-width: 80vw;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: black;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.mobile-drawer-inner {
    display: flex;
    height: 100%;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-drawer-header {
    padding: 16px;
}

.mobile-drawer-title {
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.mobile-drawer-close {
    display: flex;
    height: 32px;
    width: 32px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background-color: #55BC55;
    color: black;
    transition: all 0.2s ease;
    border: none;
    padding: 0;
}

.mobile-drawer-close:hover {
    transform: rotate(90deg);
}

.close-icon {
    height: 20px;
    width: 20px;
}

.mobile-auth-buttons {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
}

.mobile-auth-container {
    border-radius: 0;
    background-color: black;
    padding: 12px;
}

.mobile-user-section {
    border-bottom: 1px solid rgba(3, 199, 44, 0.3);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wallet-dropdown-wrapper-mobile {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.wallet-btn-mobile {
    display: flex;
    height: 50px;
    width: 100%;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-radius: 5px;
    border: 2px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: white;
    transition: all 0.2s ease;
}

.wallet-btn-mobile:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.wallet-dropdown-menu-mobile {
    position: absolute;
    right: 0;
    left: 0;
    top: calc(100% + 8px);
    z-index: 1000;
    display: none;
}

.wallet-dropdown-wrapper-mobile.active .wallet-dropdown-menu-mobile {
    display: block;
}

.wallet-dropdown-wrapper-mobile.active .wallet-dropdown-icon {
    transform: rotate(180deg);
}

.user-menu-wrapper-mobile {
    position: relative;
    width: 100%;
}

.user-menu-btn-mobile {
    display: flex;
    height: 50px;
    width: 100%;
    cursor: pointer;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    border: 2px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    color: white;
    transition: all 0.2s ease;
}

.user-menu-btn-mobile:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.user-name-mobile {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
}

.user-menu-dropdown-mobile {
    position: absolute;
    right: 0;
    left: 0;
    top: calc(100% + 8px);
    z-index: 1000;
    display: none;
}

.user-menu-wrapper-mobile.active .user-menu-dropdown-mobile {
    display: block;
}

.user-menu-dropdown-mobile-outer {
    background-color: rgba(3, 199, 44, 0.3);
    border-radius: 0;
    padding: 2px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.user-menu-dropdown-mobile-inner {
    background-color: #000304;
    border-radius: 0;
    padding: 10px;
}

.user-menu-dropdown-mobile-items {
    border-radius: 7px;
    background-color: #000304;
    padding: 1px;
    overflow: hidden;
    border: 1px solid #5AB25A;
}

.user-menu-dropdown-mobile-items .user-menu-item {
    border-bottom: 1px solid #5AB25A;
}

.mobile-menu-items {
    padding: 0 0 16px 0;
}

.mobile-menu-item {
    display: flex;
    width: 100%;
    cursor: pointer;
    align-items: center;
    gap: 12px;
    border-radius: 0;
    border-bottom: 1px solid rgba(3, 199, 44, 0.3);
    padding: 16px;
    background-color: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
    color: white;
    transition: background-color 0.2s ease;
}

.mobile-menu-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-menu-item-icon-wrapper {
    display: flex;
    height: 32px;
    width: 32px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-item-icon {
    height: 28px;
    width: 28px;
    transition: all 0.2s ease;
}

.mobile-menu-item:hover .mobile-menu-item-icon {
    filter: brightness(0) invert(1);
}

.mobile-menu-item-text {
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.mobile-menu-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    display: grid;
    height: 16px;
    min-width: 16px;
    place-items: center;
    border-radius: 50%;
    background-color: #55BC55;
    padding: 0 4px;
    font-size: 10px;
    line-height: 1;
    font-weight: bold;
    color: black;
}

.mobile-drawer-footer {
    margin-top: auto;
    padding: 16px;
}

.mobile-apk-section {
    position: relative;
    margin-bottom: 32px;
}

.mobile-apk-text-overlay {
    position: absolute;
    top: 22%;
    left: 5%;
    z-index: 10;
    text-align: center;
}

.mobile-apk-title {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: bold;
    color: white;
}

.mobile-apk-image {
    width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.mobile-logout-section {
    border-top: 1px solid rgba(100, 86, 189, 0.33);
    padding-top: 16px;
}

.btn-logout-mobile {
    display: flex;
    width: 100%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: #55BC55;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: black;
    transition: all 0.2s ease;
    border: none;
}

.btn-logout-mobile:hover {
    background-color: #4aa84a;
}

.overlay-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.overlay-backdrop.active {
    display: block;
}

/* ===== FOOTER STYLES (Minimized) ===== */
.footer-template4 {
    position: relative;
    padding: 40px 8px 0 8px;
}

@media (min-width: 640px) {
    .footer-template4 {
        padding: 40px 16px 0 16px;
    }
}

.footer-links-inner {
    padding-top: 32px;
    padding-bottom: 24px;
}

.footer-apk-section {
    margin-bottom: 40px;
}

.footer-apk-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: transparent;
    padding: 24px;
}

@media (min-width: 768px) {
    .footer-apk-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        border: none;
        background-color: black;
        padding: 32px;
        padding-bottom: 0;
        align-items: center;
    }
}

.footer-apk-bg-pattern {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.footer-apk-svg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.footer-apk-left {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .footer-apk-left {
        grid-column: span 1;
    }
}

.footer-apk-title {
    font-size: 30px;
    line-height: 1.2;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

@media (min-width: 1024px) {
    .footer-apk-title {
        font-size: 40px;
    }
}

.footer-apk-subtitle {
    margin-top: 16px;
    font-size: 18px;
    color: white;
    margin-bottom: 0;
}

.footer-apk-btn {
    display: flex;
    width: fit-content;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 45px;
    background-color: #55BC55;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: bold;
    color: black;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
}

.footer-apk-btn::after {
    content: ' ';
    width: 0%;
    height: 100%;
    background: rgba(19, 145, 19, 0.8);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
    top: 0;
    z-index: 1;
}

.footer-apk-btn:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.footer-apk-btn:hover {
    background-color: #4AA44A;
}

.footer-apk-btn:active {
    transform: scale(0.95);
}

.footer-apk-btn span {
    position: relative;
    z-index: 2;
}

.footer-apk-btn-icon {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 2;
}

.footer-apk-middle {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

@media (min-width: 768px) {
    .footer-apk-middle {
        grid-column: span 1;
    }
}

.footer-apk-image {
    height: auto;
    width: 240px;
    object-fit: contain;
}

@media (min-width: 1024px) {
    .footer-apk-image {
        width: 550px;
    }
}

.footer-apk-right {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-apk-right {
        grid-column: span 1;
    }
}

.footer-qr-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-qr-border {
    border-radius: 8px;
    padding: 8px;
    border: 2px solid #55BC55;
    background: transparent;
}

.footer-qr-image-mobile {
    height: auto;
    width: 220px;
}

.footer-qr-text-mobile {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    color: white;
    margin: 0;
}

.footer-qr-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-qr-title-desktop {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-top: 0;
}

.footer-qr-border-desktop {
    border-radius: 6px;
    border: 1px solid #5AB25A;
}

.footer-qr-inner {
    border-radius: 6px;
    padding: 24px;
}

.footer-qr-image-desktop {
    height: auto;
    width: 200px;
}

.footer-payment-section {
    margin-bottom: 40px;
}

.footer-payment-card {
    border-radius: 5px;
    padding: 1px;
    background: transparent;
    border: 1px solid rgba(3, 199, 44, 0.3);
    margin-bottom: 24px;
}

.footer-payment-card:last-child {
    margin-bottom: 0;
}

.footer-payment-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 5px;
    background-color: black;
    padding: 24px;
}

@media (min-width: 768px) {
    .footer-payment-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-payment-title-mobile {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

.footer-payment-title-desktop {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

@media (min-width: 768px) {
    .footer-payment-title-desktop {
        font-size: 30px;
    }
}

@media (min-width: 1024px) {
    .footer-payment-title-desktop {
        font-size: 35px;
    }
}

.footer-payment-title-wrapper {
    flex-shrink: 0;
}

.footer-crypto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
    place-items: center;
}

.footer-crypto-icon {
    display: flex;
    height: 48px;
    width: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
    transition: all 0.2s ease;
}

.footer-crypto-icon:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.footer-crypto-icon img {
    width: 28px;
    height: 28px;
}

.footer-crypto-icons-desktop {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

@media (min-width: 768px) {
    .footer-crypto-icons-desktop {
        gap: 16px;
    }
}

.footer-more-btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    transition: all 0.2s ease;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
}

.footer-more-btn:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.footer-more-btn-desktop {
    display: flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    transition: all 0.2s ease;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
}

@media (min-width: 768px) {
    .footer-more-btn-desktop {
        padding: 0 20px;
        font-size: 16px;
    }
}

.footer-more-btn-desktop:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.footer-payment-timing {
    flex-shrink: 0;
    text-align: right;
    color: white;
}

.footer-timing-text {
    font-size: 10px;
    margin: 0;
}

.footer-bank-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    place-items: center;
}

.footer-bank-item {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    padding: 8px 16px;
    color: white;
    transition: all 0.2s ease;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
}

.footer-bank-item:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.footer-bank-item img {
    width: 20px;
    height: 20px;
}

.footer-bank-item span {
    font-size: 14px;
}

.footer-bank-icons-desktop {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

@media (min-width: 768px) {
    .footer-bank-icons-desktop {
        gap: 16px;
    }
}

.footer-bank-item-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    padding: 8px 16px;
    color: white;
    transition: all 0.2s ease;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
}

.footer-bank-item-desktop:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.footer-bank-item-desktop img {
    width: 20px;
    height: 20px;
}

.footer-bank-item-desktop span {
    font-size: 14px;
}

@media (min-width: 768px) {
    .footer-bank-item-desktop span {
        font-size: 16px;
    }
}

.footer-links-section {
    margin-bottom: 40px;
    border-radius: 5px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
    padding: 24px;
}

.footer-logo-mobile {
    margin-bottom: 32px;
}

.footer-logo-img-mobile {
    width: 190px;
    height: auto;
}

.footer-tagline-mobile {
    margin: 0 auto;
    max-width: 320px;
    font-size: 14px;
    line-height: 1.6;
    color: #d1d5db;
}

.footer-links-mobile {
    margin-bottom: 32px;
}

.footer-link-title {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: bold;
    color: #55BC55;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link-list li {
    margin: 0;
}

.footer-link-list a {
    font-size: 14px;
    color: #B4BBC5;
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-word;
}

.footer-link-list a:hover {
    color: #55BC55;
}

.footer-contact-mobile {
    margin-bottom: 32px;
}

.footer-contact-btn {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 5px;
    padding: 16px 12px;
    font-size: 14px;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
}

.footer-contact-btn:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.footer-contact-btn img {
    width: 23px;
    height: 23px;
}

.footer-links-desktop {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.footer-logo-img-desktop {
    width: 140px;
    height: auto;
}

.footer-tagline-desktop {
    margin-top: 24px;
    max-width: 240px;
    font-size: 12px;
    line-height: 1.6;
    color: #d1d5db;
}

.footer-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-btn-desktop {
    display: flex;
    max-width: 200px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 5px;
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: #0A1818;
}

.footer-contact-btn-desktop:hover {
    box-shadow: inset 0 0 6px 1px #55BC55;
}

.footer-contact-btn-desktop span {
    font-weight: 600;
}

.footer-contact-btn-desktop img {
    width: 20px;
    height: 20px;
}

.footer-description {
    margin-top: 32px;
    border-radius: 5px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background-color: #060D0D;
}

.footer-description-inner {
    border-radius: 10px;
    background-color: black;
    padding: 8px;
}

.footer-description-text {
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    color: white;
}

.footer-bottom {
    position: relative;
    margin-top: 32px;
    display: flex;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        padding-bottom: 32px;
    }
}

.footer-copyright {
    margin-bottom: 16px;
    font-size: 14px;
    color: white;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .footer-copyright {
        margin-bottom: 0;
    }
}

.footer-copyright-brand {
    color: rgb(85, 188, 85);
    font-weight: bold;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social-icon {
    transition: opacity 0.2s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    opacity: 0.8;
}

.footer-social-icon img {
    width: 24px;
    height: 24px;
}

/* Announcement Modal */
#announcementModal .modal-dialog {
    max-width: none;
    width: calc(100% - 1rem);
    margin: 1.75rem 0.5rem;
}

@media (min-width: 640px) {
    #announcementModal .modal-dialog {
        width: calc(100% - 2rem);
        margin: 1.75rem 1rem;
    }
}

@media (min-width: 768px) {
    #announcementModal .modal-dialog {
        width: calc(100% - 4rem);
        margin: 1.75rem 2rem;
    }
}

@media (min-width: 1024px) {
    #announcementModal .modal-dialog {
        width: calc(100% - 6rem);
        margin: 1.75rem 3rem;
    }
}

@media (min-width: 1280px) {
    #announcementModal .modal-dialog {
        width: calc(100% - 8rem);
        margin: 1.75rem 4rem;
    }
}

.announcement-modal {
    background: #060D0D;
    border: 2px solid rgba(3, 199, 44, 0.3);
    border-radius: 5px;
    color: white;
    height: 80vh;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.announcement-modal .modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
}

.announcement-modal-body {
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1;
    padding: 16px;
}

@media (min-width: 640px) {
    .announcement-modal-body {
        padding: 24px;
    }
}

@media (min-width: 768px) {
    .announcement-modal-body {
        padding: 24px;
    }
}

@media (min-width: 1024px) {
    .announcement-modal-body {
        padding: 32px;
    }
}

.announcement-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .announcement-header {
        margin-bottom: 24px;
    }
}

.announcement-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #D9D9D9;
    margin: 0;
}

@media (min-width: 640px) {
    .announcement-modal-title {
        font-size: 20px;
    }
}

.announcement-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    cursor: pointer;
    background: #55BC55;
    border: none;
    border-radius: 6px;
    transition: all 0.3s;
    padding: 0;
    color: black;
}

@media (min-width: 640px) {
    .announcement-close-btn {
        width: 33px;
        height: 33px;
    }
}

.announcement-close-btn:hover .announcement-close-icon {
    transform: rotate(180deg);
}

.announcement-close-icon {
    width: 16px;
    height: 16px;
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .announcement-close-icon {
        width: 20px;
        height: 20px;
    }
}

.announcement-content-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1;
}

.announcement-content-inner-border {
    min-height: 0;
    flex: 1;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.announcement-content-inner-padding {
    height: 100%;
    padding: 12px;
}

@media (min-width: 768px) {
    .announcement-content-inner-padding {
        padding: 16px;
    }
}

@media (min-width: 1024px) {
    .announcement-content-inner-padding {
        padding: 24px;
    }
}

.announcement-content-inner-padding>.row {
    height: 100%;
    margin: 0;
}

.announcement-content-inner-padding>.row>[class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
}

@media (min-width: 768px) {
    .announcement-content-inner-padding>.row>[class*="col-"] {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.announcement-section-title {
    font-size: 18px;
    font-weight: 500;
    color: white;
    margin: 0;
}

.announcement-list-container {
    min-height: 0;
    flex: 1;
    overflow-y: auto;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    padding: 12px;
}

@media (min-width: 768px) {
    .announcement-list-container {
        padding: 20px;
    }
}

.announcement-list-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.announcement-list-container::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.announcement-item-wrapper {
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s;
}

.announcement-item-btn {
    width: 100%;
    cursor: pointer;
    border-radius: 10px;
    padding: 8px 12px;
    text-align: left;
    transition: all 0.3s;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background: transparent;
    color: white;
}

@media (min-width: 768px) {
    .announcement-item-btn {
        padding: 12px 16px;
    }
}

.announcement-item-btn:hover {
    border-color: rgba(3, 199, 44, 0.5);
}

.announcement-item-active {
    background: #55BC55;
    color: white;
    border-color: #55BC55;
}

.announcement-item-title {
    font-size: 14px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .announcement-item-title {
        font-size: 16px;
    }
}

.announcement-item-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .announcement-item-arrow {
        width: 20px;
        height: 20px;
    }
}

.announcement-details-container {
    min-height: 0;
    width: 100%;
    flex: 1;
    overflow-y: auto;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    padding: 16px 12px;
    color: white;
}

@media (min-width: 768px) {
    .announcement-details-container {
        padding: 24px 20px;
    }
}

.announcement-details-container::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.announcement-details-inner {
    min-height: 100%;
}

.announcement-details-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.announcement-details-title {
    font-weight: 600;
    color: white;
    margin: 0;
    font-size: 16px;
}


.announcement-details-text {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
}

.announcement-details-text p {
    margin: 0 0 12px 0;
}

.announcement-details-text p:last-child {
    margin-bottom: 0;
}

/* Hide scrollbar but keep scrolling functionality */
.announcement-list-container,
.announcement-details-container {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Modal backdrop */
#announcementModal .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Login Modal */
#loginModal .modal-dialog {
    max-width: 400px;
    margin: 1.75rem auto;
}

@media (min-width: 640px) {
    #loginModal .modal-dialog {
        max-width: 500px;
    }
}

@media (min-width: 1024px) {
    #loginModal .modal-dialog {
        max-width: 590px;
    }
}

.login-modal {
    background: #060D0D;
    border: 2px solid rgba(3, 199, 44, 0.3);
    border-radius: 5px;
    color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.login-modal .modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
}

.login-modal-body {
    padding: 16px;
}

@media (min-width: 640px) {
    .login-modal-body {
        padding: 24px;
    }
}

@media (min-width: 1024px) {
    .login-modal-body {
        padding: 32px;
    }
}

.login-modal-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 640px) {
    .login-modal-inner {
        gap: 24px;
    }
}

.login-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.login-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #D9D9D9;
    margin: 0;
}

@media (min-width: 640px) {
    .login-modal-title {
        font-size: 20px;
    }
}

.login-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    cursor: pointer;
    background: #55BC55;
    border: none;
    border-radius: 6px;
    transition: all 0.3s;
    padding: 0;
}

@media (min-width: 640px) {
    .login-close-btn {
        width: 33px;
        height: 33px;
    }
}

.login-close-btn:hover .login-close-icon {
    transform: rotate(180deg);
}

.login-close-icon {
    width: 16px;
    height: 16px;
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .login-close-icon {
        width: 20px;
        height: 20px;
    }
}

.login-form {
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 640px) {
    .login-form {
        padding: 24px;
        gap: 24px;
    }
}

.login-form-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-field-wrapper {
    display: flex;
    flex-direction: column;
}

.login-label {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    display: block;
}

.login-input {
    width: 100%;
    height: 46px;
    appearance: none;
    border-radius: 5px;
    border: 1px solid #054516;
    background: transparent;
    padding: 8px 12px;
    color: white;
    font-size: 14px;
    transition: all 0.3s;
}

.login-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

@media (min-width: 640px) {
    .login-input {
        font-size: 14px;
    }

    .login-input::placeholder {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .login-input {
        height: 55px;
    }
}

.login-input:focus {
    outline: none;
    border-color: #55BC55;
    box-shadow: none;
}

.login-button-wrapper {
    margin-top: 24px;
}

.login-submit-btn,
.login-register-btn {
    width: 100%;
    cursor: pointer;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    border: none;
}

.login-submit-btn {
    background: #55BC55;
    color: black;
}

.login-submit-btn:active {
    transform: scale(0.95);
}

.login-submit-btn:disabled {
    opacity: 0.5;
}

.login-register-btn {
    background: #0A1818;
    color: white;
}

.login-register-btn:active {
    transform: scale(0.9);
}

/* Register Modal */
#registerModal .modal-dialog {
    max-width: 400px;
    margin: 1.75rem auto;
}

@media (min-width: 640px) {
    #registerModal .modal-dialog {
        max-width: 600px;
    }
}

@media (min-width: 1024px) {
    #registerModal .modal-dialog {
        max-width: 800px;
    }
}

@media (min-width: 1280px) {
    #registerModal .modal-dialog {
        max-width: 890px;
    }
}

.register-modal {
    background: #060D0D;
    border: 2px solid rgba(3, 199, 44, 0.3);
    border-radius: 5px;
    color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: visible;
    max-height: 80vh;
    overflow-y: auto;
}

.register-modal .modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
}

.register-modal-body {
    padding: 16px;
}

@media (min-width: 640px) {
    .register-modal-body {
        padding: 24px;
    }
}

@media (min-width: 1024px) {
    .register-modal-body {
        padding: 32px;
    }
}

.register-modal-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 640px) {
    .register-modal-inner {
        gap: 24px;
    }
}

.register-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.register-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #D9D9D9;
    margin: 0;
}

@media (min-width: 640px) {
    .register-modal-title {
        font-size: 20px;
    }
}

.register-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    cursor: pointer;
    background: #55BC55;
    border: none;
    border-radius: 6px;
    transition: all 0.3s;
    padding: 0;
}

@media (min-width: 640px) {
    .register-close-btn {
        width: 33px;
        height: 33px;
    }
}

.register-close-btn:hover .register-close-icon {
    transform: rotate(180deg);
}

.register-close-icon {
    width: 16px;
    height: 16px;
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .register-close-icon {
        width: 20px;
        height: 20px;
    }
}

.register-form {
    position: relative;
    overflow: visible;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 640px) {
    .register-form {
        padding: 24px;
        gap: 16px;
    }
}

.register-label {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    display: block;
}

.register-input,
.register-select {
    width: 100%;
    height: 46px;
    appearance: none;
    border-radius: 5px;
    border: 1px solid #054516;
    background: transparent;
    padding: 12px;
    color: white;
    font-size: 14px;
    transition: all 0.3s;
}

.register-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

@media (min-width: 640px) {

    .register-input,
    .register-select {
        font-size: 14px;
    }

    .register-input::placeholder {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {

    .register-input,
    .register-select {
        height: 55px;
    }
}

.register-input:focus,
.register-select:focus {
    outline: none;
    border-color: #55BC55;
    box-shadow: none;
}

.register-select {
    cursor: pointer;
}

.register-select option {
    background: #060D0D;
    color: white;
}

.register-divider {
    border: 0;
    border-top: 0.5px solid rgba(255, 255, 255, 0.4);
    margin: 0;
}

.register-button-wrapper {
    margin-top: 24px;
}

.register-submit-btn {
    width: 100%;
    cursor: pointer;
    border-radius: 10px;
    background: #55BC55;
    color: black;
    padding: 12px 16px 16px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    border: none;
}

.register-submit-btn:active {
    transform: scale(0.95);
}

.register-submit-btn:disabled {
    opacity: 0.5;
}

/* Hide scrollbar for register modal but keep scrolling */
.register-modal {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.register-modal::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* Button Hover Effects */
.outline-hover-effect {
    transition: ease-out 0.5s;
    box-shadow: inset 0 0 0 0 #55bc55;
}

.outline-hover-effect:hover {
    color: white !important;
    box-shadow: inset 0 -100px 0 0 #55bc55 !important;
}

.outline-hover-effect:active {
    transform: scale(0.9);
}

.filled-hover-effect {
    position: relative;
    overflow: hidden;
}

.filled-hover-effect::after {
    content: ' ';
    width: 0%;
    height: 100%;
    background: rgba(19, 145, 19, 0.8);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
    top: 0;
    z-index: 1;
}

.filled-hover-effect:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.filled-hover-effect span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

.filled-hover-effect:hover span {
    color: white;
    animation: filledScaleUp 0.3s ease-in-out;
}

@keyframes filledScaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Customer Service Modal */
#customerServiceModal .modal-dialog {
    max-width: none;
    width: calc(100% - 1rem);
    margin: 1.75rem 0.5rem;
}

@media (min-width: 640px) {
    #customerServiceModal .modal-dialog {
        width: calc(100% - 2rem);
        margin: 1.75rem 1rem;
    }
}

@media (min-width: 768px) {
    #customerServiceModal .modal-dialog {
        width: calc(100% - 4rem);
        margin: 1.75rem 2rem;
    }
}

@media (min-width: 1024px) {
    #customerServiceModal .modal-dialog {
        width: calc(100% - 6rem);
        margin: 1.75rem 3rem;
    }
}

@media (min-width: 1280px) {
    #customerServiceModal .modal-dialog {
        width: calc(100% - 8rem);
        margin: 1.75rem 4rem;
    }
}

.customer-service-modal {
    background: #060D0D;
    border: 2px solid rgba(3, 199, 44, 0.3);
    border-radius: 5px;
    color: white;
    height: 80vh;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.customer-service-modal .modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
}

.customer-service-modal-body {
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1;
    padding: 16px;
    position: relative;
}

@media (min-width: 768px) {
    .customer-service-modal-body {
        padding: 24px;
    }
}

@media (min-width: 1024px) {
    .customer-service-modal-body {
        padding: 32px;
    }
}

.customer-service-close-wrapper {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
}

.customer-service-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: #55BC55;
    border: none;
    border-radius: 6px;
    transition: all 0.3s;
    padding: 0;
}

@media (min-width: 640px) {
    .customer-service-close-btn {
        width: 33px;
        height: 33px;
    }
}

.customer-service-close-btn:hover .customer-service-close-icon {
    transform: rotate(180deg);
}

.customer-service-close-icon {
    width: 16px;
    height: 16px;
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .customer-service-close-icon {
        width: 20px;
        height: 20px;
    }
}

.customer-service-tabs-header {
    position: relative;
    margin-top: 40px;
    margin-bottom: 10px;
    overflow: visible;
    border-radius: 10px;
    background: #55BC55;
    padding: 1px;
}

@media (min-width: 768px) {
    .customer-service-tabs-header {
        margin-top: 40px;
    }
}

.customer-service-tab-icon {
    position: absolute;
    z-index: 1;
}

.customer-service-tab-icon-left {
    top: -8px;
    left: -25px;
    height: 55px;
    width: 40px;
}

@media (min-width: 640px) {
    .customer-service-tab-icon-left {
        top: -12px;
        height: 70px;
        width: 50px;
    }
}

@media (min-width: 768px) {
    .customer-service-tab-icon-left {
        top: -16px;
        height: 83px;
        width: 59px;
    }
}

.customer-service-tab-icon-right {
    bottom: -12px;
    right: -25px;
    height: 55px;
    width: 40px;
}

@media (min-width: 640px) {
    .customer-service-tab-icon-right {
        top: -12px;
        bottom: auto;
        height: 70px;
        width: 50px;
    }
}

@media (min-width: 768px) {
    .customer-service-tab-icon-right {
        top: -16px;
        height: 83px;
        width: 59px;
    }
}

.customer-service-tabs-inner {
    border-radius: 10px;
    background: #060D0D;
    padding: 12px 25px;
}

@media (min-width: 768px) {
    .customer-service-tabs-inner {
        background: #0A1818;
        padding: 0 66px;
    }
}

.customer-service-tabs-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 8px;
    padding: 8px 0;
}

@media (min-width: 768px) {
    .customer-service-tabs-container {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 0;
    }
}

.customer-service-tab-btn {
    flex: 1;
    border-radius: 2px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    padding: 12px 8px;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s;
    background: transparent;
    color: white;
    cursor: pointer;
}

@media (min-width: 768px) {
    .customer-service-tab-btn {
        border-radius: 0;
        border: none;
        padding: 16px 24px;
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .customer-service-tab-btn {
        padding: 16px 32px;
        font-size: 16px;
    }
}

.customer-service-tab-btn:hover {
    color: white;
}

.customer-service-tab-active {
    background: #55BC55;
    color: white;
}

@media (min-width: 768px) {
    .customer-service-tab-active {
        border: none;
    }
}

.customer-service-content {
    margin-top: 12px;
    min-height: 0;
    flex: 1;
    overflow-y: auto;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px;
}

@media (min-width: 768px) {
    .customer-service-content {
        padding: 16px;
    }
}

@media (min-width: 1024px) {
    .customer-service-content {
        padding: 24px;
    }
}

.customer-service-content-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .customer-service-content-inner {
        gap: 24px;
    }
}

.customer-service-tab-content {
    display: block;
}

.customer-service-tab-title {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin: 0;
}

@media (min-width: 768px) {
    .customer-service-tab-title {
        font-size: 16px;
    }
}

.customer-service-form {
    display: flex;
    flex-direction: column;
}

.customer-service-label {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    display: block;
}

.customer-service-input {
    width: 100%;
    height: 46px;
    appearance: none;
    border-radius: 5px;
    border: 1px solid #054516;
    background: transparent;
    padding: 12px;
    color: white;
    font-size: 14px;
    transition: all 0.3s;
}

.customer-service-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

@media (min-width: 640px) {
    .customer-service-input {
        font-size: 14px;
    }

    .customer-service-input::placeholder {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .customer-service-input {
        height: 55px;
    }
}

.customer-service-input:focus {
    outline: none;
    border-color: #55BC55;
    box-shadow: none;
}

.customer-service-textarea {
    width: 100%;
    min-height: 46px;
    appearance: none;
    border-radius: 5px;
    border: 1px solid #054516;
    background: transparent;
    padding: 12px;
    color: white;
    font-size: 14px;
    transition: all 0.3s;
    resize: vertical;
}

.customer-service-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

@media (min-width: 640px) {
    .customer-service-textarea {
        font-size: 14px;
    }

    .customer-service-textarea::placeholder {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .customer-service-textarea {
        min-height: 55px;
    }
}

.customer-service-textarea:focus {
    outline: none;
    border-color: #55BC55;
    box-shadow: none;
}

.customer-service-submit-btn {
    width: 100%;
    cursor: pointer;
    border-radius: 10px;
    background: #55BC55;
    color: black;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    border: none;
}

.customer-service-submit-btn:active {
    transform: scale(0.95);
}

.customer-service-list-container {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    padding: 12px;
    max-height: 400px;
    overflow-y: auto;
}

@media (min-width: 768px) {
    .customer-service-list-container {
        padding: 20px;
    }
}

.customer-service-list-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.customer-service-list-item {
    width: 100%;
    cursor: pointer;
    border-radius: 10px;
    padding: 8px 12px;
    text-align: left;
    transition: all 0.3s;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .customer-service-list-item {
        padding: 12px 16px;
    }
}

.customer-service-list-item:hover {
    border-color: rgba(3, 199, 44, 0.5);
}

.customer-service-list-item-active {
    background: #55BC55;
    color: white;
    border-color: #55BC55;
}

.customer-service-list-item span {
    font-size: 14px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .customer-service-list-item span {
        font-size: 16px;
    }
}

.customer-service-list-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .customer-service-list-arrow {
        width: 20px;
        height: 20px;
    }
}

.customer-service-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.customer-service-details-container {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    padding: 16px 12px;
    min-height: 200px;
}

@media (min-width: 768px) {
    .customer-service-details-container {
        padding: 24px 20px;
    }
}

.customer-service-details-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.customer-service-details-title {
    font-weight: 600;
    color: white;
    margin: 0;
    font-size: 16px;
}

.customer-service-details-text {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
}

.customer-service-details-text p {
    margin: 0 0 12px 0;
}

.customer-service-details-text p:last-child {
    margin-bottom: 0;
}

.customer-service-placeholder {
    padding: 40px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Hide scrollbar for customer service content but keep scrolling */
.customer-service-content {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.customer-service-content::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* Inquiry Tab */
.customer-service-inquiry-tab {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.customer-service-inquiry-form-wrapper {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px;
}

@media (min-width: 768px) {
    .customer-service-inquiry-form-wrapper {
        padding: 16px;
    }
}

@media (min-width: 1024px) {
    .customer-service-inquiry-form-wrapper {
        padding: 24px;
    }
}

.customer-service-inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 640px) {
    .customer-service-inquiry-form {
        gap: 24px;
    }
}

.customer-service-form-field {
    display: flex;
    flex-direction: column;
}

.customer-service-inquiry-submit {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
}

.customer-service-submit-btn {
    padding: 8px 32px;
    font-size: 16px;
    width: auto;
}

/* Table Styles */
.customer-service-table-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.customer-service-table-container {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.customer-service-table-scroll {
    height: 400px;
    overflow-x: auto;
    overflow-y: auto;
}

@media (min-width: 768px) {
    .customer-service-table-scroll {
        height: 500px;
    }
}

.customer-service-table {
    width: 100%;
    table-layout: fixed;
    font-size: 11px;
    border-collapse: collapse;
}

@media (min-width: 768px) {
    .customer-service-table {
        font-size: 14px;
    }
}

.customer-service-inquiry-table {
    min-width: 720px;
}

.customer-service-inquiry-table .customer-service-table-th:first-child,
.customer-service-inquiry-table .customer-service-table-td:first-child {
    width: 48px;
}

@media (min-width: 768px) {

    .customer-service-inquiry-table .customer-service-table-th:first-child,
    .customer-service-inquiry-table .customer-service-table-td:first-child {
        width: 56px;
    }
}

.customer-service-note-table {
    min-width: 680px;
}

.customer-service-note-table .customer-service-table-th:first-child,
.customer-service-note-table .customer-service-table-td:first-child {
    width: 48px;
}

@media (min-width: 768px) {

    .customer-service-note-table .customer-service-table-th:first-child,
    .customer-service-note-table .customer-service-table-td:first-child {
        width: 56px;
    }
}

.customer-service-betting-table {
    min-width: 1100px;
}

.customer-service-betting-table .customer-service-table-th:first-child,
.customer-service-betting-table .customer-service-table-td:first-child {
    width: 40px;
}

@media (min-width: 768px) {

    .customer-service-betting-table .customer-service-table-th:first-child,
    .customer-service-betting-table .customer-service-table-td:first-child {
        width: 56px;
    }
}

.customer-service-table-thead-tr {
    border-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: #153030;
}

.customer-service-table-th {
    padding: 8px 4px;
    text-align: left;
    font-weight: 700;
    color: white;
    font-size: 12px;
    border: 0;
    background: #153030;
}

@media (min-width: 768px) {
    .customer-service-table-th {
        padding: 12px 8px;
        font-size: 14px;
    }
}

.customer-service-table-td {
    padding: 8px 4px;
    color: white;
    border: 0;
}

@media (min-width: 768px) {
    .customer-service-table-td {
        padding: 12px 8px;
    }
}

.customer-service-table-row {
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
}

.customer-service-table-row:hover {
    border-color: #5AB25A;
    box-shadow: 0 5px 30px 0 rgba(85, 188, 85, 0.46) inset;
}

/* Status Pills */
.customer-service-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-weight: 500;
    padding: 4px 8px;
    font-size: 12px;
}

.customer-service-status-pending {
    background: #51A2FF;
    color: white;
}

.customer-service-status-unread {
    background: #F97316;
    color: white;
}

.customer-service-status-read {
    background: #16A34A;
    color: white;
}

.customer-service-status-lose {
    background: #DC2626;
    color: white;
}

.customer-service-status-win {
    background: #059669;
    color: white;
}

/* Details Button */
.customer-service-details-btn {
    border-radius: 6px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background: transparent;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    transition: all 0.2s;
    cursor: pointer;
}

.customer-service-details-btn:hover {
    background: #5AB25A;
    color: white;
}

/* Delete Button */
.customer-service-delete-btn {
    color: #EF4444;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
}

.customer-service-delete-btn:hover {
    color: #F87171;
}

/* Pagination */
.customer-service-pagination {
    flex-shrink: 0;
}

.customer-service-pagination-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.customer-service-pagination-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .customer-service-pagination-label {
        font-size: 14px;
    }
}

.customer-service-pagination-select {
    margin-left: 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: #153030;
    padding: 4px 8px;
    font-size: 12px;
    color: white;
}

@media (min-width: 768px) {
    .customer-service-pagination-select {
        font-size: 14px;
    }
}

.customer-service-pagination-select option {
    background: #153030;
    color: white;
}

.customer-service-pagination-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .customer-service-pagination-info {
        font-size: 14px;
    }
}

.customer-service-pagination-btn {
    cursor: pointer;
    padding: 4px;
    transition: all 0.2s;
    background: none;
    border: none;
    display: flex;
    align-items: center;
}

.customer-service-pagination-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.customer-service-pagination-arrow {
    width: 12px;
    height: 12px;
}

@media (min-width: 768px) {
    .customer-service-pagination-arrow {
        width: 16px;
        height: 16px;
    }
}

/* FAQ Tab Details */
.customer-service-faq-details {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    padding: 16px 12px;
}

@media (min-width: 768px) {
    .customer-service-faq-details {
        padding: 24px 20px;
    }
}

.customer-service-faq-details-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.customer-service-faq-details-title {
    font-weight: 600;
    color: white;
    margin: 0;
    font-size: 16px;
}

.customer-service-faq-details-text {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
}

.customer-service-faq-details-text p {
    margin: 0 0 12px 0;
}

.customer-service-faq-details-text p:last-child {
    margin-bottom: 0;
}

/* Note Tab */
.customer-service-note-tab {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Betting Tab */
.customer-service-betting-tab {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.customer-service-betting-table-scroll {
    overflow-x: auto;
}

/* Referrals Tab */
.customer-service-referrals-tab {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.customer-service-referrals-top {
    margin-bottom: 20px;
}

.customer-service-referral-input-wrapper {
    position: relative;
}

.customer-service-referral-input {
    width: 100%;
    height: 46px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 48px 12px 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    cursor: not-allowed;
}

@media (min-width: 640px) {
    .customer-service-referral-input {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .customer-service-referral-input {
        height: 55px;
    }
}

.customer-service-copy-btn {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-service-copy-btn:hover {
    opacity: 0.8;
}

.customer-service-referral-note {
    margin-top: 8px;
    padding-top: 16px;
    font-size: 14px;
    font-style: italic;
    color: white;
}

@media (min-width: 1024px) {
    .customer-service-referral-note {
        padding-top: 32px;
        font-size: 16px;
    }
}

.customer-service-referral-note-bold {
    font-weight: 600;
    color: #55BC55;
    font-style: normal;
}

.customer-service-qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .customer-service-qr-section {
        align-items: flex-end;
    }
}

.customer-service-qr-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.customer-service-qr-box {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 20px;
}

.customer-service-qr-download-btn {
    width: 220px;
    cursor: pointer;
    border-radius: 10px;
    background: #55BC55;
    color: black;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.customer-service-qr-download-btn:active {
    transform: scale(0.95);
}

.customer-service-referrals-table {
    display: flex;
    flex-direction: column;
    height: 400px;
}

@media (min-width: 768px) {
    .customer-service-referrals-table {
        height: 500px;
    }
}

.customer-service-table-header {
    overflow-x: auto;
}

@media (min-width: 768px) {
    .customer-service-table-header {
        overflow-x: visible;
    }
}

.customer-service-table-header table {
    min-width: 900px;
}

@media (min-width: 768px) {
    .customer-service-table-header table {
        min-width: 1100px;
    }
}

.customer-service-table-header {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 0;
    overflow: hidden;
}

.customer-service-table-body-scroll {
    flex: 1;
    overflow-y: auto;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-top: 0;
}

.customer-service-table-body-scroll table {
    min-width: 900px;
}

@media (min-width: 768px) {
    .customer-service-table-body-scroll table {
        min-width: 1100px;
    }
}

.customer-service-referral-points {
    color: #55BC55;
    transition: all 0.2s;
}

/* Profile Tab */
.customer-service-profile-tab {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.customer-service-profile-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.customer-service-profile-section-title {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin: 0;
}

@media (min-width: 768px) {
    .customer-service-profile-section-title {
        font-size: 16px;
    }
}

.customer-service-profile-input {
    width: 100%;
    height: 46px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    cursor: not-allowed;
}

@media (min-width: 640px) {
    .customer-service-profile-input {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .customer-service-profile-input {
        height: 55px;
    }
}

.customer-service-profile-separator {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.25);
    margin: 32px 0;
}

.customer-service-password-form {
    display: flex;
    flex-direction: column;
}

.customer-service-password-form .customer-service-form-submit {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
}

.customer-service-password-form .customer-service-submit-btn {
    width: auto;
    padding: 12px 24px;
    font-size: 14px;
}

/* Table Scrollbar */
.customer-service-table-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.customer-service-table-scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.customer-service-table-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.customer-service-table-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.customer-service-table-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.customer-service-table-body-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.customer-service-table-body-scroll::-webkit-scrollbar {
    width: 6px;
}

.customer-service-table-body-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.customer-service-table-body-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.customer-service-table-body-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Content Detail Views */
.customer-service-inquiry-detail,
.customer-service-note-detail {
    display: block;
}

.customer-service-content-detail {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    padding: 20px;
}

.customer-service-content-detail-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.customer-service-content-detail-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: #5AB25A;
    border: none;
    border-radius: 6px;
    transition: all 0.3s;
    padding: 0;
}

.customer-service-content-detail-close:hover {
    transform: rotate(180deg);
}

.customer-service-content-detail-close svg {
    width: 16px;
    height: 16px;
}

@media (min-width: 640px) {
    .customer-service-content-detail-close svg {
        width: 20px;
        height: 20px;
    }
}

.customer-service-content-detail-body {
    display: block;
}

.customer-service-content-detail-section {
    border-radius: 9px;
    border: 0.8px solid rgba(255, 255, 255, 0.4);
    padding: 16px;
}

.customer-service-content-detail-title {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.customer-service-content-detail-fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.customer-service-content-detail-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .customer-service-content-detail-field {
        margin-bottom: 24px;
    }
}

.customer-service-content-detail-label {
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.customer-service-content-detail-input {
    width: 100%;
    height: 46px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    cursor: not-allowed;
}

@media (min-width: 640px) {
    .customer-service-content-detail-input {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .customer-service-content-detail-input {
        height: 55px;
    }
}

.customer-service-content-detail-textarea {
    min-height: 120px;
    width: 100%;
    cursor: not-allowed;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.customer-service-content-detail-html {
    font-size: 12px;
    word-break: break-word;
}

@media (min-width: 768px) {
    .customer-service-content-detail-html {
        font-size: 14px;
    }
}

/* ===== TRANSACTION MODAL STYLES ===== */
#transactionModal .modal-dialog {
    max-width: none;
    width: calc(100% - 1rem);
    margin: 1.75rem 0.5rem;
}

@media (min-width: 640px) {
    #transactionModal .modal-dialog {
        width: calc(100% - 2rem);
        margin: 1.75rem 1rem;
    }
}

@media (min-width: 768px) {
    #transactionModal .modal-dialog {
        width: calc(100% - 4rem);
        margin: 1.75rem 2rem;
    }
}

@media (min-width: 1024px) {
    #transactionModal .modal-dialog {
        width: calc(100% - 6rem);
        margin: 1.75rem 3rem;
    }
}

@media (min-width: 1280px) {
    #transactionModal .modal-dialog {
        width: calc(100% - 8rem);
        margin: 1.75rem 4rem;
    }
}

.transaction-modal {
    background: #060D0D;
    border: 2px solid rgba(3, 199, 44, 0.3);
    border-radius: 5px;
    color: white;
    height: 80vh;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.transaction-modal .modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
}

.transaction-modal-body {
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1;
    padding: 16px;
    position: relative;
    gap: 16px;
}

@media (min-width: 768px) {
    .transaction-modal-body {
        padding: 24px;
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .transaction-modal-body {
        padding: 32px;
        gap: 24px;
    }
}

.transaction-close-wrapper {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
}

.transaction-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: #55BC55;
    border: none;
    border-radius: 6px;
    transition: all 0.3s;
    padding: 0;
}

@media (min-width: 640px) {
    .transaction-close-btn {
        width: 33px;
        height: 33px;
    }
}

.transaction-close-btn:hover .transaction-close-icon {
    transform: rotate(180deg);
}

.transaction-close-icon {
    width: 16px;
    height: 16px;
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .transaction-close-icon {
        width: 20px;
        height: 20px;
    }
}

/* Transaction Tabs Header */
.transaction-tabs-header {
    position: relative;
    margin-top: 40px;
    margin-bottom: 10px;
    overflow: visible;
    border-radius: 10px;
    background: #55BC55;
    padding: 1px;
}

.transaction-tab-icon {
    position: absolute;
    z-index: 1;
}

.transaction-tab-icon-left {
    top: -8px;
    left: -25px;
    height: 55px;
    width: 40px;
}

@media (min-width: 640px) {
    .transaction-tab-icon-left {
        top: -12px;
        height: 70px;
        width: 50px;
    }
}

@media (min-width: 768px) {
    .transaction-tab-icon-left {
        top: -16px;
        height: 83px;
        width: 59px;
    }
}

.transaction-tab-icon-right {
    bottom: -12px;
    right: -25px;
    height: 55px;
    width: 40px;
}

@media (min-width: 640px) {
    .transaction-tab-icon-right {
        top: -12px;
        bottom: auto;
        height: 70px;
        width: 50px;
    }
}

@media (min-width: 768px) {
    .transaction-tab-icon-right {
        top: -16px;
        height: 83px;
        width: 59px;
    }
}

.transaction-tabs-inner {
    border-radius: 10px;
    background: #060D0D;
    padding: 12px 25px;
}

@media (min-width: 768px) {
    .transaction-tabs-inner {
        background: #0A1818;
        padding: 0 66px;
    }
}

.transaction-tabs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 8px 0;
}

@media (min-width: 768px) {
    .transaction-tabs-container {
        gap: 8px;
        padding: 0;
    }
}

.transaction-tab-btn {
    flex: 1;
    border-radius: 2px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s;
    background: transparent;
    color: white;
    cursor: pointer;
}

@media (min-width: 768px) {
    .transaction-tab-btn {
        border-radius: 0;
        border: none;
        padding: 16px 24px;
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .transaction-tab-btn {
        padding: 16px 32px;
        font-size: 16px;
    }
}

.transaction-tab-btn:hover {
    color: white;
}

.transaction-tab-active {
    background: #55BC55;
    color: white;
}

@media (min-width: 768px) {
    .transaction-tab-active {
        border: none;
    }
}

/* Transaction Content */
.transaction-content {
    margin-top: 12px;
    min-height: 0;
    flex: 1;
    overflow-y: auto;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px;
}

@media (min-width: 768px) {
    .transaction-content {
        padding: 16px;
    }
}

@media (min-width: 1024px) {
    .transaction-content {
        padding: 24px;
    }
}

.transaction-content-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .transaction-content-inner {
        gap: 24px;
    }
}

/* Wallet Summary */
.transaction-wallet-summary {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media (min-width: 768px) {
    .transaction-wallet-summary {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 12px;
    }
}

.transaction-wallet-item {
    padding: 4px;
}

@media (min-width: 768px) {
    .transaction-wallet-item {
        padding: 12px 16px;
    }
}

.transaction-wallet-item>div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 4px 8px;
}

@media (min-width: 768px) {
    .transaction-wallet-item>div {
        gap: 12px;
        padding: 12px 16px;
    }
}

.transaction-wallet-label {
    font-size: 12px;
    font-weight: 600;
    color: white;
}

@media (min-width: 768px) {
    .transaction-wallet-label {
        font-size: 15px;
    }
}

.transaction-wallet-value {
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    color: white;
    text-align: center;
}

@media (min-width: 768px) {
    .transaction-wallet-value {
        font-size: 18px;
    }
}

.transaction-wallet-divider-mobile {
    display: block;
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
    margin: 4px 0;
}

@media (min-width: 768px) {
    .transaction-wallet-divider-mobile {
        display: none;
    }
}

.transaction-wallet-divider-desktop {
    display: none;
    height: 12px;
    width: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 12px;
}

@media (min-width: 768px) {
    .transaction-wallet-divider-desktop {
        display: inline-block;
        height: 16px;
    }
}

/* Transaction Tab Content */
.transaction-tab-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .transaction-tab-content-wrapper {
        gap: 24px;
    }
}

.transaction-tab-content {
    display: block;
}

.transaction-tab-content.d-none {
    display: none;
}

/* Deposit Tabs */
.transaction-deposit-tabs-header {
    margin-top: 40px;
    margin-bottom: 10px;
    border-radius: 10px;
    background: #55BC55;
    padding: 1px;
}

.transaction-deposit-tabs-inner {
    border-radius: 10px;
    background: #060D0D;
    padding: 12px;
}

@media (min-width: 768px) {
    .transaction-deposit-tabs-inner {
        background: #0A1818;
    }
}

.transaction-deposit-tabs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

@media (min-width: 768px) {
    .transaction-deposit-tabs-container {
        gap: 8px;
    }
}

.transaction-deposit-tab-btn {
    flex: 1;
    border-radius: 2px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s;
    background: transparent;
    color: white;
    cursor: pointer;
}

@media (min-width: 768px) {
    .transaction-deposit-tab-btn {
        flex: none;
        border: none;
        padding: 12px 24px;
        font-size: 14px;
    }
}

.transaction-deposit-tab-btn:hover {
    color: white;
}

.transaction-deposit-tab-active {
    background: #55BC55;
    color: white;
}

@media (min-width: 768px) {
    .transaction-deposit-tab-active {
        border: none;
    }
}

.transaction-deposit-content {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px;
}

@media (min-width: 768px) {
    .transaction-deposit-content {
        padding: 16px;
    }
}

@media (min-width: 1024px) {
    .transaction-deposit-content {
        padding: 24px;
    }
}

.transaction-deposit-tab-content {
    display: block;
}

.transaction-deposit-tab-content.d-none {
    display: none;
}

/* Payment Methods */
.transaction-payment-section {
    margin-bottom: 12px;
}

.transaction-payment-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.transaction-payment-section-title {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin: 0;
}

@media (min-width: 768px) {
    .transaction-payment-section-title {
        font-size: 16px;
    }
}

.transaction-payment-section-approval {
    font-size: 12px;
    color: #55BC55;
}

@media (min-width: 768px) {
    .transaction-payment-section-approval {
        font-size: 14px;
    }
}

.transaction-payment-methods-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: stretch;
}

.transaction-payment-method-card {
    flex: 0 0 calc(50% - 0.5px);
    border-right: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.transaction-payment-method-card:nth-child(2n) {
    border-right: 1px solid rgba(3, 199, 44, 0.3) !important;
}

.transaction-payment-method-divider {
    display: none;
}

@media (min-width: 640px) {
    .transaction-payment-methods-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .transaction-payment-method-card {
        flex: none;
        border-right: 1px solid rgba(255, 255, 255, 0.25) !important;
    }

    .transaction-payment-method-card:last-child,
    .transaction-payment-method-card:nth-child(3n) {
        border-right: 1px solid rgba(3, 199, 44, 0.3) !important;
    }
}

@media (min-width: 1024px) {
    .transaction-payment-methods-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .transaction-payment-method-card:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, 0.25) !important;
    }

    .transaction-payment-method-card:nth-child(4n) {
        border-right: 1px solid rgba(3, 199, 44, 0.3) !important;
    }
}

@media (min-width: 1280px) {
    .transaction-payment-methods-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .transaction-payment-method-card:nth-child(4n) {
        border-right: 1px solid rgba(255, 255, 255, 0.25) !important;
    }

    .transaction-payment-method-card:nth-child(6n) {
        border-right: 1px solid rgba(3, 199, 44, 0.3) !important;
    }
}

.transaction-payment-method-card {
    display: flex;
    height: 64px;
    width: 100%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background: white;
    transition: all 0.3s;
    padding: 0;
}

@media (min-width: 640px) {
    .transaction-payment-method-card {
        height: 75px;
    }
}

.transaction-payment-method-card:hover {
    border-color: #55BC55;
    box-shadow: 0 0 10px 0 rgba(85, 188, 85, 0.46) inset;
}

.transaction-payment-method-logo {
    height: 40px;
    width: 96px;
    object-fit: contain;
}

@media (min-width: 640px) {
    .transaction-payment-method-logo {
        height: 64px;
        width: 120px;
    }
}

.transaction-payment-section-divider {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

/* Deposit History */
.transaction-deposit-history-section {
    margin-top: 32px;
}

.transaction-section-title {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin: 0 0 16px 0;
}

@media (min-width: 768px) {
    .transaction-section-title {
        font-size: 16px;
    }
}

/* Withdrawal Tabs */
.transaction-withdrawal-tabs-header {
    margin-bottom: 10px;
    border-radius: 10px;
    background: #55BC55;
    padding: 1px;
}

.transaction-withdrawal-tabs-inner {
    border-radius: 10px;
    background: #060D0D;
    padding: 12px;
}

@media (min-width: 768px) {
    .transaction-withdrawal-tabs-inner {
        background: #0A1818;
    }
}

.transaction-withdrawal-tabs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

@media (min-width: 768px) {
    .transaction-withdrawal-tabs-container {
        gap: 8px;
    }
}

.transaction-withdrawal-tab-btn {
    flex: 1;
    border-radius: 2px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s;
    background: transparent;
    color: white;
    cursor: pointer;
}

@media (min-width: 768px) {
    .transaction-withdrawal-tab-btn {
        flex: none;
        border: none;
        padding: 12px 24px;
        font-size: 14px;
    }
}

.transaction-withdrawal-tab-btn:hover {
    color: white;
}

.transaction-withdrawal-tab-active {
    background: #55BC55;
    color: white;
}

@media (min-width: 768px) {
    .transaction-withdrawal-tab-active {
        border: none;
    }
}

.transaction-withdrawal-content {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px;
}

@media (min-width: 768px) {
    .transaction-withdrawal-content {
        padding: 16px;
    }
}

@media (min-width: 1024px) {
    .transaction-withdrawal-content {
        padding: 24px;
    }
}

.transaction-withdrawal-tab-content {
    display: block;
}

.transaction-withdrawal-tab-content.d-none {
    display: none;
}

/* Forms */
.transaction-crypto-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.transaction-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.transaction-label {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    display: block;
}

.transaction-label-hint {
    font-size: 12px;
    color: #5AB25A;
}

.transaction-input {
    width: 100%;
    height: 46px;
    appearance: none;
    border-radius: 5px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background: transparent;
    padding: 12px;
    color: white;
    font-size: 12px;
    transition: all 0.3s;
}

.transaction-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

@media (min-width: 640px) {
    .transaction-input {
        font-size: 14px;
    }

    .transaction-input::placeholder {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .transaction-input {
        height: 55px;
    }
}

.transaction-input:focus {
    outline: none;
    border-color: #55BC55;
    box-shadow: none;
}

.transaction-input-disabled {
    border-color: #054516;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
}

/* Hide number input spinner/counter */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.transaction-form-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 768px) {
    .transaction-form-input-group {
        flex-direction: row;
        align-items: center;
    }
}

.transaction-submit-btn {
    cursor: pointer;
    border-radius: 10px;
    background: #55BC55;
    color: black;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .transaction-submit-btn {
        width: auto;
    }
}

.transaction-submit-btn:active {
    transform: scale(0.95);
}

.transaction-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.transaction-form-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

/* Receiving Bank Section */
.transaction-receiving-bank-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.transaction-section-subtitle {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin: 0;
}

@media (min-width: 768px) {
    .transaction-section-subtitle {
        font-size: 16px;
    }
}

.transaction-form-separator {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.25);
    margin: 32px 0;
}

/* Crypto Select */
.transaction-crypto-select-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.transaction-crypto-select {
    position: relative;
    display: flex;
    height: 46px;
    width: 100%;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background: transparent;
    padding: 12px;
    color: white;
    font-size: 12px;
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .transaction-crypto-select {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .transaction-crypto-select {
        height: 55px;
    }
}

.transaction-crypto-select:hover {
    border-color: #55BC55;
}

.transaction-crypto-select-text {
    color: white;
}

.transaction-crypto-select-arrow {
    width: 20px;
    height: 20px;
    color: white;
    transition: transform 0.2s;
}

.transaction-exchange-select {
    position: relative;
    display: flex;
    height: 46px;
    width: 100%;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background: transparent;
    padding: 12px;
    color: white;
    font-size: 12px;
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .transaction-exchange-select {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .transaction-exchange-select {
        height: 55px;
    }
}

.transaction-exchange-select-text {
    color: rgba(255, 255, 255, 0.4);
}

.transaction-exchange-select-arrow {
    width: 20px;
    height: 20px;
    color: white;
    transition: transform 0.2s;
}

.transaction-exchange-available {
    display: flex;
    height: 46px;
    width: 100%;
    align-items: center;
    border-radius: 5px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

@media (min-width: 640px) {
    .transaction-exchange-available {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .transaction-exchange-available {
        height: 55px;
    }
}

.transaction-exchange-available-text {
    color: rgba(255, 255, 255, 0.4);
}

/* Debit Card Form */
.transaction-debit-form-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: transparent;
    padding: 16px;
}

@media (min-width: 768px) {
    .transaction-debit-form-wrapper {
        padding: 20px;
    }
}

.transaction-debit-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transaction-debit-overlay {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.transaction-debit-overlay-text {
    background: #5AB25A;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

@media (min-width: 640px) {
    .transaction-debit-overlay-text {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .transaction-debit-overlay-text {
        font-size: 24px;
    }
}

/* Address Input Wrapper */
.transaction-address-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Verify Button */
.transaction-verify-btn {
    width: auto;
    align-self: flex-start;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 500;
    background: #55BC55;
    color: black;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .transaction-verify-btn {
        font-size: 14px;
        padding: 12px 24px;
    }
}

.transaction-verify-btn:hover {
    box-shadow: 0 5px 30px 0 rgba(85, 188, 85, 0.46) inset;
}

.transaction-address-input-wrapper .transaction-input {
    flex: 1;
}

/* Exchange Tab */
.transaction-exchange-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Points Tab */
.transaction-points-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.transaction-convert-btn {
    cursor: pointer;
    border-radius: 10px;
    background: #55BC55;
    color: black;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transaction-convert-btn:active {
    transform: scale(0.95);
}

.transaction-points-table-container {
    display: flex;
    flex-direction: column;
    height: 400px;
}

@media (min-width: 768px) {
    .transaction-points-table-container {
        height: 500px;
    }
}

.transaction-points-table-header-wrapper {
    overflow-x: auto;
    overflow-y: visible;
}

@media (min-width: 768px) {
    .transaction-points-table-header-wrapper {
        overflow-x: visible;
    }
}

.transaction-points-table-header-wrapper {
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 0;
}

.transaction-points-table-body-wrapper {
    flex: 1;
    overflow-y: auto;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.transaction-points-table-body-wrapper {
    overflow: hidden;
    border-radius: 0 0 16px 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-top: 0;
}

.transaction-points-table-body-wrapper::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.transaction-points-table-body-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.transaction-points-table-body-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.transaction-points-table-body-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.transaction-points-table {
    width: 100%;
    min-width: 720px;
    table-layout: fixed;
    font-size: 11px;
    border-collapse: collapse;
}

@media (min-width: 768px) {
    .transaction-points-table {
        font-size: 14px;
    }
}

.transaction-points-table-thead-tr {
    border-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: #153030;
}

.transaction-points-table-th {
    padding: 8px 4px;
    text-align: left;
    font-weight: 700;
    color: white;
    font-size: 12px;
    border: 0;
    background: #153030;
}

.transaction-points-table-th:first-child {
    width: 48px;
    text-align: center;
}

@media (min-width: 768px) {
    .transaction-points-table-th {
        padding: 12px 8px;
        font-size: 14px;
    }

    .transaction-points-table-th:first-child {
        width: 56px;
    }
}

.transaction-points-table-td {
    padding: 8px 4px;
    color: white;
    border: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
}

.transaction-points-table-td:first-child {
    text-align: center;
}

@media (min-width: 768px) {
    .transaction-points-table-td {
        padding: 12px 8px;
    }
}

.transaction-points-amount {
    color: white;
    transition: all 0.2s;
}

.transaction-points-amount:hover {
    color: rgba(255, 255, 255, 0.8);
}

.transaction-points-details-truncate {
    max-width: 320px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.transaction-points-table-row {
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
}

.transaction-points-table-row:last-child .transaction-points-table-td {
    border-bottom: 0;
}

.transaction-points-table-row:hover {
    border-color: #5AB25A;
    box-shadow: 0 5px 30px 0 rgba(85, 188, 85, 0.46) inset;
}

/* Coupons Tab */
.transaction-coupons-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.transaction-coupons-table-container {
    display: flex;
    flex-direction: column;
    height: 400px;
}

@media (min-width: 768px) {
    .transaction-coupons-table-container {
        height: 500px;
    }
}

.transaction-coupons-table-header-wrapper {
    overflow-x: auto;
    overflow-y: visible;
}

@media (min-width: 768px) {
    .transaction-coupons-table-header-wrapper {
        overflow-x: visible;
    }
}

.transaction-coupons-table-header-wrapper {
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 0;
}

.transaction-coupons-table-body-wrapper {
    flex: 1;
    overflow-y: auto;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.transaction-coupons-table-body-wrapper {
    overflow: hidden;
    border-radius: 0 0 16px 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-top: 0;
}

.transaction-coupons-table-body-wrapper::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.transaction-coupons-table-body-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.transaction-coupons-table-body-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.transaction-coupons-table-body-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.transaction-coupons-table {
    width: 100%;
    min-width: 720px;
    table-layout: fixed;
    font-size: 11px;
    border-collapse: collapse;
}

@media (min-width: 768px) {
    .transaction-coupons-table {
        font-size: 14px;
    }
}

.transaction-coupons-table-thead-tr {
    border-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: #153030;
}

.transaction-coupons-table-th {
    padding: 8px 4px;
    text-align: left;
    font-weight: 700;
    color: white;
    font-size: 12px;
    border: 0;
    background: #153030;
}

.transaction-coupons-table-th:first-child {
    width: 48px;
    text-align: center;
}

@media (min-width: 768px) {
    .transaction-coupons-table-th {
        padding: 12px 8px;
        font-size: 14px;
    }

    .transaction-coupons-table-th:first-child {
        width: 56px;
    }
}

.transaction-coupons-table-td {
    padding: 8px 4px;
    color: white;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
}

.transaction-coupons-table-td:first-child {
    text-align: center;
}

@media (min-width: 768px) {
    .transaction-coupons-table-td {
        padding: 12px 8px;
    }
}

.transaction-coupons-amount {
    color: white;
    transition: all 0.2s;
}

.transaction-coupons-amount:hover {
    color: rgba(255, 255, 255, 0.8);
}

.transaction-coupons-details-truncate {
    max-width: 320px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.transaction-coupons-table-row {
    cursor: pointer;
    transition: all 0.3s;
}

.transaction-coupons-table-row:last-child .transaction-coupons-table-td {
    border-bottom: 0;
}

.transaction-coupons-table-row:hover {
    border-color: #5AB25A;
    box-shadow: 0 5px 30px 0 rgba(85, 188, 85, 0.46) inset;
}

/* History Tables */
.transaction-history-table-container {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.transaction-history-table-scroll {
    height: 400px;
    overflow-x: auto;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

@media (min-width: 768px) {
    .transaction-history-table-scroll {
        height: 500px;
    }
}

.transaction-history-table-scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.transaction-history-table-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.transaction-history-table-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.transaction-history-table-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.transaction-history-table {
    width: 100%;
    min-width: 720px;
    table-layout: fixed;
    font-size: 11px;
    border-collapse: collapse;
}

@media (min-width: 768px) {
    .transaction-history-table {
        font-size: 14px;
    }
}

.transaction-history-table-thead-tr {
    border-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: #153030;
}

.transaction-history-table-th {
    padding: 8px 4px;
    text-align: left;
    font-weight: 700;
    color: white;
    font-size: 12px;
    border: 0;
    background: #153030;
}

.transaction-history-table-th:first-child {
    width: 48px;
    text-align: center;
}

@media (min-width: 768px) {
    .transaction-history-table-th {
        padding: 12px 8px;
        font-size: 14px;
    }

    .transaction-history-table-th:first-child {
        width: 56px;
    }
}

.transaction-history-table-td {
    padding: 8px 4px;
    color: white;
    border: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .transaction-history-table-td {
        padding: 12px 8px;
    }
}

.transaction-history-amount {
    color: #5AB25A;
    transition: all 0.2s;
}

.transaction-history-table-row {
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
}

.transaction-history-table-row:hover {
    border-color: #5AB25A;
    box-shadow: 0 5px 30px 0 rgba(85, 188, 85, 0.46) inset;
}

/* Status Pills */
.transaction-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-weight: 500;
    padding: 4px 8px;
    font-size: 12px;
}

.transaction-status-pending {
    background: #51A2FF;
    color: white;
}

.transaction-status-approved {
    background: #16A34A;
    color: white;
}

.transaction-status-rejected {
    background: #DC2626;
    color: white;
}

/* Details Button */
.transaction-details-btn {
    border-radius: 6px;
    border: 1px solid #5AB25A;
    background: transparent;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    transition: all 0.2s;
    cursor: pointer;
}

.transaction-details-btn-deposit {
    border: 1px solid #5AB25A;
}

.transaction-details-btn-deposit:hover {
    background: #5AB25A;
    color: white;
}

.transaction-details-btn-withdrawal {
    border: 1px solid rgba(3, 199, 44, 0.3);
}

.transaction-details-btn-withdrawal:hover {
    background: #55BC55;
    color: black;
}

/* Pagination */
.transaction-pagination-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

.transaction-pagination {
    flex-shrink: 0;
}

.transaction-pagination-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.transaction-pagination-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .transaction-pagination-label {
        font-size: 14px;
    }
}

.transaction-pagination-select {
    margin-left: 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: #153030;
    padding: 4px 8px;
    font-size: 12px;
    color: white;
}

@media (min-width: 768px) {
    .transaction-pagination-select {
        font-size: 14px;
    }
}

.transaction-pagination-select option {
    background: #153030;
    color: white;
}

.transaction-pagination-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .transaction-pagination-info {
        font-size: 14px;
    }
}

.transaction-pagination-btn {
    cursor: pointer;
    padding: 4px;
    transition: all 0.2s;
    background: none;
    border: none;
    display: flex;
    align-items: center;
}

.transaction-pagination-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.transaction-pagination-arrow {
    width: 12px;
    height: 12px;
}

@media (min-width: 768px) {
    .transaction-pagination-arrow {
        width: 16px;
        height: 16px;
    }
}

/* Hide scrollbar for transaction content but keep scrolling */
.transaction-content {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.transaction-content::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* Table Scrollbar - Already defined above for each table type */

/* ===== DEPOSIT BANK PAYMENT DETAIL VIEW ===== */
.transaction-payment-methods-view {
    display: block;
}

.transaction-payment-detail-view {
    display: block;
}

.transaction-payment-detail-view.d-none {
    display: none;
}

.transaction-payment-detail-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .transaction-payment-detail-header {
        gap: 16px;
    }
}

.transaction-payment-detail-back-btn {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: white;
    transition: all 0.3s;
    padding: 4px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transaction-payment-detail-back-btn:hover {
    color: #d1d5db;
    border-color: rgba(255, 255, 255, 0.6);
}

.transaction-payment-detail-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    background: #1a1a1a;
    padding: 8px 12px;
    font-size: 12px;
    color: white;
}

@media (min-width: 640px) {
    .transaction-payment-detail-badge {
        font-size: 14px;
    }
}

.transaction-payment-detail-approval-text {
    font-size: 12px;
    color: white;
}

@media (min-width: 640px) {
    .transaction-payment-detail-approval-text {
        font-size: 14px;
    }
}

.transaction-payment-form-field {
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .transaction-payment-form-field {
        margin-bottom: 24px;
    }
}

.transaction-payment-dropdown {
    position: relative;
    width: 100%;
}

.transaction-payment-dropdown-toggle {
    display: flex;
    height: 46px;
    width: 100%;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    padding: 12px;
    color: white;
    font-size: 12px;
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .transaction-payment-dropdown-toggle {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .transaction-payment-dropdown-toggle {
        height: 55px;
    }
}

.transaction-payment-dropdown-toggle:hover {
    border-color: rgba(3, 199, 44, 0.3);
}

.transaction-payment-dropdown-text {
    color: rgba(255, 255, 255, 0.4);
}

.transaction-payment-dropdown-text:empty::before {
    content: 'Select Bank';
    color: rgba(255, 255, 255, 0.4);
}

.transaction-payment-dropdown-text:not(:empty) {
    color: white;
}

.transaction-payment-dropdown-arrow {
    width: 20px;
    height: 20px;
    color: white;
    transition: transform 0.2s;
}

.transaction-payment-dropdown.open .transaction-payment-dropdown-arrow {
    transform: rotate(180deg);
}

.transaction-payment-dropdown-menu {
    position: absolute;
    z-index: 20;
    margin-top: 4px;
    max-height: 224px;
    width: 100%;
    overflow-y: auto;
    border-radius: 5px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background: #1a1a1a;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.transaction-payment-dropdown-menu.d-none {
    display: none;
}

.transaction-payment-dropdown-item {
    cursor: pointer;
    padding: 8px 12px;
    font-size: 12px;
    color: white;
    transition: background-color 0.15s;
}

@media (min-width: 640px) {
    .transaction-payment-dropdown-item {
        font-size: 14px;
    }
}

.transaction-payment-dropdown-item:hover {
    background: #5AB25A;
}

.transaction-payment-file-upload {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    padding: 8px 12px;
    transition: all 0.3s;
}

.transaction-payment-file-upload:hover {
    border-color: #5AB25A;
}

.transaction-payment-file-btn {
    cursor: pointer;
    border-radius: 6px;
    background: #5AB25A;
    color: black;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transaction-payment-file-btn:active {
    transform: scale(0.95);
}

.transaction-payment-file-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    word-break: break-word;
}

@media (min-width: 640px) {
    .transaction-payment-file-text {
        font-size: 14px;
    }
}

.transaction-payment-checkbox-label {
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    gap: 12px;
    user-select: none;
}

.transaction-payment-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.transaction-payment-checkbox-custom {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 3px;
    border: 2px solid rgba(3, 199, 44, 0.3);
    background: transparent;
    transition: all 0.2s;
}

.transaction-payment-checkbox:checked+.transaction-payment-checkbox-custom {
    border-color: #00BA00;
    background: #00BA00;
}

.transaction-payment-checkbox-custom svg {
    width: 12px;
    height: 12px;
    transition: opacity 0.2s;
    opacity: 0;
}

.transaction-payment-checkbox:checked+.transaction-payment-checkbox-custom svg {
    opacity: 1;
}

.transaction-payment-checkbox-text {
    font-size: 12px;
    color: white;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .transaction-payment-checkbox-text {
        font-size: 14px;
    }
}

.transaction-payment-form-actions {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

@media (min-width: 640px) {
    .transaction-payment-form-actions {
        gap: 16px;
    }
}

.transaction-payment-back-btn {
    height: 52px;
    width: 100%;
    max-width: 394px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #0A1818;
    color: white;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.transaction-payment-back-btn:active {
    transform: scale(0.95);
}

.transaction-payment-submit-btn {
    height: 52px;
    width: 100%;
    max-width: 394px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #55BC55;
    color: black;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.transaction-payment-submit-btn:active {
    transform: scale(0.95);
}

.transaction-payment-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Account Details Panel */
.transaction-payment-account-details {
    border-radius: 5px;
    border: 1px solid #55BC55;
    background: #0A1818;
    padding: 20px;
    position: sticky;
    top: 16px;
    height: max-content;
}

.transaction-payment-account-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.transaction-payment-account-title {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin: 0;
}

@media (min-width: 768px) {
    .transaction-payment-account-title {
        font-size: 16px;
    }
}

.transaction-payment-account-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: white;
}

@media (min-width: 768px) {
    .transaction-payment-account-status {
        font-size: 14px;
    }
}

.transaction-payment-status-online {
    color: #00BA00;
}

.transaction-payment-account-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.transaction-payment-account-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 768px) {
    .transaction-payment-account-field {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
}

.transaction-payment-account-label {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    display: block;
}

@media (min-width: 768px) {
    .transaction-payment-account-label {
        width: 33.333%;
        margin-bottom: 0;
    }
}

.transaction-payment-account-value-wrapper {
    position: relative;
    width: 100%;
}

.transaction-payment-account-value {
    width: 100%;
    height: 46px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 48px 12px 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    cursor: not-allowed;
    border: none;
    outline: none;
}

.transaction-payment-account-value:read-only {
    background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 640px) {
    .transaction-payment-account-value {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .transaction-payment-account-value {
        height: 55px;
    }
}

.transaction-payment-copy-btn {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transaction-payment-copy-btn:hover {
    opacity: 0.8;
}

.transaction-payment-account-note {
    margin-top: 16px;
    font-size: 12px;
}

.transaction-payment-note-bold {
    font-weight: 600;
    color: #55BC55;
    font-style: normal;
}

.transaction-payment-note-text {
    color: white;
    font-style: italic;
}

/* ===== CRYPTO SELECT COMPONENT ===== */
.transaction-cryptoselect-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.transaction-cryptoselect-categories {
    margin-bottom: 10px;
}

.transaction-cryptoselect-categories-header {
    border-radius: 10px;
    background: #5AB25A;
    padding: 1px;
}

.transaction-cryptoselect-categories-inner {
    border-radius: 10px;
    background: #0A1818;
    padding: 12px;
}

.transaction-cryptoselect-categories-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

@media (min-width: 768px) {
    .transaction-cryptoselect-categories-container {
        gap: 8px;
    }
}

.transaction-cryptoselect-category-btn {
    flex: 1;
    border-radius: 2px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s;
    background: transparent;
    color: white;
    cursor: pointer;
}

@media (min-width: 768px) {
    .transaction-cryptoselect-category-btn {
        flex: none;
        border: none;
        padding: 12px 24px;
        font-size: 14px;
    }
}

.transaction-cryptoselect-category-btn:hover {
    color: white;
}

.transaction-cryptoselect-category-active {
    background: #5AB25A;
    color: white;
}

@media (min-width: 768px) {
    .transaction-cryptoselect-category-active {
        border: none;
    }
}

.transaction-cryptoselect-content {
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    padding: 16px;
}

@media (min-width: 768px) {
    .transaction-cryptoselect-content {
        padding: 20px;
    }
}

.transaction-cryptoselect-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 8px;
}

@media (min-width: 640px) {
    .transaction-cryptoselect-header {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding-bottom: 12px;
    }
}

.transaction-cryptoselect-header-label {
    font-size: 14px;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

.transaction-cryptoselect-search {
    width: 100%;
    height: 46px;
    border-radius: 5px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background: transparent;
    padding: 12px;
    color: white;
    font-size: 12px;
    transition: all 0.3s;
}

.transaction-cryptoselect-search::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

@media (min-width: 640px) {
    .transaction-cryptoselect-search {
        width: auto;
        flex: 1;
        font-size: 14px;
    }

    .transaction-cryptoselect-search::placeholder {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .transaction-cryptoselect-search {
        height: 55px;
    }
}

.transaction-cryptoselect-search:focus {
    outline: none;
    border-color: #5AB25A;
    box-shadow: none;
}

.transaction-cryptoselect-scroll {
    height: 250px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.transaction-cryptoselect-scroll::-webkit-scrollbar {
    width: 6px;
}

.transaction-cryptoselect-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.transaction-cryptoselect-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.transaction-cryptoselect-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.transaction-cryptoselect-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
    padding: 12px 0;
}

@media (min-width: 480px) {
    .transaction-cryptoselect-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (min-width: 640px) {
    .transaction-cryptoselect-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (min-width: 768px) {
    .transaction-cryptoselect-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 16px 0;
    }
}

@media (min-width: 1024px) {
    .transaction-cryptoselect-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .transaction-cryptoselect-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.transaction-cryptoselect-coin-btn {
    display: flex;
    min-height: 80px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 5px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background: transparent;
    padding: 16px;
    color: #cfd8df;
    transition: all 0.3s;
    cursor: pointer;
}

@media (min-width: 640px) {
    .transaction-cryptoselect-coin-btn {
        padding: 16px;
    }
}

.transaction-cryptoselect-coin-btn:hover {
    border-color: #5AB25A;
    box-shadow: 0 5px 30px 0 rgba(85, 188, 85, 0.46) inset;
}

.transaction-cryptoselect-coin-btn.active {
    border-color: #5AB25A;
    box-shadow: 0 5px 30px 0 rgba(85, 188, 85, 0.46) inset;
}

.transaction-cryptoselect-coin-info {
    text-align: left;
}

.transaction-cryptoselect-coin-name {
    font-size: 14px;
    line-height: 1.2;
    color: #cfd8df;
}

.transaction-cryptoselect-coin-code {
    font-size: 12px;
    line-height: 1.2;
    color: #cfd8df;
    margin-top: 4px;
}

.transaction-cryptoselect-coin-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .transaction-cryptoselect-coin-icon {
        width: 40px;
        height: 40px;
    }
}

.transaction-cryptoselect-coin-placeholder {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    background: #5AB25A;
}

@media (min-width: 768px) {
    .transaction-cryptoselect-coin-placeholder {
        width: 40px;
        height: 40px;
    }
}

.transaction-crypto-amount-info {
    margin-top: 8px;
    border-radius: 8px;
    background: #1a1a2e;
    padding: 12px;
    font-size: 12px;
}

.transaction-crypto-amount-info.d-none {
    display: none;
}

.transaction-address-verification-status {
    margin-top: 12px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.transaction-address-verification-status.d-none {
    display: none;
}

.transaction-address-verification-status.verified {
    background: #16A34A;
    color: white;
}

.transaction-address-verification-status.invalid {
    background: #DC2626;
    color: white;
}

/* ===== CRYPTO PAYMENT DETAILS ===== */
.transaction-crypto-select-view {
    display: block;
}

.transaction-crypto-select-view.d-none {
    display: none;
}

.transaction-crypto-payment-details-view {
    display: block;
}

.transaction-crypto-payment-details-view.d-none {
    display: none;
}

.transaction-crypto-payment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.transaction-crypto-payment-title {
    font-size: 15px;
    font-weight: 700;
    color: white;
}

@media (min-width: 768px) {
    .transaction-crypto-payment-title {
        font-size: 16px;
    }
}

.transaction-crypto-payment-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: #55BC55;
    border: none;
    border-radius: 6px;
    transition: all 0.3s;
    padding: 0;
}

.transaction-crypto-payment-close:hover {
    transform: rotate(180deg);
}

.transaction-crypto-payment-amount-section {
    margin-bottom: 16px;
}

.transaction-crypto-payment-amount-label {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.transaction-crypto-payment-amount-box {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    padding: 24px 32px;
    color: white;
}

.transaction-crypto-payment-amount-display {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

@media (min-width: 768px) {
    .transaction-crypto-payment-amount-display {
        flex-direction: row;
        align-items: center;
    }
}

.transaction-crypto-payment-amount-item {
    flex: 1;
    border-radius: 10px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background: black;
    padding: 16px;
}

.transaction-crypto-payment-amount-value {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #5AB25A;
}

@media (min-width: 768px) {
    .transaction-crypto-payment-amount-value {
        font-size: 18px;
    }
}

.transaction-crypto-payment-amount-currency {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #5AB25A;
}

@media (min-width: 768px) {
    .transaction-crypto-payment-amount-currency {
        font-size: 18px;
    }
}

.transaction-crypto-payment-amount-equals {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #55BC55;
    user-select: none;
}

@media (min-width: 768px) {
    .transaction-crypto-payment-amount-equals {
        padding: 0 8px;
    }
}

.transaction-crypto-payment-info {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.transaction-crypto-payment-id {
    font-size: 12px;
    color: #B6AAFF;
}

.transaction-crypto-payment-id span:last-child {
    font-weight: 500;
    color: white;
    word-break: break-all;
}

.transaction-crypto-payment-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .transaction-crypto-payment-qr {
        align-items: flex-end;
    }
}

.transaction-crypto-payment-qr-box {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 32px;
}

.transaction-crypto-payment-qr-box img {
    max-width: 180px;
    height: auto;
}

.transaction-crypto-payment-qr-label {
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #5AB25A;
}

.transaction-crypto-payment-address-section {
    margin-bottom: 24px;
}

.transaction-crypto-payment-address-label {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.transaction-crypto-payment-address-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 640px) {
    .transaction-crypto-payment-address-wrapper {
        flex-direction: row;
        align-items: stretch;
    }
}

.transaction-crypto-payment-address-input-wrapper {
    display: flex;
    height: 46px;
    width: 100%;
    align-items: center;
    border-radius: 6px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background: rgba(255, 255, 255, 0.09);
    padding: 0 12px;
    color: white;
    font-size: 12px;
}

@media (min-width: 640px) {
    .transaction-crypto-payment-address-input-wrapper {
        font-size: 14px;
    }
}

.transaction-crypto-payment-address-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 16px;
    font-family: monospace;
}

@media (min-width: 640px) {
    .transaction-crypto-payment-address-input {
        font-size: 18px;
    }
}

.transaction-crypto-payment-address-copy-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transaction-crypto-payment-address-copy-btn:hover {
    opacity: 0.8;
}

.transaction-crypto-payment-address-copy-btn-large {
    width: 100%;
    cursor: pointer;
    border-radius: 10px;
    background: #5AB25A;
    color: black;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    transition: all 0.2s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .transaction-crypto-payment-address-copy-btn-large {
        width: 270px;
    }
}

.transaction-crypto-payment-address-copy-btn-large:active {
    transform: scale(0.95);
}

.transaction-crypto-payment-instructions {
    margin-top: 24px;
}

.transaction-crypto-payment-instructions-label {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.transaction-crypto-payment-instructions-box {
    border-radius: 8px;
    border: 1px solid rgba(3, 199, 44, 0.3);
    background: #0A1818;
    padding: 20px;
    color: white;
}

.transaction-crypto-payment-instructions-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
}

.transaction-crypto-payment-instructions-list li {
    margin-bottom: 8px;
}

.transaction-crypto-payment-instructions-list li:last-child {
    margin-bottom: 0;
}

.transaction-crypto-payment-instructions-list strong {
    color: white;
    font-weight: 600;
}

/* ===== CRYPTO WITHDRAWAL DETAILS ===== */
.transaction-crypto-withdrawal-details-view {
    display: block;
}

.transaction-crypto-withdrawal-details-view.d-none {
    display: none;
}

.transaction-crypto-withdrawal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.transaction-crypto-withdrawal-title {
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.transaction-crypto-withdrawal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: #55BC55;
    border: none;
    border-radius: 6px;
    transition: all 0.3s;
    padding: 0;
}

@media (min-width: 640px) {
    .transaction-crypto-withdrawal-close {
        width: 33px;
        height: 33px;
    }
}

.transaction-crypto-withdrawal-close:hover {
    transform: rotate(180deg);
}

.transaction-crypto-withdrawal-info {
    margin-top: 32px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

@media (min-width: 640px) {
    .transaction-crypto-withdrawal-info {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
    }
}

.transaction-crypto-withdrawal-id {
    font-size: 12px;
    color: #B6AAFF;
    text-align: left;
}

@media (min-width: 640px) {
    .transaction-crypto-withdrawal-id {
        text-align: right;
    }
}

.transaction-crypto-withdrawal-id span:last-child {
    font-weight: 500;
    color: white;
    word-break: break-all;
}

.transaction-crypto-withdrawal-amount-section {
    margin-bottom: 32px;
}

.transaction-crypto-withdrawal-amount-label {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.transaction-crypto-withdrawal-amount-box {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    padding: 24px 32px;
    color: white;
}

.transaction-crypto-withdrawal-amount-display {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

@media (min-width: 768px) {
    .transaction-crypto-withdrawal-amount-display {
        flex-direction: row;
        align-items: center;
    }
}

.transaction-crypto-withdrawal-amount-item {
    flex: 1;
    border-radius: 10px;
    border: 1px solid #55BC55;
    background: #0A1818;
    padding: 16px;
}

.transaction-crypto-withdrawal-amount-value {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #55BC55;
}

@media (min-width: 768px) {
    .transaction-crypto-withdrawal-amount-value {
        font-size: 18px;
    }
}

.transaction-crypto-withdrawal-amount-currency {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #55BC55;
}

@media (min-width: 768px) {
    .transaction-crypto-withdrawal-amount-currency {
        font-size: 18px;
    }
}

.transaction-crypto-withdrawal-amount-equals {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #55BC55;
    user-select: none;
}

@media (min-width: 768px) {
    .transaction-crypto-withdrawal-amount-equals {
        padding: 0 8px;
    }
}

.transaction-crypto-withdrawal-payment-details {
    margin-bottom: 24px;
}

.transaction-crypto-withdrawal-payment-label {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.transaction-crypto-withdrawal-payment-box {
    border-radius: 12px;
    background: #0A1818;
    padding: 20px;
    color: white;
}

.transaction-crypto-withdrawal-payment-field {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.transaction-crypto-withdrawal-payment-field:last-child {
    margin-bottom: 0;
}

.transaction-crypto-withdrawal-payment-label-item {
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.transaction-crypto-withdrawal-payment-value {
    font-family: monospace;
    font-size: 14px;
    color: white;
}

.transaction-crypto-withdrawal-address-section {
    margin-bottom: 24px;
}

.transaction-crypto-withdrawal-address-label {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.transaction-crypto-withdrawal-address-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 640px) {
    .transaction-crypto-withdrawal-address-wrapper {
        flex-direction: row;
        align-items: stretch;
    }
}

.transaction-crypto-withdrawal-address-input-wrapper {
    flex: 1;
    border-radius: 12px;
    border: 1px solid #054516;
    background: black;
    padding: 12px;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.transaction-crypto-withdrawal-address-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 16px;
    font-family: monospace;
}

@media (min-width: 640px) {
    .transaction-crypto-withdrawal-address-input {
        font-size: 18px;
    }
}

.transaction-crypto-withdrawal-address-copy-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transaction-crypto-withdrawal-address-copy-btn:hover {
    opacity: 0.8;
}

.transaction-crypto-withdrawal-address-copy-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.transaction-crypto-withdrawal-address-copy-btn-large {
    width: 100%;
    cursor: pointer;
    border-radius: 10px;
    background: #55BC55;
    color: black;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    transition: all 0.2s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .transaction-crypto-withdrawal-address-copy-btn-large {
        width: 270px;
    }
}

.transaction-crypto-withdrawal-address-copy-btn-large:active {
    transform: scale(0.95);
}

.transaction-crypto-withdrawal-address-copy-btn-large:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.transaction-crypto-withdrawal-instructions {
    margin-top: 24px;
}

.transaction-crypto-withdrawal-instructions-label {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.transaction-crypto-withdrawal-instructions-box {
    border-radius: 12px;
    background: #0A1818;
    padding: 20px;
    color: rgba(255, 255, 255, 0.4);
}

.transaction-crypto-withdrawal-instructions-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
}

.transaction-crypto-withdrawal-instructions-list li {
    margin-bottom: 8px;
}

.transaction-crypto-withdrawal-instructions-list li:last-child {
    margin-bottom: 0;
}

.transaction-crypto-withdrawal-instructions-list strong {
    color: white;
    font-weight: 600;
}