#view-pricing { padding: 130px 20px 80px; }

.section-title {
    text-align: center;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 200;
    letter-spacing: 1px;
    margin-bottom: 50px;
    color: #f2ebf0;
}

.product-selector {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.product-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: #9c8d96;
    font-family: inherit;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
}
.product-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(233, 30, 140, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity .35s ease;
}
.product-btn:hover {
    border-color: rgba(233, 30, 140, 0.4);
    color: #e878b4;
}
.product-btn:hover::before { opacity: 1; }
.product-btn.active {
    border-color: #e91e8c;
    color: #fff;
    background: rgba(233, 30, 140, 0.08);
    box-shadow: 0 0 20px rgba(233, 30, 140, 0.15), 0 0 40px rgba(233, 30, 140, 0.05);
}
.product-btn.active::before { opacity: 1; }
.product-btn-icon {
    font-size: 10px;
    color: #e91e8c;
    transition: transform .3s ease;
}
.product-btn.active .product-btn-icon { transform: scale(1.3); }

.product-panel {
    display: none;
    animation: panelIn .5s ease both;
}
.product-panel.active { display: block; }
@keyframes panelIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.showcase {
    max-width: 1100px;
    margin: 0 auto 70px;
    text-align: center;
}
.showcase-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 200;
    color: #f2ebf0;
    margin-bottom: 14px;
}
.showcase-sub {
    font-size: 15px;
    font-weight: 300;
    color: #8f8089;
    margin-bottom: 50px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.viewer {
    max-width: 750px;
    margin: 0 auto 20px;
}

.viewer-stage {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
}

.viewer-glow {
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: conic-gradient(
        from 0deg,
        #e91e8c,
        #ec3fa0,
        #f27ab8,
        rgba(233, 30, 140, 0.2),
        #e91e8c,
        #ec3fa0,
        rgba(233, 30, 140, 0.3),
        #e91e8c
    );
    animation: glowSpin 4s linear infinite;
    z-index: 0;
    filter: blur(1px);
}
@keyframes glowSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.viewer-frame {
    position: relative;
    background: #0d090c;
    border-radius: 11px;
    overflow: hidden;
    z-index: 1;
    aspect-ratio: 16 / 10;
}

.viewer-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0a070a;
    opacity: 0;
    transition: none;
    pointer-events: none;
}
.viewer-img.active {
    opacity: 1;
    z-index: 2;
    animation: imgFadeIn .4s ease both;
}
.viewer-img.exit-left {
    z-index: 1;
    opacity: 1;
    animation: imgExitLeft .4s ease both;
}
.viewer-img.exit-right {
    z-index: 1;
    opacity: 1;
    animation: imgExitRight .4s ease both;
}
.viewer-img.enter-left { animation: imgEnterLeft .4s ease both; }
.viewer-img.enter-right { animation: imgEnterRight .4s ease both; }

