/* Background setup */
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Nunito', sans-serif;
    background: url('/assets/background.jpg') no-repeat center center fixed;
    background-size: cover;
}

h1 {
    font-size: 2.8rem;
    color: #FFD700; 
}

h2 {
    font-size: 2.2rem;
    color: #87CEFA;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFB929;
}

h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #FFB929;
    letter-spacing: 0.5px;
}

a.highlight-link {
    color: #00bfff;
    font-weight: 600;
    text-decoration: underline dotted;
    transition: color 0.3s ease;
}

a.highlight-link:hover {
    color: #FFD700;
    text-decoration: underline solid;
}

/* Strong tag styling */
strong {
    color: #FFEE58;
    font-weight: 800;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #fff;
    margin-block-start: 0px;
    margin-block-end: 0px;
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1rem;
        letter-spacing: 0.3px;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
    }

    a.highlight-link {
        font-size: 1rem;
    }

    strong {
        font-weight: 700;
    }
}


/* Header */
.header {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    background-size: cover;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Logo on left, hamburger on right */
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}


.site-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 60px;
}

.hamburger {
    font-size: 26px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 1;
}

/* Sidebar */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -330px;
    width: 280px;
    height: 100%;
    background: #006b8f;
    background-size: cover;
    transition: right 0.3s ease-in-out;
    z-index: 1200;
    color: white;
    overflow-y: auto;
    padding: 20px;
    border-left: 3px solid #d5b166;

}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    position: relative;
    text-align: center;
}

.sidebar-logo-link {
    display: inline-block;
}

.sidebar-logo {
    max-width: 150px;
    display: block;
    margin: 0 auto;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    right: 5px;
    bottom: 50px;
}

.sidebar-button {
    background: linear-gradient(to right, #ffcc00, #ffaa00);
    color: #000;
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-button:hover {
    transform: scale(1.05);
    /* Slightly bigger */
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
}

.sidebar-sub {
    margin: 15px 0;
    font-size: 0.9rem;
}

.sidebar-sub a {
    color: #5ce2e7;
    text-decoration: underline;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.sidebar-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 1rem;
    padding: 12px 0;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-menu li a:hover {
    color: #5ce2e7;
}

.menu-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border: 2px solid #d5b166;
    padding: 6px;
    object-fit: contain;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    color: #fff;
    text-align: center;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.1);
    max-width: 350px;
    margin: 0 auto;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid #FFD700;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: bold;
    color: #5ce2e7;
    margin: 0;
}

.testimonial-age {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: normal;
}

.testimonial-location {
    font-size: 0.85rem;
    color: #aaa;
    margin: 4px 0 10px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #eee;
    line-height: 1.5;
    margin: 0 0 8px;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1rem;
}

@media (max-width: 768px) {
    /* Sidebar */
    .sidebar-logo {
        max-width: 120px;
    }

    .close-btn {
        font-size: 1.3rem;
    }

    .sidebar-button {
        padding: 10px;
        font-size: 0.95rem;
    }

    .sidebar-menu li a {
        font-size: 0.95rem;
        padding: 10px 0;
    }

    .menu-icon {
        width: 20px;
        height: 20px;
    }

    /* Testimonial */
    .testimonial-card {
        padding: 15px;
        max-width: 100%;
    }

    .testimonial-img {
        width: 60px;
        height: 60px;
    }

    .testimonial-name {
        font-size: 0.95rem;
    }

    .testimonial-age {
        font-size: 0.85rem;
    }

    .testimonial-location {
        font-size: 0.8rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .testimonial-stars {
        font-size: 0.95rem;
    }
}

/* Language Switch Button */
.round-button {
    position: fixed;
    top: 70px;         /* Move closer to the top edge */
    right: 20px;       /* Align to the right edge */
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    text-decoration: none;
    background-color: transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); /* Optional shadow */
    z-index: 1000;
}

.round-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Layout container */
.container {
    display: flex;
}

/* Left Section */
.left-section {
    font-family: 'Luckiest Guy', cursive;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 50, 0.5);
    position: relative;
    overflow: hidden;
}

.content.with-bg {
    background: url('assets/image.gif') no-repeat center center;
    background-size: cover;
    width: 100%;
    max-width: 700px;
    height: 280px;
    border: 4px solid #d5b166;
    border-bottom: 40px solid #d5b166;
    border-radius: 12px;
    position: relative;
    color: #fff;
    text-align: center;
    z-index: 1;
    box-shadow: 0 0 10px rgba(255, 191, 0);
    cursor: pointer;
}

.content.with-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 50, 0.5);
    z-index: 0;
    border-radius: 15px;
}

.content.with-bg>* {
    position: relative;
    z-index: 1;
}

.bonus-label {
    font-size: 1.2rem;
    color: #FFA500;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

@keyframes fast-text-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
        /* Grows the text */
    }
}

p .outline {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    text-shadow:
        -1px -1px 0 #00bfff,
        1px -1px 0 #00bfff,
        -1px 1px 0 #00bfff,
        1px 1px 0 #00bfff,
        0 0 12px rgba(0, 191, 255, 0.5);
    animation: fast-text-pulse 0.6s infinite ease-in-out;
    display: inline-block;
    /* Needed for transform */
}

