/**	Write your changes below	**/
header nav#navbar {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
}

/* About Burswood section */
.about-burswood {
    padding: 6rem 0;
}

.about-header {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.about-header h2 {
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 2rem;
}

/* badges */
.about-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.about-badges .badge {
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
}

/* grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

/* columns */
.about-col h3 {
    margin-bottom: 1.6rem;
}

.about-col h4 {
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #02c0ca;
}

.about-col p {
    margin-bottom: 1.2rem;
    line-height: 1.75;
}

/* lists */
.about-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.about-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.about-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #02c0ca;
    font-size: 0.8rem;
}

/* highlighted list */
.about-list.highlight li::before {
    content: "◆";
    color: #d6188a;
}

/* responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Welcome Bonus Block */
.welcome-bonus {
    margin-top: 3rem;
    padding: 2rem 2.2rem;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(214, 24, 138, 0.18),
        rgba(2, 192, 202, 0.18)
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 520px;
}

.bonus-title {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.bonus-values {
    margin-bottom: 1.4rem;
}

.bonus-main {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.bonus-main span {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

.bonus-extra {
    margin-top: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.bonus-extra .highlight {
    color: #02c0ca;
    font-weight: 600;
}

.bonus-description {
    margin-top: 1.2rem;
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Casino Advantages */
.casino-advantages {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2.5rem;
}

.adv-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.adv-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #d6188a, #02c0ca);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* makes any icon colorless and gradient-based */
.adv-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.adv-text h4 {
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}

.adv-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* responsive */
@media (max-width: 900px) {
    .casino-advantages {
        grid-template-columns: 1fr;
    }
}

/* space between outro text and CTA button */
.adv-outro {
    margin-bottom: 2.2rem;   
}

/* extra safety for CTA button */
.btn-border {
    margin-top: 0.8rem;
}

/* Games Overview */
.games-overview { padding: 6rem 0; }

.games-head { max-width: 980px; margin: 0 auto 3rem; }
.games-head h2 { margin-bottom: 1.2rem; }
.games-intro { font-size: 1.1rem; line-height: 1.75; opacity: 0.95; margin-bottom: 1.6rem; }

/* badges / stickers */
.games-badges {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 0.6rem; margin-top: 0.3rem;
}
.games-badges .badge,
.games-cta .badge {
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.85rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    white-space: nowrap;
}

/* highlights */
.games-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}
.hl-card {
    padding: 1.4rem 1.4rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
}
.hl-title { font-weight: 700; margin-bottom: 0.9rem; }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chips-tight { margin-top: 0.9rem; }
.chip {
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.82rem;
    background: rgba(2,192,202,0.14);
    border: 1px solid rgba(2,192,202,0.22);
    white-space: nowrap;
}

/* two columns */
.games-grid { gap: 4rem; }
.games-col h3 { margin-bottom: 1.3rem; }
.games-col h4 {
    margin-top: 2.1rem;
    margin-bottom: 1rem;
    color: #02c0ca;
    font-size: 1.08rem;
}
.games-col p { margin-bottom: 1.1rem; line-height: 1.75; }

/* tags inside lists */
.tag {
    display: inline-block;
    margin-right: 0.45rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.78rem;
    background: rgba(214,24,138,0.16);
    border: 1px solid rgba(214,24,138,0.25);
    vertical-align: middle;
}
.tag2 {
    background: rgba(2,192,202,0.14);
    border: 1px solid rgba(2,192,202,0.22);
}

/* note boxes */
.note-box {
    margin-top: 1.8rem;
    padding: 1.3rem 1.4rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(214,24,138,0.14), rgba(2,192,202,0.14));
    border: 1px solid rgba(255,255,255,0.12);
}
.note-box-alt {
    background: rgba(255,255,255,0.06);
}
.note-title { font-weight: 700; margin-bottom: 0.6rem; }
.note-text { margin: 0; opacity: 0.92; line-height: 1.65; }

/* CTA strip */
.games-cta {
    margin-top: 3.5rem;
    padding: 2.2rem 2.2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(214,24,138,0.18), rgba(2,192,202,0.18));
    border: 1px solid rgba(255,255,255,0.12);
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 1.5rem;
    align-items: center;
}
.games-cta h3 { margin-bottom: 0.7rem; }
.games-cta p { margin-bottom: 1.1rem; opacity: 0.95; }
.cta-right { display: flex; flex-direction: column; gap: 0.9rem; align-items: flex-start; }
.cta-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* responsive */
@media (max-width: 950px) {
    .games-highlights { grid-template-columns: 1fr; }
    .games-cta { grid-template-columns: 1fr; }
    .cta-right { flex-direction: row; flex-wrap: wrap; }
}

/* Slots Overview */
.slots-overview { padding: 6rem 0; }

.slots-head { max-width: 980px; margin: 0 auto 3rem; }
.slots-intro { font-size: 1.08rem; line-height: 1.75; opacity: 0.95; margin-bottom: 1.6rem; }

.slots-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

/* categories */
.slots-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    margin: 2.5rem 0 3.5rem;
}

.slot-card {
    padding: 1.6rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.slot-card h4 { margin-bottom: 0.8rem; }

/* deep grid */
.slots-grid { gap: 4rem; }
.slots-col h3 { margin-bottom: 1.3rem; }
.slots-col h4 {
    margin-top: 2.1rem;
    margin-bottom: 1rem;
    color: #02c0ca;
}

/* CTA */
.slots-cta {
    margin-top: 3.5rem;
    padding: 2.4rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(214,24,138,0.18), rgba(2,192,202,0.18));
    border: 1px solid rgba(255,255,255,0.12);
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 1.5rem;
    align-items: center;
}

/* responsive */
@media (max-width: 950px) {
    .slots-categories { grid-template-columns: 1fr; }
    .slots-cta { grid-template-columns: 1fr; }
}

/* Table Games & Live Casino */
.table-live-overview { padding: 6rem 0; }

.table-live-head { max-width: 980px; margin: 0 auto 3rem; }
.table-live-intro { font-size: 1.08rem; line-height: 1.75; opacity: 0.95; margin-bottom: 1.6rem; }

.table-live-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

/* highlights */
.table-live-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

/* grid */
.table-live-grid { gap: 4rem; }
.table-live-col h3 { margin-bottom: 1.3rem; }
.table-live-col h4 {
    margin-top: 2.1rem;
    margin-bottom: 1rem;
    color: #02c0ca;
}

/* CTA */
.table-live-cta {
    margin-top: 3.5rem;
    padding: 2.4rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(214,24,138,0.18), rgba(2,192,202,0.18));
    border: 1px solid rgba(255,255,255,0.12);
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 1.5rem;
    align-items: center;
}