@keyframes imgFadeIn {
    from { opacity: 0; transform: scale(1.02); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes imgExitLeft {
    from { opacity: 1; transform: translateX(0); }
    to   { opacity: 0; transform: translateX(-6%); }
}
@keyframes imgExitRight {
    from { opacity: 1; transform: translateX(0); }
    to   { opacity: 0; transform: translateX(6%); }
}
@keyframes imgEnterLeft {
    from { opacity: 0; transform: translateX(-6%); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes imgEnterRight {
    from { opacity: 0; transform: translateX(6%); }
    to   { opacity: 1; transform: translateX(0); }
}

.viewer-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(13, 9, 12, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cfc3cb;
    font-size: 28px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all .25s ease;
    backdrop-filter: blur(8px);
    line-height: 1;
    padding: 0;
}
.viewer-arrow:hover {
    background: rgba(233, 30, 140, 0.2);
    border-color: #e91e8c;
    color: #fff;
    box-shadow: 0 0 16px rgba(233, 30, 140, 0.3);
}
.viewer-prev { left: 12px; }
.viewer-next { right: 12px; }

.viewer-thumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.viewer-thumb {
    position: relative;
    width: 110px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s ease;
    padding: 0;
    font-family: inherit;
}
.viewer-thumb img {
    width: 100%;
    display: block;
    opacity: 0.5;
    transition: opacity .3s ease;
}
.viewer-thumb span {
    display: block;
    padding: 6px 0;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #7a6d75;
    text-align: center;
    transition: color .3s ease;
}
.viewer-thumb:hover {
    border-color: rgba(233, 30, 140, 0.3);
}
.viewer-thumb:hover img { opacity: 0.8; }
.viewer-thumb:hover span { color: #cfc3cb; }
.viewer-thumb.active {
    border-color: #e91e8c;
    box-shadow: 0 0 12px rgba(233, 30, 140, 0.2);
}
.viewer-thumb.active img { opacity: 1; }
.viewer-thumb.active span { color: #e878b4; }

.games-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 30px;
}
.game-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 300;
    color: #cfc3cb;
    transition: all .3s ease;
}
.game-badge:hover {
    border-color: rgba(233, 30, 140, 0.4);
    background: rgba(233, 30, 140, 0.06);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(233, 30, 140, 0.1);
}
.game-icon {
    color: #e91e8c;
    font-size: 12px;
}

.bypass-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 45px;
    padding: 10px 24px;
    border: 1px solid rgba(233, 30, 140, 0.3);
    border-radius: 50px;
    background: rgba(233, 30, 140, 0.06);
    font-family: "Consolas", "Courier New", monospace;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: #e878b4;
}
.bypass-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e91e8c;
    box-shadow: 0 0 8px rgba(233, 30, 140, 0.8);
    animation: bypassPulse 2s ease-in-out infinite;
}
@keyframes bypassPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(233, 30, 140, 0.8); }
    50% { opacity: 0.5; box-shadow: 0 0 14px rgba(233, 30, 140, 1); }
}

.plans-heading {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 200;
    letter-spacing: 1px;
    margin-bottom: 50px;
    color: #f2ebf0;
}

.plans {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    max-width: 1450px;
    margin: 0 auto;
}

.plan {
    position: relative;
    width: 440px;
    max-width: 100%;
    padding: 70px 45px 60px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.015);
    text-align: center;
}
.plan.popular {
    border-color: #e91e8c;
    background:
        radial-gradient(ellipse 90% 60% at 50% 0%, rgba(160, 25, 100, 0.16), transparent 75%),
        rgba(255, 255, 255, 0.015);
}

.badge {
    position: absolute;
    top: 0; left: 50%;
    transform: translate(-50%, 12px);
    background: #e91e8c;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 8px 18px;
}

.plan h3 {
    font-size: 24px;
    font-weight: 300;
    color: #e878b4;
    margin-bottom: 34px;
}
.plan .price {
    font-size: 46px;
    font-weight: 300;
    color: #f5eef3;
    margin-bottom: 14px;
}
.plan .period {
    font-size: 14px;
    color: #8f8089;
    margin-bottom: 44px;
}

.plan ul {
    list-style: none;
    margin-bottom: 52px;
}
.plan li {
    font-size: 14.5px;
    color: #cfc3cb;
    padding: 9px 0;
}
.plan li::before {
    content: "\2713";
    color: #e91e8c;
    margin-right: 12px;
    font-size: 13px;
}

.product-btn-img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}
.product-btn-svg {
    width: 20px;
    height: 20px;
    color: #e91e8c;
    flex-shrink: 0;
}

.gui-demo {
    max-width: 850px;
    margin: 0 auto 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background: #0e0a0d;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(233, 30, 140, 0.06);
}

.gui-titlebar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.gui-logo {
    font-size: 16px;
    font-weight: 300;
    background: linear-gradient(135deg, #f27ab8, #e91e8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gui-titlebar-r {
    display: flex;
    align-items: center;
    gap: 14px;
}
.gui-connected {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: #8f8089;
}
.gui-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4caf50;
    box-shadow: 0 0 6px rgba(76, 175, 80, 0.6);
}
.gui-win-btn {
    font-size: 12px;
    color: #5f5259;
    cursor: default;
}