.bonus-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.bonus-card {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #0077cc;
    color: #000;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.4);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bonus-card.highlight {
    border-color: #ff9900;
    box-shadow: 0 0 20px rgba(255, 153, 0, 0.6);
}

.bonus-free {
    font-size: 0.7rem;
    font-weight: bold;
    color: #0077ff;
    background: #e0f0ff;
    padding: 2px 8px;
    border-radius: 20px;
    margin-bottom: 3px;
}

.bonus-amount {
    font-size: 2.2rem;
    color: #0077ff;
    margin: 3px 0;
}

.bonus-card.highlight .bonus-amount {
    color: #ff9900;
}

.bonus-deposit {
    font-size: 0.7rem;
    color: #555;
    font-weight: bold;
}

/* Right Section */
.right-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 50, 0.5);
}


/* Content inside each half */
.content {
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

/* Download Cards */
.mega-logo {
    width: 180px;
    max-width: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .mega-logo {
        display: none;
    }
}

.card-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.download-cards {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.download-card {
    padding: 20px;
    border-radius: 20px;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 221, 0, 0.5), 0 0 40px rgba(255, 221, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.platform-img-android {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
    object-fit: contain;
}

.platform-img-apple {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
    object-fit: contain;
    fill: white;
    filter: brightness(0) invert(1);
    
}


.platform-label {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 14px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
    animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.4), 0 0 20px rgba(255, 165, 0, 0.2);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 18px rgba(255, 215, 0, 0.8), 0 0 35px rgba(255, 165, 0, 0.4);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.4), 0 0 20px rgba(255, 165, 0, 0.2);
        transform: scale(1);
    }
}

.contact-btn-wrapper {
    text-align: center;
    margin-top: 30px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.contact-btn:hover {
    background: #f1f1f1;
    transform: scale(1.03);
}

.contact-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-section,
    .right-section {
        flex: none;
        padding: 20px 15px;
    }

    .content.with-bg {
        max-width: 100%;
        height: auto;
        padding: 20px 15px;
        border-radius: 10px;
        border-bottom: 30px solid #d5b166;
    }

    .bonus-cards {
        align-items: center;
        gap: 15px;
        margin-top: 15px;
    }

    .bonus-card {
        width: 80px;
        height: 80px;
        font-size: 0.75rem;
        padding: 8px;
    }

    .bonus-label {
        font-size: 1rem;
    }

    .content {
        padding: 0px;
    }

    .mega-logo {
        width: 120px;
    }

    .download-cards {
        /* Removed flex-direction: column; */
        gap: 15px;
        margin-top: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .download-card {
        width: 140px;
        padding: 15px;
    }

    .contact-btn-wrapper {
        margin-top: 25px;
    }

    .contact-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .platform-icon {
        font-size: 36px;
    }

    .platform-label {
        font-size: 0.9rem;
    }

    .download-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
        border-radius: 30px;
        letter-spacing: 0.4px;
    }
}


/* Info Section */
.section {
    padding: 60px 20px;
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 50, 0.5);
    /* semi-transparent overlay */
}

@media (max-width: 768px) {
    .section {
        padding: 20px;
    }
}

.info-content {
    margin: 0 auto;
    max-width: 800px;
    color: #fff;
}

/* List */
/* Unordered List */
.custom-list {
    list-style: disc;
    padding-left: 20px;
    margin: 20px 0;
    color: #fff;
}

.custom-list li {
    margin-bottom: 10px;
    padding-left: 5px;
}

/* Ordered List */
.custom-olist {
    list-style: decimal;
    padding-left: 20px;
    margin: 20px 0;
    color: #fff;
}

.custom-olist li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.custom-list li::marker,
.custom-olist li::marker {
    color: #5ce2e7;
    font-weight: bold;
}

/* Table */
.table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    text-align: left;
}

.info-table th,
.info-table td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table th {
    background: rgba(255, 255, 255, 0.08);
    font-weight: 700;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bottom Menu */
.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: url('assets/border-bottom.png') no-repeat center center;
    background-size: cover;
    border-top: 3px solid #d5b166;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    z-index: 1000;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    color: #000;
    text-decoration: none;
    position: relative;
}

/* Badge bubble */
.menu-item.notification .badge {
    position: absolute;
    top: 0;
    right: -4px;
    background: red;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
}

.icon-circle {
    width: 45px;
    height: 45px;
    background-color: #fff;
    /* or use a light blue/yellow */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.icon-circle img {
    width: 28px;
    height: 28px;
}

.promo-icon {
    width: 50px;
    /* Make it bigger */
    height: 50px;
    margin-bottom: 5px;
    display: block;
}

/* Footer */
.main-footer {
    padding: 20px 80px;
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 50, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .main-footer {
        padding: 20px;
    }
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto 20px;
}

.footer-about {
    flex: 1 1 65%;
}

.footer-follow {
    flex: 1 1 30%;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.15);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    font-size: 0.85rem;
    color: #aaa;
}

.bottom-spacer {
    height: 100px;
    /* match or slightly exceed .bottom-menu height */
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 50, 0.5);
}

@media (max-width: 768px) {
    .bottom-spacer {
        height: 90px;
    }
}