/* responsive */
@media (max-width: 950px) {
    .table-live-highlights { grid-template-columns: 1fr; }
    .table-live-cta { grid-template-columns: 1fr; }
}

/* Promotions & Bonuses */
.promo-highlight {
    margin: 1.6rem 0 2.4rem;
}

.promo-main {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.6rem;
}

.promo-desc {
    opacity: 0.9;
    max-width: 520px;
}

.promo-grid {
    margin-top: 1.8rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem 1.6rem;
}

.promo-card {
    padding: 1.2rem 1.3rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.promo-card h5 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.promo-card p {
    margin: 0;
    opacity: 0.9;
}

.promo-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.7rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #d6188a, #02c0ca);
    color: #fff;
}

.promo-outro {
    margin-top: 2.2rem;
    max-width: 560px;
    line-height: 1.7;
    opacity: 0.9;
}

/* responsive */
@media (max-width: 900px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }
}

/* Bonuses Overview */
.bonuses-overview { padding: 6rem 0; }

.bonuses-head { max-width: 1000px; margin: 0 auto 3.5rem; }
.bonuses-intro { font-size: 1.1rem; line-height: 1.75; opacity: 0.95; margin-bottom: 1.6rem; }

.bonuses-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

/* main bonus */
.bonus-main {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 2.5rem;
    padding: 2.5rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(214,24,138,0.15), rgba(2,192,202,0.15));
    border: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 3.5rem;
}

.bonus-figure {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.15;
}

.bonus-sub {
    margin-top: 0.6rem;
    font-size: 1.1rem;
    opacity: 0.95;
}

.bonus-note {
    margin-top: 1.2rem;
    opacity: 0.9;
}

/* grid */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
}

