.guide-page {
    position: relative;
}

.guide-page .guide-hero {
    position: relative;
    padding: 50px 0 30px;
}

.guide-page .guide-hero__inner {
    position: relative;
    z-index: 1;
}

.guide-page .guide-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 8px 14px;
    background: rgba(249, 92, 51, 0.12);
    border: 1px solid rgba(249, 92, 51, 0.35);
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 1.5px;
    border-radius: 999px;
}

.guide-page .guide-kicker i {
    color: var(--color-secondary-1);
}

.guide-page .guide-lead {
    max-width: 900px;
    font-size: 18px;
    line-height: 30px;
    color: var(--color-light-grey-1);
}

.guide-page .guide-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.guide-page .guide-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
    margin-top: 35px;
}

.guide-page .guide-stat {
    position: relative;
    padding: 18px 18px 16px;
    background: rgba(10, 15, 20, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.07);
    clip-path: polygon(0 0px, 12px 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.guide-page .guide-stat__label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color-light-grey-3);
    letter-spacing: 1px;
}

.guide-page .guide-stat__value {
    display: block;
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
    color: #fff;
}

.guide-page .guide-stat__hint {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    line-height: 18px;
    color: var(--color-light-grey-3);
}

.guide-page .guide-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 25px;
    align-items: start;
}

.guide-page .guide-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.guide-page .guide-sidebar {
    position: sticky;
    top: 95px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-page .guide-card {
    position: relative;
    padding: 28px 28px 78px;
    background: rgba(14, 16, 19, 0.88);
    clip-path: polygon(0 0px, 18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px));
    overflow: hidden;
}

.guide-page .guide-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/background/container-bg.svg");
    background-size: 70px 70px;
    background-position: 0 0;
    opacity: 0.18;
    pointer-events: none;
}

.guide-page .guide-card::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 12px;
    width: 170px;
    height: 55px;
    background: url("../images/decos/deco-win-p5.svg") left bottom no-repeat;
    background-size: contain;
    opacity: 0.9;
    pointer-events: none;
}

.guide-page .guide-card > * {
    position: relative;
    z-index: 1;
}

.guide-page .guide-card--compact {
    padding: 22px 22px 58px;
}

.guide-page .guide-card--no-after::after {
    content: none;
}

.guide-page .guide-card__title {
    margin-bottom: 18px;
}

.guide-page .guide-card__title small {
    display: block;
    margin-bottom: 6px;
    color: var(--color-secondary-1);
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guide-page .guide-anchor-nav {
    display: grid;
    gap: 10px;
}

.guide-page .guide-anchor-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    text-decoration: none;
    color: var(--color-light-grey-1);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255,255,255,0.05);
    clip-path: polygon(0 0px, 10px 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.guide-page .guide-anchor-nav a:hover {
    transform: translateY(-2px);
    border-color: rgba(249, 92, 51, 0.35);
    background: rgba(249, 92, 51, 0.08);
    color: #fff;
}

.guide-page .guide-section-intro {
    max-width: 900px;
    margin-bottom: 18px;
}

.guide-page .guide-grid {
    display: grid;
    gap: 16px;
}

.guide-page .guide-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-page .guide-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-page .guide-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guide-page .guide-feature {
    padding: 18px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
}

.guide-page .guide-feature__icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 10px;
    background: rgba(249, 92, 51, 0.14);
    color: var(--color-secondary-1);
    font-size: 18px;
}

.guide-page .guide-feature h3,
.guide-page .guide-feature .h3 {
    margin-bottom: 10px;
}

.guide-page .guide-callout {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 15px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 4px solid var(--color-secondary-1);
    background: rgba(249, 92, 51, 0.06);
    border-radius: 10px;
}

.guide-page .guide-callout i {
    font-size: 22px;
    color: var(--color-secondary-1);
    margin-top: 4px;
}

.guide-page .guide-callout p:last-child {
    margin-bottom: 0;
}

.guide-page .guide-steps {
    display: grid;
    gap: 14px;
}

.guide-page .guide-step {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 15px;
    padding: 16px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
}

.guide-page .guide-step__number {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(180deg, var(--color-secondary-1) 0%, var(--color-secondary-dark) 100%);
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(249, 92, 51, 0.18);
}

.guide-page .guide-step__content p:last-child {
    margin-bottom: 0;
}

.guide-page .guide-media {
    position: relative;
    min-height: 220px;
    border-radius: 14px;
    overflow: hidden;
}