.gui-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.gui-tab {
    flex: 1;
    padding: 12px 0;
    text-align: center;
    font-family: inherit;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 400;
    color: #7a6d75;
    background: none;
    border: none;
    cursor: pointer;
    transition: color .25s ease;
    border-bottom: 2px solid transparent;
}
.gui-tab:hover { color: #cfc3cb; }
.gui-tab.active {
    color: #e91e8c;
    border-bottom-color: #e91e8c;
}

.gui-page { display: none; padding: 24px 18px; min-height: 300px; }
.gui-page.active { display: block; animation: guiFadeIn .3s ease; }
@keyframes guiFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gui-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gui-section { margin-bottom: 10px; }
.gui-section-head {
    font-size: 12px;
    letter-spacing: 1.5px;
    color: #9c8d96;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-left: 3px solid #e91e8c;
    padding-left: 12px;
}

.gui-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0 8px 15px;
    font-size: 13.5px;
    color: #cfc3cb;
}
.gui-row.gui-sub {
    padding-left: 30px;
    font-size: 13px;
    color: #9c8d96;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}
.gui-row.gui-sub.gui-sub-show {
    max-height: 50px;
    opacity: 1;
    padding-top: 8px;
    padding-bottom: 8px;
}
.gui-row.gui-bypass:has(input:checked) span:first-child {
    color: #e878b4;
    font-weight: 500;
}

.gui-toggle {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 22px;
    flex-shrink: 0;
}
.gui-toggle input { opacity: 0; width: 0; height: 0; }
.gui-slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    transition: background .25s ease;
}
.gui-slider::before {
    content: '';
    position: absolute;
    left: 3px;
    bottom: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    transition: transform .25s ease;
}
.gui-toggle input:checked + .gui-slider {
    background: #e91e8c;
}
.gui-toggle input:checked + .gui-slider::before {
    transform: translateX(20px);
}

.gui-range {
    flex: 1;
    margin: 0 14px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
}
.gui-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e91e8c;
    cursor: pointer;
    border: 2px solid #fff;
}
.gui-range-val {
    font-size: 12px;
    color: #8f8089;
    min-width: 36px;
    text-align: right;
}

.gui-config-btn {
    padding: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cfc3cb;
    font-size: 13px;
    cursor: pointer;
    margin-bottom: 8px;
    transition: border-color .2s;
}
.gui-config-btn:hover { border-color: #e91e8c; }
.gui-config-item {
    padding: 10px 14px;
    font-size: 13px;
    color: #cfc3cb;
    border: 1px solid transparent;
    margin-bottom: 6px;
}
.gui-config-item.active {
    background: rgba(233, 30, 140, 0.15);
    border-color: rgba(233, 30, 140, 0.3);
    color: #fff;
}
.gui-config-selected {
    font-size: 13px;
    color: #e878b4;
    margin: 10px 0;
    text-decoration: underline;
}
.gui-config-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}
.gui-config-actions span {
    flex: 1;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #cfc3cb;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: border-color .2s;
}
.gui-config-actions span:hover { border-color: #e91e8c; color: #fff; }

.gui-footer {
    display: flex;
    justify-content: space-between;
    padding: 10px 18px;
    font-size: 11px;
    color: #5f5259;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.gt-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 20px;
}
.gt-feat-card {
    position: relative;
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.015);
    border-radius: 4px;
    transition: border-color .3s, transform .3s;
}
.gt-feat-card:hover {
    border-color: rgba(233, 30, 140, 0.3);
    transform: translateY(-3px);
}
.gt-feat-card h4 {
    font-size: 17px;
    font-weight: 400;
    color: #f2ebf0;
    margin-bottom: 12px;
}
.gt-feat-card p {
    font-size: 13.5px;
    font-weight: 300;
    color: #8f8089;
    line-height: 1.6;
}
.gt-feat-exclusive {
    border-color: rgba(233, 30, 140, 0.25);
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(160, 25, 100, 0.08), transparent 70%),
        rgba(255, 255, 255, 0.015);
}
.gt-feat-badge {
    display: inline-block;
    background: #e91e8c;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    margin-bottom: 16px;
}