.bonus-card {
    padding: 1.5rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.bonus-card h4 { margin-bottom: 0.5rem; }

.bonus-label {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #d6188a, #02c0ca);
    color: #fff;
}

/* outro */
.bonuses-outro {
    margin-top: 3.5rem;
    text-align: center;
}

.bonuses-outro p {
    max-width: 680px;
    margin: 0 auto 1.6rem;
    opacity: 0.95;
}

/* responsive */
@media (max-width: 1100px) {
    .bonuses-grid { grid-template-columns: repeat(2, 1fr); }
    .bonus-main { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .bonuses-grid { grid-template-columns: 1fr; }
}

/* Login & Registration */
.login-registration { padding: 6rem 0; }

.lr-head { max-width: 980px; margin: 0 auto 3.5rem; }
.lr-intro { font-size: 1.1rem; line-height: 1.75; opacity: 0.95; margin-bottom: 1.6rem; }

.lr-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

/* grid */
.lr-grid { gap: 4rem; }
.lr-col h3 { margin-bottom: 1.3rem; }
.lr-col h4 {
    margin-top: 2.1rem;
    margin-bottom: 1rem;
    color: #02c0ca;
}

/* recovery */
.lr-recovery {
    margin-top: 4rem;
    padding: 2.2rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.lr-recovery-note {
    margin-top: 1.2rem;
    opacity: 0.9;
}

/* CTA */
.lr-cta {
    margin-top: 3.5rem;
    padding: 2.4rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(214,24,138,0.18), rgba(2,192,202,0.18));
    border: 1px solid rgba(255,255,255,0.12);
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 1.5rem;
    align-items: center;
}

/* responsive */
@media (max-width: 900px) {
    .lr-cta { grid-template-columns: 1fr; }
}

/* Casino App */
.casino-app { 
    padding: 6rem 0; 
}

.app-head { 
    max-width: 980px; 
    margin: 0 auto 3.5rem; 
}

.app-intro { 
    font-size: 1.1rem; 
    line-height: 1.75; 
    opacity: 0.95; 
    margin-bottom: 1.6rem; 
}

.app-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

/* grid */
.app-grid { 
    gap: 4rem; 
}

/* image column */
.app-image {
    max-width: 1020px;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1.2rem;
}

.app-image-text {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 1.6rem;
}

.app-stores {
    display: flex;
    gap: 1rem;
}

.app-stores img {
    max-width: 160px;
    width: 100%;
    height: auto;
}

/* features */
.app-features {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.app-feature {
    display: flex;
    gap: 1rem;
}

/* ICON STYLE – UPDATED */
.app-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 16px;

    background: linear-gradient(
        135deg,
        #ff2fa4 0%,
        #9b5cff 45%,
        #00d2ff 100%
    );

    box-shadow:
        0 8px 24px rgba(255, 47, 164, 0.35),
        0 0 0 1px rgba(255,255,255,0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* force white icon */
.app-icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

/* hover effect */
.app-feature:hover .app-icon {
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        0 14px 36px rgba(255, 47, 164, 0.45),
        0 0 0 1px rgba(255,255,255,0.12);
}

/* install */
.app-install {
    margin-top: 4rem;
    padding: 2.4rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.app-install-grid { 
    gap: 3rem; 
}

/* responsive */
@media (max-width: 900px) {
    .app-stores {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Payments */
.payments-section { padding: 6rem 0; }

.payments-head {
    max-width: 980px;
    margin: 0 auto 3rem;
}

.payments-intro {
    line-height: 1.75;
    opacity: 0.95;
}

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

.tab-btn {
    padding: 0.6rem 1.6rem;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
}

.tab-btn.active {
    background: linear-gradient(135deg,#ff2fa4,#00d2ff);
    border-color: transparent;
}

.payments-tables {
    max-width: 820px;
    margin: 0 auto;
}

.payments-table {
    display: none;
}

.payments-table.active {
    display: block;
}

.payments-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0,0,0,0.4);
    border-radius: 18px;
    overflow: hidden;
}

.payments-table th,
.payments-table td {
    padding: 0.9rem 1rem;
    text-align: left;
}

.payments-table th {
    background: rgba(255,255,255,0.06);
}

.pay-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.6rem;
}

.pay-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.payments-info {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
}

@media (max-width: 768px) {
    .payments-table table {
        font-size: 0.9rem;
    }
}

.payments-info {
    margin-top: 3.5rem;
    display: grid;
    gap: 2.4rem;
}

.info-item {
    padding: 2rem 2.2rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.info-item h4 {
    margin-bottom: 0.8rem;
}

.info-item p {
    opacity: 0.95;
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

.info-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
}

.bg-image p {
    margin-bottom: 1.8rem;
}

/* Trust & Infrastructure */
.casino-trust {
    padding: 6.5rem 0;
}

.trust-head {
    max-width: 980px;
    margin: 0 auto 4rem;
}

.trust-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: 0.95;
}

.trust-grid {
    gap: 2.6rem;
}

.trust-item {
    padding: 2.4rem 2.6rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.trust-item h3 {
    margin-bottom: 0.8rem;
}

.trust-item p {
    line-height: 1.75;
    opacity: 0.95;
    margin-bottom: 1.2rem;
}

.trust-list {
    padding-left: 1.1rem;
}

.trust-list li {
    margin-bottom: 0.45rem;
    opacity: 0.9;
}

/* FAQ */
.faq-section { padding: 6.5rem 0; }

.faq-head {
    max-width: 980px;
    margin: 0 auto 3.8rem;
}

.faq-intro {
    line-height: 1.75;
    opacity: 0.95;
}

.faq-grid {
    gap: 3rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.4rem;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    cursor: pointer;
    font-weight: 500;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.4rem 1.2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 260px;
}

.casino-footer p {
    opacity: 0.9;
    line-height: 1.7;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.footer-trust span {
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
}

.footer-notice {
    margin-top: 2rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.85;
}

.footer-copy {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 3rem;
    font-size: 0.85rem;
    opacity: 0.7;
}