.guide-page .guide-media__inner {
    height: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d7efff;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    overflow: hidden;
}

.guide-page .guide-media__inner img {
    width: 100%;
}

.guide-page .guide-links {
    display: grid;
    gap: 10px;
}

.guide-page .guide-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.guide-page .guide-links a:hover {
    border-color: rgba(249, 92, 51, 0.35);
    background: rgba(249, 92, 51, 0.08);
}

.guide-page .guide-links a span:last-child {
    color: var(--color-secondary-1);
}

.guide-page .guide-checklist {
    display: grid;
    gap: 10px;
}

.guide-page .guide-checklist li {
    position: relative;
    padding-left: 28px;
    color: var(--color-light-grey-1);
}

.guide-page .guide-checklist li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Sharp";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--color-link);
}

.guide-page .guide-warning-list {
    display: grid;
    gap: 10px;
}

.guide-page .guide-warning-list li {
    position: relative;
    padding-left: 28px;
    color: var(--color-light-grey-1);
}

.guide-page .guide-warning-list li::before {
    content: "\f071";
    font-family: "Font Awesome 6 Sharp";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--color-warning);
}

.guide-page .guide-table-wrap {
    overflow-x: auto;
}

.guide-page .guide-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.025);
    border-radius: 12px;
    overflow: hidden;
}

.guide-page .guide-table thead {
    background: rgba(249, 92, 51, 0.12);
}

.guide-page .guide-table th,
.guide-page .guide-table td {
    padding: 14px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    vertical-align: top;
}

.guide-page .guide-table th {
    color: #fff;
    font-size: 14px;
}

.guide-page .guide-table td {
    color: var(--color-light-grey-1);
    font-size: 15px;
    line-height: 22px;
}

.guide-page .guide-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.guide-page .guide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.guide-page .guide-badge i {
    color: var(--color-secondary-1);
}

.guide-page .guide-mini-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.guide-page .guide-mini-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    text-decoration: none;
    color: var(--color-light-grey-1);
    font-size: 14px;
}

.guide-page .guide-mini-nav a:hover {
    color: #fff;
    border-color: rgba(249, 92, 51, 0.35);
    background: rgba(249, 92, 51, 0.08);
}

.guide-page .guide-note {
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(0, 199, 158, 0.08);
    border: 1px solid rgba(0, 199, 158, 0.28);
    color: #d9fff7;
}

.guide-page .guide-note p:last-child {
    margin-bottom: 0;
}

.guide-page .guide-faq {
    display: grid;
    gap: 12px;
}

.guide-page .guide-faq details {
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
}

.guide-page .guide-faq summary {
    padding: 16px 18px;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    list-style: none;
}

.guide-page .guide-faq summary::-webkit-details-marker {
    display: none;
}

.guide-page .guide-faq details > div {
    padding: 0 18px 18px;
}

.guide-page .guide-page-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.guide-page .guide-page-nav .btn {
    min-width: auto;
    height: 50px;
    line-height: 50px;
    padding: 0 24px;
}

.guide-page .guide-divider {
    width: 100%;
    height: 1px;
    margin: 5px 0 0;
    background: linear-gradient(90deg, rgba(249,92,51,0), rgba(249,92,51,0.8), rgba(249,92,51,0));
}

@media all and (max-width: 1199px) {
    .guide-page .guide-layout {
        grid-template-columns: 1fr;
    }

    .guide-page .guide-sidebar {
        position: relative;
        top: 0;
    }

    .guide-page .guide-hero__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-page .guide-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media all and (max-width: 767px) {
    .guide-page .guide-hero {
        padding: 35px 0 20px;
    }

    .guide-page .guide-lead {
        font-size: 16px;
        line-height: 26px;
    }

    .guide-page .guide-card,
    .guide-page .guide-card--compact {
        padding: 22px 20px 54px;
    }

    .guide-page .guide-hero__stats,
    .guide-page .guide-grid--2,
    .guide-page .guide-grid--3,
    .guide-page .guide-grid--4 {
        grid-template-columns: 1fr;
    }

    .guide-page .guide-step,
    .guide-page .guide-callout {
        grid-template-columns: 1fr;
    }

    .guide-page .guide-step__number {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .guide-page .guide-media {
        min-height: 180px;
    }

    .guide-page .guide-media__inner {
        min-height: 140px;
        padding: 22px;
        font-size: 15px;
        line-height: 22px;
    }
}