.gt-free-section {
    position: relative;
    text-align: center;
    padding: 70px 20px;
    margin-top: 60px;
    overflow: hidden;
}
.gt-free-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(233, 30, 140, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: freeGlow 3s ease-in-out infinite alternate;
}
@keyframes freeGlow {
    from { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
    to   { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}
.gt-free-badge {
    position: relative;
    display: inline-block;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 200;
    letter-spacing: 12px;
    color: #e91e8c;
    text-shadow: 0 0 30px rgba(233, 30, 140, 0.4);
    margin-bottom: 16px;
}
.gt-free-sub {
    position: relative;
    font-size: 15px;
    color: #8f8089;
    margin-bottom: 36px;
}

/* ── Gorilla Hero ── */
.gt-hero {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 60px;
}
.gt-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    filter: brightness(0.4) saturate(1.2);
}
.gt-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, #0d090c 100%),
                linear-gradient(90deg, rgba(233, 30, 140, 0.08), transparent 60%);
}
.gt-hero-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
}
.gt-hero-text .showcase-title {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 10px;
}

/* ── Stats Counter ── */
.gt-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 50px 20px;
    margin: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.gt-stat { text-align: center; }
.gt-stat-num {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 200;
    color: #f2ebf0;
    letter-spacing: 2px;
}
.gt-stat-free {
    color: #e91e8c;
    text-shadow: 0 0 20px rgba(233, 30, 140, 0.4);
}
.gt-stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5f5259;
    margin-top: 8px;
}

/* ── Scroll Reveal System ── */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
[data-reveal="fade"] { transform: none; }
[data-reveal="up"] { transform: translateY(50px); }
[data-reveal="left"] { transform: translateX(-60px); }
[data-reveal="right"] { transform: translateX(60px); }
[data-reveal="scale"] { transform: scale(0.85); }

[data-reveal].revealed {
    opacity: 1;
    transform: none;
}

/* ── GUI Bypass Row Glow ── */
.gui-bypass {
    position: relative;
}
.gui-bypass::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e91e8c;
    box-shadow: 0 0 8px rgba(233, 30, 140, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gui-bypass:has(input:checked)::before {
    opacity: 1;
}

/* ── GUI Scrollable Content ── */
.gui-page-scroll {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(233, 30, 140, 0.3) transparent;
}
.gui-page-scroll::-webkit-scrollbar {
    width: 4px;
}
.gui-page-scroll::-webkit-scrollbar-thumb {
    background: rgba(233, 30, 140, 0.3);
    border-radius: 4px;
}

/* ── Download Button Enhancement ── */
.gt-dl-btn {
    position: relative;
    font-size: 16px;
    letter-spacing: 3px;
    padding: 18px 50px;
    overflow: hidden;
}
.gt-dl-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(233, 30, 140, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}
.gt-dl-btn:hover::before {
    width: 400px;
    height: 400px;
}

@media (max-width: 720px) {
    .viewer { max-width: 100%; }
    .viewer-thumb { width: 80px; }
    .viewer-thumb span { font-size: 9px; }
    .viewer-arrow { width: 36px; height: 36px; font-size: 22px; }
    .product-selector { gap: 10px; }
    .product-btn { padding: 11px 16px; font-size: 12px; }
    .gui-cols { grid-template-columns: 1fr; }
    .gui-tab { font-size: 10px; letter-spacing: 0.5px; padding: 10px 0; }
    .gt-features { grid-template-columns: 1fr; }
    .gt-hero-text { left: 20px; bottom: 20px; }
    .gt-stats { gap: 30px; flex-wrap: wrap; }
}
