* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #1a1a1a;
}

.header {
    width: 100%;
    height: 50px;
    background-color: #222;
    position: fixed;
    z-index: 1000;
}

.header-container {
    width: 100%;
    max-width: 1000px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px;
}

.header-logo {
    height: 80%;
    width: auto;
    object-fit: contain;
}

.header-logo-link {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header-logo-link:hover {
    opacity: 0.9;
}

.main {
    margin-top: 50px;
}

.main-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.hero-container {
    width: 100%;
    aspect-ratio: 1280/484;
    overflow: hidden;
    position: relative;
}

.hero-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.slide-track {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-out;
    user-select: none;
    touch-action: pan-y pinch-zoom;
    cursor: grab;
}

.slide-track.dragging {
    cursor: grabbing;
    transition: none;
}

.slide {
    min-width: 100%;
    height: 100%;
    touch-action: none;
    user-select: none;
    pointer-events: none;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.slider-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.slider-nav-btn.active {
    background: white;
    transform: scale(1.2);
}

@media (min-width: 1000px) {
    .slider-nav-btn {
        width: 15px;
        height: 15px;
    }
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: white;
    font-size: 20px;
    z-index: 2;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

@media (min-width: 1000px) {
    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

.announcement-container {
    width: 100%;
    aspect-ratio: 16/1;
    background-color: #2a2a2a;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-scroll {
    white-space: nowrap;
    animation: scroll 10s linear infinite;
    color: white;
    font-size: 4vw;
    padding: 0 10px;
    position: relative;
    transform: translateX(50%);
}


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

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

.wallet-border {
    width: 2px;
    height: 100%;
    background-color: gray;
}

.wallet-container {
    width: 100%;
    aspect-ratio: 16/3;
    padding: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wallet-item {
    flex: 1;
    height: 100%;
    float: left;
    padding: 2vw;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.wallet-item:hover {
    opacity: 0.8;
}

.wallet-item-left {
    width: 70%;
    height: 100%;
    float: left;
}

.wallet-item-top {
    height: 50%;
    display: flex;
}

.wallet-item-top-image-container {
    height: 100%;
    aspect-ratio: 1;
    float: left;
}

.wallet-item-top-image {
    height: 100%;
    width: 100%;
    display: block;
}

.wallet-item-top-label {
    height: 100%;
    float: left;
    font-size: 3.5vw;
    padding-left: 2vw;
    flex: 1;
    display: flex;
    justify-content: left;
    align-items: center;
    color: white;
}

.wallet-item-down {
    height: 50%;
    padding: 2vw;
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 3vw;
    color: yellow;
}

.wallet-item-right {
    width: 30%;
    height: 100%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wallet-item-right-image {
    width: 30%;
}








.deposit-withdraw-container {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 2vw;
}

.deposit-withdraw-deposit-button {
    height: 8vw;
    aspect-ratio: 247/86;
    margin-right: 1vw;
}

.deposit-withdraw-withdraw-button {
    height: 8vw;
    aspect-ratio: 267/86;
    margin-left: 1vw;
}

.deposit-withdraw-promotion-button {
    height: 8vw;
    aspect-ratio: 264/86;
    margin-left: 1vw;
}

.deposit-withdraw-image {
    width: 100%;
    height: 100%;
    display: block;
}






.games-container {
    width: 100%;
    padding: 2vw;
    background-color: #1a1a1a;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-button {
    all: unset;
    width: 20vw;
    aspect-ratio: 249/95;
    cursor: pointer;
    position: relative;
}

.tab-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    padding-left: 5vw;
    font-size: 3vw;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
    pointer-events: none;
}

.tab-button.active {
    color: white;
}

.tab-button:hover {
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.tab-button.active .tab-image,
.tab-button:hover .tab-image {
    filter: grayscale(0%);
}

.tab-text {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    z-index: 1;
}

.games-grid {
    /* margin: 0 auto; */
    /* display: grid; */
    /* grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); */
    /* gap: 1rem; */
    /* padding: 1rem; */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    align-items: center;
}

.games-grid a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.game-image {
    width: 30vw;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    opacity: 0;
}

.games-grid a:hover .game-image {
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content.active .game-image {
    animation: fadeIn 0.5s ease forwards;
}

.tab-content.active .game-image:nth-child(2) {
    animation-delay: 0.1s;
}

.tab-content.active .game-image:nth-child(3) {
    animation-delay: 0.2s;
}

.tab-content.active .game-image:nth-child(4) {
    animation-delay: 0.3s;
}

.tab-content.active .game-image:nth-child(5) {
    animation-delay: 0.4s;
}

.tab-content.active .game-image:nth-child(6) {
    animation-delay: 0.5s;
}






 
.footer {
    background-color: #222;
    height: 60px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

.footer-container {
    width: 100%;
    max-width: 1000px;
    height: 100%;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #888;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.nav-item i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.nav-item.active {
    color: #ff6b00;
}

.nav-item:hover {
    color: #ff6b00;
}

/* Bonus logo styles */
.bonus-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
    bottom: 25px
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.bonus-logo i {
    color: #fff;
    font-size: 32px;
    margin-bottom: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.bonus-logo span {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1000px) {
    .bonus-logo {
        width: 90px;
        height: 90px;
    }
    
    .bonus-logo i {
        font-size: 36px;
    }
    
    .bonus-logo span {
        font-size: 16px;
        bottom: 14px;
    }
}

@media (min-width: 1000px) {
    .announcement-scroll {
        font-size: 35px;
    }


    .wallet-border {
        width: 2px;
        height: 100%;
        background-color: gray;
    }

    .wallet-container {
        width: 100%;
        aspect-ratio: 16/3;
        padding: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .wallet-item {
        flex: 1;
        height: 100%;
        float: left;
        padding: 30px;
    }

    .wallet-item-left {
        width: 70%;
        height: 100%;
        float: left;
    }

    .wallet-item-top {
        height: 50%;
        display: flex;
    }

    .wallet-item-top-image-container {
        height: 100%;
        aspect-ratio: 1;
        float: left;
    }

    .wallet-item-top-image {
        height: 100%;
        width: 100%;
        display: block;
    }

    .wallet-item-top-label {
        height: 100%;
        float: left;
        font-size: 30px;
        padding-left: 30px;
        flex: 1;
        display: flex;
        justify-content: left;
        align-items: center;
        color: white;
    }

    .wallet-item-down {
        height: 50%;
        padding: 30px;
        display: flex;
        justify-content: left;
        align-items: center;
        font-size: 30px;
        color: yellow;
    }

    .wallet-item-right {
        width: 30%;
        height: 100%;
        float: left;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .wallet-item-right-image {
        width: 30%;
    }






    .deposit-withdraw-container {
        width: 100%;
        display: flex;
        justify-content: left;
        align-items: center;
        padding: 30px;
    }

    .deposit-withdraw-deposit-button {
        height: 85px;
        aspect-ratio: 247/86;
        margin-right: 15px;
    }

    .deposit-withdraw-withdraw-button {
        height: 85px;
        aspect-ratio: 267/86;
        margin-right: 15px;
    }

    .deposit-withdraw-bonus-button {
        height: 85px;
        aspect-ratio: 850/352;
        margin-right: 15px;
    }

    .deposit-withdraw-image {
        width: 100%;
        height: 100%;
        display: block;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 2rem;
        padding: 2rem;
    }

    .tab-button {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }

    .game-image {
        width: 300px;
        object-fit: cover;
        border-radius: 10px;
        transition: transform 0.3s ease;
        /* cursor: pointer; */
    }

    .tab-text {
        font-size: 20px;
        top: -30px;
    }

    .tab-overlay {
        font-size: 30px;
    }






    
.games-container {
    width: 100%;
    padding: 2vw;
    background-color: #1a1a1a;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-button {
    all: unset;
    width: 200px;
    aspect-ratio: 249/95;
    cursor: pointer;
    position: relative;
}

.tab-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    padding-left: 46px;
    font-size: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
    pointer-events: none;
}



}

.customer-service-button {
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ff6b00;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.customer-service-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.customer-service-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.customer-service-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.customer-service-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid rgba(0, 0, 0, 0.8);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.customer-service-button:hover .customer-service-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

@media (min-width: 1000px) {
    .customer-service-button {
        width: 70px;
        height: 70px;
    }

    .customer-service-icon {
        width: 40px;
        height: 40px;
    }
}

/* About Us Section */
.about-us {
    padding: 60px 0;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
    color: #e0e0e0;
    text-align: center;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.section-title {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

@media (max-width: 768px) {
    .about-us {
        padding: 40px 0;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.copyright-notice {
    text-align: center;
    padding: 20px 0;
    color: #666;
    font-size: 14px;
    border-top: 1px solid #eee;
    margin-top: 30px;
}

.copyright-notice p {
    margin: 0;
}

.premium-games-header {
    text-align: center;
    color: #ffffff;
    font-size: 32px;
    margin: 30px 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.game-category-summary {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    color: #e0e0e0;
    line-height: 1.6;
}

.game-category-summary p {
    margin-bottom: 15px;
    font-size: 16px;
}

.game-category-summary p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .premium-games-header {
        font-size: 24px;
        margin: 20px 0;
    }
    
    .game-category-summary {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .game-category-summary p {
        font-size: 14px;
    }
}

/* Deposit Guide Styles */
.deposit-guide-header {
    text-align: center;
    color: #ffffff;
    font-size: 32px;
    margin: 30px 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.deposit-guide-intro {
    text-align: center;
    color: #e0e0e0;
    font-size: 18px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.deposit-steps {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.step-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: #ff6b00;
    color: white;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 18px;
}

.step-content h2 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
}

.step-image {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
}

.guide-image {
    width: 100%;
    height: auto;
    display: block;
}

.step-description {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
}

.payment-options {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.payment-options li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.payment-options li:before {
    content: "•";
    color: #ff6b00;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.payment-options strong {
    color: #ff6b00;
}

.deposit-notice {
    background: rgba(255, 107, 0, 0.1);
    border-left: 4px solid #ff6b00;
    padding: 20px;
    margin: 40px 20px;
    border-radius: 0 10px 10px 0;
}

.deposit-notice h3 {
    color: #ff6b00;
    margin-bottom: 15px;
    font-size: 20px;
}

.deposit-notice ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #e0e0e0;
}

.deposit-notice li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.deposit-notice li:before {
    content: "!";
    color: #ff6b00;
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .deposit-guide-header {
        font-size: 24px;
        margin: 20px 0;
    }

    .deposit-guide-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .step-container {
        padding: 20px;
    }

    .step-content h2 {
        font-size: 20px;
    }

    .step-description {
        font-size: 14px;
    }

    .deposit-notice {
        margin: 30px 15px;
    }
}

/* Withdrawal Guide Specific Styles */
.security-notice {
    background: rgba(255, 107, 0, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    border-left: 4px solid #ff6b00;
}

.security-notice p {
    color: #e0e0e0;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.security-notice strong {
    color: #ff6b00;
}

.numbered-steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 15px 0 0 0;
}

.numbered-steps li {
    counter-increment: step-counter;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    color: #e0e0e0;
}

.numbered-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #ff6b00;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .security-notice {
        padding: 12px;
        margin-top: 15px;
    }

    .security-notice p {
        font-size: 13px;
    }

    .numbered-steps li {
        padding-left: 30px;
        font-size: 14px;
    }

    .numbered-steps li::before {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
}

/* FAQ Section Styles */
.faq-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 0, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    color: #ff6b00;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

@media (max-width: 768px) {
    .faq-section {
        margin: 30px auto;
    }

    .faq-header {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .faq-question {
        font-size: 14px;
        padding: 15px;
    }

    .faq-answer {
        font-size: 13px;
    }
}

/* Promotion Page Styles */
.promotion-header {
    text-align: center;
    color: #ffffff;
    font-size: 32px;
    margin: 30px 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.promotions-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.promotion-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.promotion-card:hover {
    transform: translateY(-5px);
}

.promotion-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.promotion-content {
    padding: 25px;
}

.promotion-title {
    color: #ff6b00;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.promotion-details {
    color: #e0e0e0;
}

.promotion-details h3 {
    color: #ffffff;
    font-size: 20px;
    margin: 20px 0 15px;
}

.promotion-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.promotion-details li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.promotion-details li:before {
    content: "•";
    color: #ff6b00;
    position: absolute;
    left: 0;
    top: 0;
}

.bonus-highlight {
    background: rgba(255, 107, 0, 0.1);
    border-left: 4px solid #ff6b00;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.bonus-highlight p {
    color: #ffffff;
    font-size: 18px;
    margin: 0;
    font-weight: bold;
}

.bonus-example {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.bonus-example h4 {
    color: #ff6b00;
    margin-bottom: 10px;
    font-size: 18px;
}

.bonus-example p {
    margin: 10px 0;
    line-height: 1.6;
}

.important-notes {
    margin: 25px 0;
}

.promotion-disclaimer {
    background: rgba(255, 107, 0, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.promotion-disclaimer p {
    color: #e0e0e0;
    font-size: 14px;
    margin: 0;
}

.promotion-disclaimer strong {
    color: #ff6b00;
}

@media (max-width: 768px) {
    .promotion-header {
        font-size: 24px;
        margin: 20px 0;
    }

    .promotions-container {
        padding: 15px;
    }

    .promotion-image {
        height: 200px;
    }

    .promotion-content {
        padding: 20px;
    }

    .promotion-title {
        font-size: 20px;
    }

    .promotion-details h3 {
        font-size: 18px;
    }

    .bonus-highlight p {
        font-size: 16px;
    }

    .bonus-example {
        padding: 15px;
    }

    .bonus-example h4 {
        font-size: 16px;
    }
}

/* Registration Guide Styles */
.register-header {
    text-align: center;
    color: #ffffff;
    font-size: 32px;
    margin: 30px 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.register-guide {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.register-intro {
    text-align: center;
    color: #e0e0e0;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.register-image-container {
    width: 100%;
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.register-image {
    width: 100%;
    height: auto;
    display: block;
}

.registration-steps {
    margin: 40px 0;
}

.registration-details {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.registration-details li {
    color: #e0e0e0;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.registration-details li:before {
    content: "•";
    color: #ff6b00;
    position: absolute;
    left: 0;
    top: 0;
}

.register-notice {
    background: rgba(255, 107, 0, 0.1);
    border-left: 4px solid #ff6b00;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.register-notice h3 {
    color: #ff6b00;
    margin-bottom: 15px;
    font-size: 20px;
}

.register-notice ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.register-notice li {
    color: #e0e0e0;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.register-notice li:before {
    content: "!";
    color: #ff6b00;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.register-button-container {
    text-align: center;
    margin: 40px 0;
}

.register-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    margin-left: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: bonusPulse 2s infinite;
}

.register-button i {
    margin-right: 8px;
    font-size: 16px;
}

.register-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

.register-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
    .register-header {
        font-size: 24px;
        margin: 20px 0;
    }

    .register-intro {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .register-image-container {
        margin: 20px 0;
    }

    .registration-steps {
        margin: 30px 0;
    }

    .register-notice {
        padding: 15px;
        margin: 20px 0;
    }

    .register-notice h3 {
        font-size: 18px;
    }

    .register-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* Registration Steps Text Styles */
.step-content .highlight-text {
    color: #ffa563;
    font-size: 1.1em;
    font-weight: 500;
    margin: 10px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .step-content .highlight-text {
        font-size: 1em;
    }
}

/* Contact Page Styles */
.contact-header {
    text-align: center;
    color: #ffffff;
    font-size: 32px;
    margin: 30px 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.contact-intro {
    text-align: center;
    color: #e0e0e0;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-info h2 {
    color: #ff6b00;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.support-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.support-features li {
    color: #e0e0e0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    flex: 1 1 40%;
    min-width: 200px;
}

.support-features li:before {
    content: "✓";
    color: #ff6b00;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.whatsapp-container {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.contact-message {
    color: #e0e0e0;
    margin-bottom: 20px;
    font-size: 16px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.2);
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.3);
    background: #22c35e;
}

.whatsapp-button i {
    margin-right: 10px;
    font-size: 24px;
}

.support-hours {
    margin-top: 30px;
    text-align: center;
}

.support-hours h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
}

.hours-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hours-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
}

.hours-item .day {
    color: #ff6b00;
    font-weight: bold;
    margin-bottom: 5px;
}

.hours-item .time {
    color: #e0e0e0;
}

.contact-notice {
    background: rgba(255, 107, 0, 0.1);
    border-left: 4px solid #ff6b00;
    padding: 20px;
    margin-top: 30px;
    border-radius: 0 8px 8px 0;
}

.contact-notice h3 {
    color: #ff6b00;
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-notice ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-notice li {
    color: #e0e0e0;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.contact-notice li:before {
    content: "!";
    color: #ff6b00;
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .contact-header {
        font-size: 24px;
        margin: 20px 0;
    }

    .contact-intro {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-info h2 {
        font-size: 20px;
    }

    .support-features li {
        font-size: 14px;
        min-width: 150px;
    }

    .whatsapp-logo {
        width: 60px;
        height: 60px;
    }

    .whatsapp-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .support-hours h3 {
        font-size: 18px;
    }

    .hours-item {
        min-width: 150px;
    }

    .contact-notice {
        padding: 15px;
    }

    .contact-notice h3 {
        font-size: 18px;
    }
}

/* Header Navigation and Dropdown Styles */
.header-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0px;
}

.signup-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    margin-left: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: bonusPulse 2s infinite;
}

.signup-button i {
    margin-right: 8px;
    font-size: 16px;
}

.signup-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

.signup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.5);
}

@media (min-width: 1000px) {
    .signup-button {
        padding: 10px 20px;
        font-size: 16px;
    }
    
    .signup-button i {
        font-size: 18px;
    }
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: transparent;
    color: #e0e0e0;
    border: none;
    padding: 8px 16px;
    margin-right: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.dropdown-toggle:hover {
    color: #ff6b00;
}

.dropdown-toggle i {
    font-size: 20px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #2a2a2a;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

.dropdown-item:hover {
    background: rgba(255, 107, 0, 0.1);
    color: #ff6b00;
}

.dropdown-item i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

/* Dropdown Menu Arrow */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #2a2a2a;
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .dropdown-toggle {
        padding: 6px 12px;
        font-size: 14px;
    }

    .dropdown-toggle i {
        font-size: 16px;
    }

    .dropdown-menu {
        min-width: 200px;
    }

    .dropdown-item {
        padding: 10px 14px;
        font-size: 14px;
    }

    .dropdown-item i {
        font-size: 16px;
    }
}

.footer-content {
    padding: 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-right {
    width: 100%;
}

.payment-methods-title {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
    align-items: center;
    justify-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.payment-methods-grid img {
    width: 100%;
    height: auto;
    max-width: 120px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    transition: filter 0.3s ease;
}

.payment-methods-grid img:hover {
    /* filter: grayscale(0%); */
}

@media (max-width: 768px) {
    .footer-content {
        padding: 30px 15px;
    }

    .payment-methods-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .payment-methods-grid {
        gap: 15px;
    }

    .payment-methods-grid img {
        max-width: 100px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-item h3 {
    color: #ff6b00;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-item p {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 40px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-icon {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .feature-item h3 {
        font-size: 18px;
    }

    .feature-item p {
        font-size: 14px;
    }
}

/* Language Dropdown Styles */
.language-dropdown {
    position: relative;
    margin-right: 15px;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-toggle .lang-flag {
    width: 30px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
}

.language-toggle i {
    color: #e0e0e0;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.language-dropdown:hover .language-toggle i {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #2a2a2a;
    border-radius: 4px;
    padding: 5px;
    margin-top: 5px;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-dropdown:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 12px;
    border: none;
    background: none;
    cursor: pointer;
    color: #e0e0e0;
    font-size: 14px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.lang-option:hover {
    background: rgba(255, 107, 0, 0.1);
    color: #ff6b00;
}

.lang-option.active {
    background: rgba(255, 107, 0, 0.2);
    color: #ff6b00;
}

.lang-option .lang-flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}

/* Dropdown Menu Arrow */
.language-menu::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 20px;
    width: 8px;
    height: 8px;
    background: #2a2a2a;
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .language-toggle .lang-flag {
        width: 25px;
        height: 17px;
    }

    .lang-option {
        padding: 6px 10px;
        font-size: 13px;
    }

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

.header-bonus-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    margin-left: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: bonusPulse 2s infinite;
}

.header-bonus-button i {
    margin-right: 8px;
    font-size: 16px;
}

.header-bonus-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes bonusPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(255, 215, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
}

@keyframes shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

.header-bonus-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.5);
}

@media (min-width: 1000px) {
    .header-bonus-button {
        padding: 10px 20px;
        font-size: 16px;
    }
    
    .header-bonus-button i {
        font-size: 18px;
    }
}
