@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

#vanta-container {
    position: fixed;
    /* or absolute */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Behind other content */
}

body {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh;
    background-color: #202020;
    color: #ccc;
    overflow-x: hidden;
}

/* Add custom scrollbar styles */
::-webkit-scrollbar {
    width: 8px;
    background-color: #303030;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb {
    background-color: #404040;
    border-radius: 10px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #202020;
    transition: all 0.3s ease;
}

.page-section {
    background: linear-gradient(to bottom, #202020 5%, #101010 60%, #202020 90%);
    /* Top-to-bottom fade */
}

.container {
    text-align: center;
    margin: auto;
    padding: 20px;
}

.home-row .container {
    text-align: left;
}

.home-container {
    text-align: left;
    padding: 20px;
    display: block;
}

.home-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1300px;
    margin: 50px auto;
}

/* .container/nav.main both default to margin:auto, which (as flex items) eats all
   free space itself and grows unbounded with viewport width — kill that so the
   max-width cap above + gap control the spacing instead. */
.home-row > .container {
    margin-left: 0;
    margin-right: 0;
}

.home-row nav.main {
    margin-left: 0;
    margin-right: 0;
}

/* Hero fills the viewport below the (static, non-fixed) header on desktop, instead
   of leaving empty space above the next section. flex:1 on the hero .page-section
   absorbs whatever height the header doesn't use - no hardcoded header height.
   Capped at 1080px (exactly what looked right on a 1920x1080 screen) instead of an
   uncapped 100vh - on taller/larger monitors 100vh alone left a huge empty void
   above/below the (fixed-size) hero content since nothing scales up to fill it;
   capping lets a peek of the next section show through instead on those screens.
   Desktop-only (min-width matches the site's mobile breakpoint elsewhere): mobile
   browsers resize 100vh as the address bar shows/hides, which would make a forced
   full-height hero jump around, so mobile keeps its natural content-hugging height. */
@media (min-width: 769px) {
    .hero-viewport {
        display: flex;
        flex-direction: column;
        min-height: min(100vh, 1080px);
    }

    .hero-viewport .site-header {
        flex-shrink: 0;
    }

    .hero-viewport .page-section {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .hero-viewport .home-row {
        margin-top: 0;
        margin-bottom: 0;
    }
}

.icon img {
    max-width: 100px;
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.icon img:hover {
    transform: scale(1.1);
}

.title {
    font-size: 2em;
    margin: 0;
    color: #fff;
}

.title b {
    color: #0982f8;
}

.sub-title {
    font-size: 1.2em;
    margin: 0;
    color: #ccc;
}

.behind-menu-message {
    position: fixed;
    bottom: -60px;
    opacity: 0;
    margin: auto;
}

nav.close .behind-menu-message {
    opacity: 100;
}

.message {
    font-size: 1.3em;
    max-width: 700px;
    color: #ccc;
    transition: all 0.3s ease;
    margin-left: auto;
    margin-right: auto;
}

b.edgenuity {
    color: #fff !important;
    font-weight: 600;
}

b.edgenuity i {
    font-style: normal !important;
    color: #c7d8ff !important;
}

.sub-text {
    font-size: 12px !important;
    color: #ccc !important;
}

.message:hover {
    color: #fff;
}

.message a {
    color: #0982f8;
    font-weight: 800;
    text-decoration: none;
}

.message a:hover {
    text-decoration: underline;
}

ol.message {
    text-align: left;
}

/* Main Container */
.confirmation-container {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(180deg, #121212, #1a1a1a);
    color: #e0e0e0;
}

.confirmation-content {
    background: linear-gradient(160deg, #202020 0%, #181818 100%);
    border: 1px solid #2c2c2c;
    padding: 44px 40px;
    border-radius: 16px;
    max-width: 760px;
    width: 100%;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Success badge */
.confirmation-badge {
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient(160deg, #28c76f 0%, #1a9e54 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(40, 199, 111, 0.4);
    animation: badgePop 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}

.confirmation-badge i {
    color: #fff;
    font-size: 46px;
}

.confirmation-badge.error {
    background: linear-gradient(160deg, #ff5b5b 0%, #c62828 100%);
    box-shadow: 0 8px 24px rgba(244, 67, 54, 0.4);
}

.confirmation-badge.tutorial {
    background: linear-gradient(160deg, #0a84ff 0%, #0668d0 100%);
    box-shadow: 0 8px 24px rgba(10, 132, 255, 0.4);
}

@keyframes badgePop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Logo (payment-failed page) */
.confirmation-icon img {
    max-width: 80px;
    transition: opacity 0.3s ease-in-out;
}

.confirmation-icon img:hover {
    opacity: 0.8;
}

/* Titles */
.confirmation-title {
    font-size: 2.1em;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 10px;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.highlight {
    color: #0a84ff;
}

.highlight.error {
    color: #ff5b5b;
}

/* General Message */
.confirmation-message {
    font-size: 1.02em;
    margin-top: 12px;
    color: #b9b9b9;
    line-height: 1.65;
}

/* Key Display */
.key-box {
    background: linear-gradient(160deg, #1a2531 0%, #161616 70%);
    border: 1px solid #28384a;
    padding: 22px;
    border-radius: 12px;
    margin: 28px 0;
    text-align: left;
}

.key-box label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    color: #9bb8d4;
}

.key-box label i {
    font-size: 1rem;
    color: #43b0ff;
}

.key-box-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background-color: #0d0d0d;
    border: 1px solid #1f2937;
    padding: 14px 16px;
    border-radius: 8px;
}

#user-key {
    font-family: 'Courier New', monospace;
    font-size: 1.05rem;
    font-weight: 600;
    color: #43b0ff;
    word-break: break-word;
    letter-spacing: 0.02em;
}

.copy-btn {
    flex-shrink: 0;
    background: none;
    border: 1px solid #0a84ff;
    color: #0a84ff;
    padding: 7px 11px;
    border-radius: 6px;
    font-size: 1.2rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background-color: #0a84ff;
    color: #fff;
    transform: translateY(-1px);
}

/* Tutorial video */
.confirmation-content video {
    display: block;
    margin: 0 auto 14px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.confirmation-content video:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.confirmation-content video:focus {
    outline: none;
    box-shadow: 0 0 0 3px #0982f8;
}

.tutorial-card {
    margin-top: 32px;
    background: #1a1a1a;
    border: 1px solid #2c2c2c;
    border-radius: 12px;
    padding: 22px;
    text-align: center;
}

.tutorial-card h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 1.15rem;
    color: #fff;
    margin: 0 0 16px;
    font-weight: 700;
}

.tutorial-card h2 i {
    color: #0a84ff;
    font-size: 1.35rem;
}

.tutorial-card .sub-text {
    margin-top: 0;
}

/* Install / step sections */
.instructions-section {
    margin-top: 32px;
    text-align: left;
}

.instructions-section h2 {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 14px;
    font-weight: 700;
}

.instructions-section h2 i {
    color: #0a84ff;
    font-size: 1.35rem;
}

/* Numbered step cards */
.edgy-install-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: edgy-step;
    color: #c6c6c6;
}

.edgy-install-list > li {
    position: relative;
    counter-increment: edgy-step;
    background: linear-gradient(160deg, #232323 0%, #191919 100%);
    border: 1px solid #2f2f2f;
    border-radius: 10px;
    padding: 13px 16px 13px 56px;
    margin-bottom: 10px;
    line-height: 1.55;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.edgy-install-list > li:last-child {
    margin-bottom: 0;
}

.edgy-install-list > li:hover {
    border-color: #0a84ff;
    transform: translateX(3px);
}

.edgy-install-list > li::before {
    content: counter(edgy-step);
    position: absolute;
    left: 13px;
    top: 12px;
    width: 28px;
    height: 28px;
    background: linear-gradient(160deg, #0a84ff 0%, #0668d0 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 3px 8px rgba(10, 132, 255, 0.35);
}

.edgy-install-list > li b {
    color: #fff;
    font-weight: 600;
}

.edgy-install-list a {
    color: #43b0ff;
    font-weight: 600;
    text-decoration: none;
}

.edgy-install-list a:hover {
    text-decoration: underline;
}

.edgy-install-list code {
    background: #2a2a2a;
    padding: 2px 7px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.85em;
    color: #7dd3fc;
}

.edgy-install-list #key-redeem-btn {
    vertical-align: middle;
}

/* Browser-specific developer-mode steps (injected by JS on tutorial page) */
.edgy-install-list #developer-mode-instructions {
    display: block;
    background-color: #161616;
    color: #bbbbbb;
    font-size: 0.8rem;
    padding: 11px 14px;
    border-left: 3px solid #0a84ff;
    border-radius: 6px;
    margin-top: 10px;
    line-height: 1.6;
}

.edgy-install-list #developer-mode-instructions p {
    margin: 0 0 8px;
}

.edgy-install-list #developer-mode-instructions ol {
    margin: 0;
    padding-left: 20px;
    list-style: decimal;
}

.edgy-install-list #developer-mode-instructions li {
    margin-bottom: 4px;
    font-size: 0.8rem;
    color: #bbb;
}

/* Payment-failed: reassurance subnote */
.confirmation-subnote {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 14px 0 0;
    font-size: 0.85rem;
    color: #9aa0a6;
}

.confirmation-subnote i {
    color: #28c76f;
    font-size: 1.1rem;
}

/* Payment-failed: possible reasons card */
.additional-info {
    margin-top: 28px;
    text-align: left;
    background: #1a1a1a;
    border: 1px solid #2c2c2c;
    border-radius: 12px;
    padding: 20px 22px;
}

.additional-info h2 {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 14px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.additional-info h2 i {
    color: #ff5b5b;
    font-size: 1.3rem;
}

#failure-reasons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

#failure-reasons li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 0.92rem;
    line-height: 1.4;
    color: #c2c2c2;
}

#failure-reasons li i {
    flex-shrink: 0;
    color: #ff7a7a;
    font-size: 1.2rem;
}

/* Payment-failed: funnel back to checkout */
.retry-cta {
    margin-top: 28px;
    padding: 28px 24px;
    text-align: center;
    border-radius: 14px;
    background:
        radial-gradient(600px 200px at 50% 0%, rgba(10, 132, 255, 0.2), transparent 60%),
        linear-gradient(160deg, #1f1f1f 0%, #161616 100%);
    border: 1px solid #2c2c2c;
}

.retry-cta h2 {
    margin: 0 0 8px;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
}

.retry-cta p {
    margin: 0 0 20px;
    font-size: 0.92rem;
    color: #b6b6b6;
}

.retry-cta .confirmation-button {
    font-size: 1.05rem;
    padding: 15px 38px;
    box-shadow: 0 8px 22px rgba(10, 132, 255, 0.35);
}

/* Confirmation Buttons */
.confirmation-buttons {
    margin-top: 36px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.confirmation-button {
    flex: 1 1 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.confirmation-button.primary {
    background: linear-gradient(30deg, #0a84ff 50%, #0063c7 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(10, 132, 255, 0.3);
}

.confirmation-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(10, 132, 255, 0.45);
    color: #fff;
}

.confirmation-button.secondary {
    background-color: #2a2a2a;
    color: #dddddd;
    border: 1px solid #3a3a3a;
}

.confirmation-button.secondary:hover {
    background-color: #333333;
    transform: translateY(-2px);
    color: #fff;
}

.footer {
    background-color: #0d0d0d;
    color: #b9bbbe;
    padding: 40px 20px;
    margin: 40px 10px 20px;
    text-align: center;
    font-size: 14px;
    border-radius: 10px;
    box-shadow: #202020 10px 10px 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}


.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

.footer-branding {
    flex: 1;
    min-width: 250px;
    text-align: left;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    width: 120px;
    margin-bottom: 10px;
    /* margin: auto; */
}

.footer-tagline {
    font-size: 0.8rem;
    color: #b9bbbe;
    margin-top: 5px;
}

.footer-links,
.footer-legal,
.footer-social {
    flex: 1;
    min-width: 150px;
    text-align: left;
}

.footer-links h3,
.footer-legal h3,
.footer-social h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 5px;
}

.footer-links a,
.footer-legal a {
    color: #0982f8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #fff;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.footer-social a {
    font-size: 1.5rem;
    color: #0982f8;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #202225;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #72767d;
}

.footer-bottom p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-links,
    .footer-legal,
    .footer-social {
        text-align: center;
    }
}

.tutorial-selection {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
}

.tutorial-selection button {
    background: linear-gradient(30deg, #0982f8 50%, #0063c7 100%);
    border: 1px solid #0982f8;
    color: #eee;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-family: 'Poppins', sans-serif !important;
}

.tutorial-selection button:hover {
    background: linear-gradient(90deg, #0982f8 50%, #0063c7 100%);
    color: #fff;
    border-color: #fff;
}

.tutorial-selection button.active {
    background: linear-gradient(90deg, #0063c7 50%, #004a9f 100%);
    color: #fff;
    border-color: #004a9f;
}

.tutorial-selection button:not(.active) {
    opacity: 0.7;
    background: linear-gradient(30deg, #505050 50%, #404040 100%);
    color: #ccc;
    border-color: #404040;
}

/* Tutorial page: device toggle + video sit inside the .tutorial-card */
.tutorial-card .tutorial-selection {
    margin: 4px 0 16px;
    gap: 12px;
}

.tutorial-selection button i {
    font-size: 1.15em;
    vertical-align: middle;
    margin-right: 5px;
}

.tutorial-card video {
    max-height: 75vh;
}

button img {
    vertical-align: middle;
    margin-right: 4px;
    margin-bottom: 2px;
    width: 1em;
    height: 1em;
    color: inherit;
    filter: invert(1);
    display: inline-block;
    line-height: 1;
}

.install-instructions {
    font-size: 1.3em;
    max-width: 700px;
    color: #ccc;
    transition: all 0.3s ease;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
}

.install-instructions h1 {
    font-size: 1.6em;
    margin-top: 50px;
    color: #fff;
    text-align: center;
}

.install-instructions li:hover {
    color: #fff;
}

.install-instructions li a {
    color: #0982f8;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.1s ease;
}

.install-instructions li a:hover {
    color: #3c9fff;
}

.install-instructions li {
    list-style-type: none;
    /* Removes the numbering */
    margin: 10px;
    text-align: left;
    background-color: #101010;
    padding: 10px;
    font-size: 0.8em;
    transition: all 0.1s ease;
}

.install-instructions li li {
    list-style-type: decimal !important;
    margin: 10px;
    text-align: left;
    background-color: #101010;
    padding: 2px;
    font-size: 0.8em;
}

.install-instructions li ol {
    padding-left: 20px;
}

.install-instructions li b:first-of-type:not(p b) {
    display: block;
    margin-bottom: 5px;
    font-size: 1em !important;
    color: #fff;
}

.install-instructions code {
    background-color: #202020;
    padding: 2px 4px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.9em;
}

.icon-link {
    margin: 0 10px;
    color: #ccc;
    font-size: 24px;
    transition: color 0.3s ease;
}

.icon-link:hover {
    color: #0982f8;
}

.buttons {
    height: 50px;
}

.buttons button {
    display: inline-block;
    cursor: pointer;
    padding: 11px 20px;
    font-size: 1em;
    font-weight: 600;
    color: #eee;
    background: linear-gradient(160deg, #262626 0%, #1c1c1c 100%);
    border: 1px solid #3a3b3c;
    border-radius: 9px;
    text-decoration: none;
    transition: all 0.2s ease, color 1s ease;
    font-family: 'Poppins', sans-serif !important;
    margin: 2px;
}

.buy-button {
    background: linear-gradient(30deg, #0982f8 50%, #0063c7 100%) !important;
    border: 1px solid #0982f8 !important;
    font-size: 1.15em !important;
}

.buy-button {
    position: relative;
    overflow: hidden;
    border: 1px solid #0982f8;
    /* Initial border color */
}

.onload {
    animation: shakeGlow 3s ease-in-out 1 forwards;
    /* Play once, then stay in the final state */
}

.buy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(20deg, rgba(44, 255, 44, 0.6), rgb(44, 255, 79) 100%);
    transform: skewX(-30deg);
    transition: all 0.3s ease;
    animation: glistenEffect 3s ease-in-out 1 forwards;
    /* Play once, then stay in the final state */
}

@keyframes glistenEffect {
    0% {
        left: -150%;
    }

    50% {
        left: 110%;
    }

    100% {
        left: 150%;
    }
}

@keyframes shakeGlow {

    0%,
    100% {
        transform: rotate(0deg);
        /* Start at normal position */
        border-color: #0982f8;
        color: hsl(0, 0%, 93%);
        font-size: 1.15em;
        box-shadow: none;
    }

    10% {
        transform: rotate(0deg);
        /* Start at normal position */
        border-color: #0982f8;
        color: #eee;
        font-size: 1.15em;
        box-shadow: none;
    }

    25% {
        transform: rotate(-5deg);
        /* Rotate left */
        border-color: #00ff00;
        /* Glowing green border */
        color: #00ff00;
        font-size: 1.5em;
        box-shadow: 0 0 5px rgba(0, 255, 0, 0.4);
        /* Subtle green glow effect */
    }

    35% {
        transform: rotate(5deg);
        /* Rotate right */
        border-color: #00ff00;
        /* Continue green border */
        color: #00ff00;
        font-size: 1.5em;
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
        /* Slightly stronger green glow */
    }

    50% {
        transform: rotate(-5deg);
        /* Rotate left */
        border-color: #00ff00;
        /* Glowing green border */
        color: #00ff00;
        font-size: 1.5em;
        box-shadow: 0 0 5px rgba(0, 255, 0, 0.4);
        /* Subtle green glow effect */
    }

    75% {
        transform: rotate(3deg);
        /* Rotate left */
    }
}

@keyframes pause {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }
}

.buttons button:hover {
    color: #fff;
    background: transparent;
    background-color: #0982f8;
    border: 1px solid #0982f8 !important;
    border-radius: 9px;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(9, 130, 248, 0.28);
}

.buy-button:hover {
    background: linear-gradient(90deg, #0982f8 10%, #0063c7 100%) !important;
}

#status-iframe {
    margin-left: 10px;
}

.disclaimer-container {
    text-align: center;
    margin: 50px auto;
    padding: 20px;
    overflow-y: hidden !important;
    transition: all 1s ease;
}

.tos-container {
    margin: 50px auto;
    padding: 40px;
    background: linear-gradient(160deg, #202020 0%, #181818 100%);
    border: 1px solid #2c2c2c;
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
    max-width: 820px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.tos-container:hover {
    transform: translateY(-2px);
    border-color: #0a84ff;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.6);
}

.tos-container .title {
    text-align: center;
    letter-spacing: -0.01em;
}

.tos-container .message {
    font-size: 1.05em;
    max-width: 700px;
    color: #b9b9b9;
    line-height: 1.65;
    margin: 0 auto 24px;
    text-align: center;
}

.tos-text {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 26px 30px;
    margin: 0;
    overflow-y: auto;
    max-height: 600px;
    font-size: 15px;
    line-height: 1.75;
    color: #cfcfcf;
    scrollbar-width: thin;
    scrollbar-color: #0a84ff transparent;
}

.tos-text::-webkit-scrollbar {
    width: 8px;
    background: transparent;
}

.tos-text::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.tos-text::-webkit-scrollbar-thumb:hover {
    background: #0a84ff;
}

.tos-text h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.45em;
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #2a2a2a;
    letter-spacing: -0.01em;
}

.tos-text h2:first-child {
    margin-top: 0;
}

.tos-text h3 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.18em;
    margin: 22px 0 10px;
}

.tos-text p {
    color: #b9b9b9;
    line-height: 1.75;
    margin-bottom: 12px;
}

.tos-text ul {
    padding-left: 22px;
    margin: 12px 0;
}

.tos-text li {
    color: #cccccc;
    margin-bottom: 7px;
}

.tos-text a {
    color: #43b0ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.tos-text a:hover {
    color: #6cc4ff;
    text-decoration: underline;
}


/* Main Container Styling */
.purchase-container {
    max-width: 600px;
    width: 600px;
    margin: 50px auto;
    padding: 25px;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif !important;
    color: #f0f0f0;
    transition: all 0.4s ease;
}

/* Title Styling */
.purchase-container .title {
    font-size: 30px;
    font-weight: 800;
    color: #0982f8;
    text-align: center;
    margin-bottom: 20px;
}

/* Message Styling */
.purchase-container .message {
    font-size: 16px;
    text-align: center;
    margin-bottom: 25px;
    color: #cccccc;
}

/* Purchase Box Styling */
.purchase-box {
    background-color: #252525;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.purchase-box-header {
    margin: 15px 0;
}

.button-group {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    /* Allows wrapping when needed */
    gap: 5px;
    justify-content: center;
}

/* Ensure toggle buttons (Student/Service) are evenly sized */
.button-group .toggle-button {
    flex: 1 1 calc(50% - 5px);
    /* Each button takes half width with gap adjustment */
    min-width: 120px;
    /* Prevents buttons from getting too small */
    padding: 12px;
    border-radius: 5px;
    background: linear-gradient(30deg, #202020 50%, #252525 100%);
    border: 1px solid #3a3b3c;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.1s ease;
    font-family: 'Poppins', sans-serif !important;
    text-align: center;
}

/* Ensure toggle buttons stack only if needed */
@media (max-width: 400px) {
    .button-group .toggle-button {
        flex: 1 1 100%;
        /* Stack buttons in a single column on smaller screens */
    }
}

/* Make stripe-duration buttons evenly sized */
.button-group .stripe-duration-button {
    font-family: 'Poppins', sans-serif !important;
    width: 100%;
    /* Make buttons take the full width of their parent */
    padding: 10px;
    border-radius: 5px;
    background: linear-gradient(30deg, #202020 50%, #252525 100%);
    border: 1px solid #3a3b3c;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.1s ease;
}

.button-group .duration-wrapper {
    flex: 1 1 calc(20% - 5px);
    min-width: 60px;
}

/* Ensure stripe-duration buttons wrap only when needed */
@media (max-width: 500px) {
    .button-group .duration-wrapper {
        flex: 1 1 calc(50% - 5px);
        /* Two buttons per row */
    }
}

@media (max-width: 300px) {
    .button-group .duration-wrapper {
        flex: 1 1 100%;
        /* Stack buttons in one column */
    }
}

/* Hover and Active States */
.button-group .toggle-button:hover,
.button-group .stripe-duration-button:hover {
    background: linear-gradient(30deg, #202020 50%, #303030 100%);
    border: 1px solid #3a3b3c;
    color: #eee;
}

.button-group .toggle-button.active,
.button-group .stripe-duration-button.active {
    color: #eee;
    background: linear-gradient(30deg, #0982f8 50%, #0063c7 100%);
    border: 1px solid #0982f8;
}

.button-group .toggle-button.active:hover,
.button-group .stripe-duration-button.active:hover {
    background: linear-gradient(90deg, #0982f8 50%, #0063c7 100%);
    border: 1px solid #fff;
}

.button-group .toggle-button.disabled,
.button-group .stripe-duration-button.disabled {
    opacity: 50%;
    cursor: not-allowed;
}

/* make buttons able to hold an absolutely-positioned badge */
.button-group .stripe-duration-button {
    position: relative;
    overflow: visible;
    /* so badge can sit outside the button */
}

.duration-wrapper {
    position: relative;
    display: inline-block;
}

/* Badge container */
.duration-sale-badge {
    position: absolute;
    top: -20px;
    right: -10px;

    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding: 3px 8px;
    border-radius: 999px;

    background: linear-gradient(30deg, #ff4a4a 50%, #ff2a2a 100%);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.55);

    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;

    z-index: 10;
    white-space: nowrap;

    transition: all 0.3s ease;
}

/* Buy Button */
.paypal-button {
    display: block;
    text-align: center;
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    border-radius: 8px;
    background: #0982f8;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.paypal-button:hover {
    background: #0070c0;
    color: #ccc;
}

/* PayPal Button */
.purchase-button {
    display: block;
    text-align: center;
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    border-radius: 8px;
    background: #ffffff;
    color: #0982f8;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.purchase-button:hover {
    background: #ccc;
    color: #004589;
}

/* Price Text Styling */
.price-text {
    font-size: 26px;
    font-weight: 600;
    color: #0982f8;
    text-align: center;
    margin-bottom: 10px;
}

.small-disclaimer-text b {
    color: rgb(255, 230, 0);
}

/* Small Disclaimer Text */
.small-disclaimer-text {
    font-size: 12px;
    text-align: center;
    color: #999;
}

.description-text {
    font-size: 12px;
    text-align: center;
    color: #ccc;
    padding: 7px;
    background: linear-gradient(30deg, #202020 50%, #252525 100%);
    border: 1px solid #3a3b3c;
    border-radius: 5px;
}

/* Form Table Styling */
.purchase-box table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

.purchase-box td {
    padding: 5px 0;
    font-size: 14px;
    color: #cccccc;
}

.purchase-box hr {
    opacity: 10%;
}

/* Fix select and input width - precise control */
.purchase-box select,
.purchase-box input {
    width: 100%;
    /* Ensure they span the entire width of the parent container */
    max-width: 100%;
    /* Prevent any overflow */
    box-sizing: border-box;
    /* Ensure padding and borders are included in the width */
    padding: 12px;
    border: 1px solid #444;
    background-color: #1f1f1f;
    color: #ccc;
    font-size: 14px;
    font-family: 'Poppins', sans-serif !important;
    transition: border-color 0.3s ease;
    outline: none;
}

.purchase-box select:focus,
.purchase-box input:focus {
    border-bottom: 2px solid #0982f8;
    color: #fff;
}

/* Purchase Button Styling */
#paypal-buy-btn-student,
#paypal-buy-btn-service {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    color: #eee;
    background: linear-gradient(30deg, #0982f8 50%, #0063c7 100%);
    border: 1px solid #0982f8;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif !important;
}

#paypal-buy-btn-student:disabled,
#paypal-buy-btn-service:disabled {
    background: linear-gradient(30deg, #202020 50%, #101010 100%);
    border: 1px solid #3a3b3c;
    color: #909090;
    cursor: not-allowed;
}

#paypal-buy-btn-student:hover:not(:disabled),
#paypal-buy-btn-service:hover:not(:disabled) {
    background: linear-gradient(90deg, #0982f8 50%, #0063c7 100%);
    border: 1px solid #fff;
}

/* Disclaimer Styling */
.purchase-disclaimer {
    font-size: 12px;
    color: #999;
    text-align: left !important;
    background-color: #101010;
    padding: 10px;
    border: 1px solid #3a3b3c;
    margin-top: 5px !important;
}

.purchase-disclaimer a {
    color: #0982f8;
    text-decoration: none;
}

.purchase-disclaimer a:hover {
    text-decoration: underline;
}

.email-disclaimer-text {
    color: #f06b6b;
    font-style: italic;
    font-size: 0.9em !important;
    margin: 5px 0;
}

/* Sub-text Styling */
.sub-text {
    font-size: 13px;
    color: #cccccc;
    text-align: center;
    margin-top: 20px;
}

.sub-text i {
    margin-right: 5px;
}

.purchase-box select:hover,
#payer-name-input:hover,
#payer-email-input:hover,
#payer-email-confirmation-input:hover {
    background-color: #222222;
}

#paypal-buy-btn:hover:not(:disabled) {
    box-shadow: 0 3px 10px rgba(0, 104, 199, 0.5);
}

.home-row .stats {
    text-align: center;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    margin-top: 40px;
}

.stat-container {
    background: linear-gradient(160deg, #232323 0%, #18191a 100%);
    padding: 26px 14px;
    border-radius: 14px;
    border: 1px solid #2f2f2f;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    min-width: 175px;
}

.stat-container:hover {
    transform: translateY(-4px);
    border-color: #0982f8;
    box-shadow: 0 14px 32px rgba(9, 130, 248, 0.22);
}

.stat-container i {
    font-size: 2.2em;
    color: #0982f8;
    margin-bottom: 12px;
    filter: drop-shadow(0 3px 10px rgba(9, 130, 248, 0.35));
}

.stat-number {
    font-size: 2.6em;
    font-weight: 800;
    margin-bottom: 4px;
    color: #fff;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.stat-container:hover .stat-number {
    color: #fff;
}

.stat-title {
    font-size: 1em;
    color: #b5b6b7;
    /* Slightly lighter color for the title */
    text-align: center;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

/* Hero trust strip (replaces the old giant stat cards with compact pills). A 2x2
   grid (not a wrapping row) so the 4 pills - which have very different text
   lengths - always form an even, balanced block instead of an odd 3-then-1 wrap. */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 32px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #2f2f2f;
    border-radius: 999px;
    padding: 16px 24px;
    color: #ccc;
    font-size: 0.86em;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.trust-pill:hover {
    transform: translateY(-2px);
    border-color: #0982f8;
    background: rgba(9, 130, 248, 0.08);
}

.trust-pill-icon {
    font-size: 1.15em;
    color: #0982f8;
    flex-shrink: 0;
}

.trust-pill-text {
    color: #ccc;
    white-space: nowrap;
}

.trust-pill-text b {
    color: #fff;
    font-weight: 700;
}

.trust-pill-external {
    display: inline-block;
    font-size: 0.85em;
    color: #0982f8;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.trust-pill-rating:hover .trust-pill-external {
    opacity: 1;
    transform: translateX(0);
}

.trust-pill-stars {
    display: inline-flex;
    gap: 1px;
    color: #ffb400;
    font-size: 0.9em;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .trust-strip {
        grid-template-columns: 1fr;
    }

    .trust-pill {
        padding: 9px 16px;
    }

    .trust-pill-text {
        white-space: normal;
    }
}

/* ===== Features Page ===== */
.features-layout {
    position: relative;
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 24px;
    max-width: 1240px;
    margin: 40px auto;
    padding: 0 20px;
    align-items: start;
}

.features-sidebar {
    position: sticky;
    top: 20px;
    background: linear-gradient(160deg, #232323 0%, #181819 100%);
    border: 1px solid #2f2f2f;
    border-radius: 14px;
    padding: 16px;
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.features-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #2a2a2a;
}

.features-sidebar-header h2 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-sidebar-header h2 i {
    color: #0982f8;
    font-size: 1.15em;
}

.features-count-pill {
    flex: 0 0 auto;
    background: rgba(9, 130, 248, 0.14);
    color: #4aa8ff;
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid rgba(9, 130, 248, 0.3);
    white-space: nowrap;
}

.features-search-wrapper {
    position: relative;
}

.features-search-wrapper i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #7c8288;
    font-size: 1.1em;
    pointer-events: none;
}

#feature-search,
#feature-category-filter {
    width: 100%;
    box-sizing: border-box;
    background: #171717;
    border: 1px solid #2c2c2c;
    border-radius: 9px;
    color: #eee;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

#feature-search {
    padding: 10px 12px 10px 36px;
}

#feature-search::placeholder {
    color: #6f7479;
}

#feature-search:focus,
#feature-category-filter:focus {
    outline: none;
    border-color: #0982f8;
    box-shadow: 0 0 0 3px rgba(9, 130, 248, 0.18);
}

#feature-category-filter {
    padding: 10px 34px 10px 12px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237c8288' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

#feature-category-filter:hover {
    border-color: #3a3a3a;
}

.features-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow-y: auto;
    padding-right: 4px;
    margin: 0;
    max-width: none;
    flex: 1;
    min-height: 0;
}

.features-nav::-webkit-scrollbar {
    width: 6px;
}

.features-nav::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

.features-nav::-webkit-scrollbar-thumb:hover {
    background: #3f3f3f;
}

.features-nav-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.features-nav-group h4 {
    margin: 0 0 6px 0;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #7c8288;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 4px;
}

.features-nav-group h4 i {
    color: #0982f8;
    font-size: 1.25em;
}

.features-nav button {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: 1px solid transparent;
    border-left: 3px solid transparent;
    color: #b6b9bd;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.86rem;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.features-nav button:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.features-nav button.active {
    background: rgba(9, 130, 248, 0.14);
    border-color: rgba(9, 130, 248, 0.35);
    border-left-color: #0982f8;
    color: #fff;
    font-weight: 600;
}

.features-container {
    background: linear-gradient(160deg, #1e1e1e 0%, #161616 100%);
    border: 1px solid #2f2f2f;
    border-radius: 14px;
    padding: 26px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    scroll-behavior: smooth;
    position: sticky;
    top: 20px;
}

.features-container::-webkit-scrollbar {
    width: 9px;
}

.features-container::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.features-container::-webkit-scrollbar-thumb:hover {
    background: #404040;
    background-clip: padding-box;
}

.features-container .feature {
    background: #202020;
    padding: 22px 24px;
    border-radius: 12px;
    border: 1px solid #2f2f2f;
    margin: 0 0 16px 0;
    transition: background-color 0.2s, box-shadow 0.2s, border-color 0.2s;
    scroll-margin-top: 16px;
    position: relative;
}

.features-container .feature:first-of-type {
    margin-top: 0;
}

.features-container .feature:last-child {
    margin-bottom: 0;
}

.features-container .feature:hover {
    background: #242424;
    border-color: #3a3a3a;
}

.features-container .feature.highlight-feature {
    border-color: #0982f8;
    box-shadow: 0 0 0 1px #0982f8, 0 8px 26px rgba(9, 130, 248, 0.22);
    background: #242424;
    animation: featurePulse 1.4s ease;
}

@keyframes featurePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(9, 130, 248, 0.55);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(9, 130, 248, 0);
    }

    100% {
        box-shadow: 0 0 0 1px #0982f8, 0 8px 26px rgba(9, 130, 248, 0.22);
    }
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-title i {
    color: #0982f8;
    background: rgba(9, 130, 248, 0.12);
    padding: 9px;
    border-radius: 10px;
    font-size: 1.05em;
    margin-right: 0;
    flex: 0 0 auto;
}

.feature-description {
    font-size: 0.96rem;
    color: #c4c4c4;
    margin-bottom: 14px;
    line-height: 1.6;
}

.feature-card {
    margin-top: 12px;
    background: rgba(0, 0, 0, 0.22);
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #2a2a2a;
}

.feature-card-title {
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #fff;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-card-title::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #0982f8;
    border-radius: 50%;
    flex: 0 0 auto;
}

.mode-highlight {
    background-color: #141414;
    padding: 10px 14px;
    border-left: 3px solid #0982f8;
    border-radius: 0 8px 8px 0;
    margin: 0;
    color: #c4c4c4;
    font-size: 0.9rem;
    line-height: 1.55;
}

.mode-highlight a {
    color: #4aa8ff;
    text-decoration: none;
}

.mode-highlight a:hover {
    text-decoration: underline;
}

.feature hr {
    border: none;
    border-top: 1px dashed #363636;
    margin: 16px 0;
}

.feature-no-results {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 70px 20px;
    color: #8a8f94;
    text-align: center;
}

.feature-no-results i {
    font-size: 3em;
    color: #444;
    margin-bottom: 12px;
}

.feature-no-results p {
    margin: 0;
    font-size: 1.05rem;
}

.feature-back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a84ff, #0668d0);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    box-shadow: 0 8px 22px rgba(9, 130, 248, 0.4);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, filter 0.15s ease;
    z-index: 100;
}

.feature-back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.feature-back-to-top:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 900px) {
    .features-layout {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 14px;
        margin: 20px auto;
    }

    .features-sidebar {
        position: static;
        top: auto;
        max-height: none;
    }

    .features-container {
        position: static;
        top: auto;
        max-height: none;
        padding: 18px;
    }

    .features-nav {
        max-height: 44vh;
    }
}

.promo-header {
    background-color: #0982f8;
    padding: 5px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-header p {
    color: #fff;
    margin: 0;
}

.promo-link {
    text-decoration: none;
    position: sticky;
    top: 0;
    z-index: 2147483646;
}

.site-header {
    background: linear-gradient(180deg, #1b1c1d 0%, #151617 100%);
    padding: 10px 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    top: 0;
    z-index: 2147483645;
    border-bottom: 1px solid #2b2c2e;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    user-select: none;
    height: 50px;
    margin-right: 10px;
    margin-bottom: 0px !important;
}

.logo-container h1 {
    color: #fff;
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.navigation {
    display: flex;
}

.navigation .nav-link {
    text-decoration: none;
    color: #cfd2d6;
    border-radius: 8px;
    margin: 0 2px;
    padding: 7px 13px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
    display: inline-block;
    position: relative;
}

.navigation .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0982f8;
    transform: scaleX(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.navigation .nav-link:hover {
    color: #fff;
    background: rgba(9, 130, 248, 0.12);
}

.navigation .nav-link:hover::after {
    transform: scaleX(1);
}

.navigation.active {
    display: block;
}

.price-text {
    /* background-color: #202020; */
    border-radius: 5px;
    margin: 10px auto;
    font-size: 26px;
    /* width: 20%; */
}

#paypal-buy-btn {
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Service Key Help (expandable info card) */
.service-key-help-box {
    display: block;
    max-width: 660px;
    margin: 14px auto 0;
    background: linear-gradient(160deg, #202020 0%, #1a1a1a 100%);
    border: 1px solid transparent;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-height: 0;
    padding: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease, border-color 0.3s ease;
}

#service-key-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 20px 8px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
}

#service-key-title i {
    color: #0982f8;
    font-size: 1.2rem;
}

#service-key-description {
    margin: 0 20px 16px;
    background: none;
    font-size: 0.86rem;
    line-height: 1.6;
    color: #b6b6b6;
    transition: color 0.3s ease;
}

#service-key-description b {
    color: #fff;
}

#service-key-description:hover {
    color: #cfcfcf;
}

/* NAVIGATION DROP */

.nav-dropbtn {
    background: transparent;
    margin-top: 4px;
    color: #d8d8d8;
    padding: 8px 10px;
    font-size: 26px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-dropbtn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: linear-gradient(160deg, #232323 0%, #191919 100%);
    border: 1px solid #2f2f2f;
    z-index: 99999;
    border-radius: 12px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
    padding: 8px;
    text-align: left;
}

.nav-dropdown-content a {
    color: #e6e6e6;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.18s ease, color 0.18s ease;
}

.nav-dropdown-content a:hover {
    background-color: rgba(9, 130, 248, 0.14);
    color: #fff;
}

.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown:focus-within .nav-dropdown-content {
    display: block;
}

.nav-dropdown {
    position: relative;
    display: none;
    margin-right: 8px;
}

.nav-dropdown:hover .nav-dropbtn,
.nav-dropdown:focus-within .nav-dropbtn {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

#discord-messages {
    max-width: 680px;
    margin: 24px auto;
    max-height: 80vh;
    overflow-y: auto;
    text-align: left;
    padding: 4px 14px;
}

#discord-shops {
    max-width: 600px;
    margin: 20px auto;
    overflow-y: auto;
    text-align: left;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
}

.discord-message {
    display: flex;
    align-items: start;
    margin-bottom: 10px;
    background-color: #303030;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    word-break: break-word;
}

.discord-message:hover {
    margin-bottom: 15px;
    margin-top: 5px;
    background-color: #36393E;
    border-radius: 10px;
}

.discord-message {
    display: flex;
    align-items: start;
    margin-bottom: 14px;
    background: linear-gradient(160deg, #232323 0%, #191919 100%);
    border: 1px solid #2f2f2f;
    padding: 26px 30px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    word-break: break-word;
}

.discord-message:hover {
    border-color: #3a3a3a;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.38);
}

#discord-messages {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.discord-shop {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(160deg, #232323 0%, #191919 100%);
    border: 1px solid #2f2f2f;
    border-radius: 12px;
    padding: 18px 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    margin: 8px 0;
}

.discord-shop:hover {
    transform: translateY(-3px);
    border-color: #0a84ff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4);
}

.discord-shop .discord-text {
    flex: 1;
    min-width: 0;
    gap: 4px;
    margin: 0;
}

.discord-shop-arrow {
    flex-shrink: 0;
    margin-left: 4px;
    font-size: 1.7rem;
    color: #555;
    transition: color 0.2s ease, transform 0.2s ease;
}

.discord-shop:hover .discord-shop-arrow {
    color: #0a84ff;
    transform: translateX(4px);
}

/* Services page status / empty / error headings */
.services-status {
    text-align: center;
    color: #ccc;
    margin: 60px auto;
    max-width: 600px;
    font-weight: 600;
    line-height: 1.5;
}

.services-status b {
    color: #0a84ff;
}

/* Back-to-all-services link (individual shop view) */
.services-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 8px 15px;
    border-radius: 8px;
    background: #1a1a1a;
    border: 1px solid #2c2c2c;
    color: #43b0ff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.services-back:hover {
    border-color: #0a84ff;
    background: #1f1f1f;
    transform: translateX(-3px);
}

/* Services hero */
.services-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(10, 132, 255, 0.12);
    border: 1px solid rgba(10, 132, 255, 0.35);
    color: #43b0ff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.services-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 22px auto 6px;
}

.services-stats:empty {
    display: none;
}

.services-stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 10px;
    background: linear-gradient(160deg, #232323 0%, #191919 100%);
    border: 1px solid #2f2f2f;
    color: #ddd;
    font-size: 0.9rem;
    font-weight: 600;
}

.services-stat i {
    color: #43b0ff;
    font-size: 1.05rem;
}

.services-stat-online i {
    color: #2ecc71;
    font-size: 0.7rem;
    animation: online-pulse 1.6s ease-in-out infinite;
}

@keyframes online-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Individual service: seller header */
.services-seller {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: linear-gradient(160deg, #232323 0%, #191919 100%);
    border: 1px solid #2f2f2f;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.services-seller .discord-avatar {
    width: 56px;
    height: 56px;
}

.services-seller-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.services-seller-name {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    word-break: break-word;
}

.services-seller-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #9a9a9a;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.services-seller-meta i {
    margin-right: 3px;
}

.services-seller-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.services-seller-status.online {
    color: #2ecc71;
}

.services-seller-status.offline {
    color: #888;
}

.services-seller-status i {
    font-size: 0.6rem;
    margin-right: 0;
}

/* Individual service: contact CTA */
.services-cta {
    margin-top: 18px;
    padding: 24px;
    border-radius: 14px;
    text-align: center;
    background: linear-gradient(160deg, #1e1e1e 0%, #161616 100%);
    border: 1px solid #2f2f2f;
}

.services-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0a84ff, #0a6cff);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(10, 132, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(10, 132, 255, 0.5);
}

.services-cta-btn i {
    font-size: 1.2rem;
}

.services-cta-note {
    margin: 14px auto 0;
    max-width: 460px;
    color: #8a8a8a;
    font-size: 0.82rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    justify-content: center;
    text-align: left;
}

.services-cta-note i {
    color: #f0a020;
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 1rem;
}

.services-cta-note b {
    color: #ccc;
}

.services-cta-alt {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: #43b0ff;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
}

.services-cta-alt:hover {
    text-decoration: underline;
}

.discord-avatar {
    border-radius: 50%;
    margin-right: 0;
    width: 76px;
    height: 76px;
    flex-shrink: 0;
    object-fit: cover;
    box-shadow: 0 0 0px 2px rgba(30, 30, 30, 0.7);
}

.discord-avatar-online {
    animation: flash-outline 2s infinite ease-in-out;
}

@keyframes flash-outline {
    0% {
        box-shadow: 0 0 0px 1.5px rgba(0, 255, 0, 0.7);
    }

    50% {
        box-shadow: 0 0 0px 2px rgba(0, 255, 0, 1);
    }

    100% {
        box-shadow: 0 0 0px 1.5px rgba(0, 255, 0, 0.7);
    }
}

.discord-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.discord-text code {
    text-wrap: auto;
}

.discord-message .discord-text {
    margin: 0;
    width: 100%;
}

.discord-date {
    font-size: 1.6em;
    color: #fff;
    font-weight: bold;
}

.discord-content {
    color: #b9bbbe;
    margin-top: 8px;
    line-height: 1.65;
}

.discord-content h1[id] {
    color: #fff;
    font-size: 1.4em;
    font-weight: bold;
}

.discord-content p {
    margin: 5px 0;
}

.discord-content img {
    height: 16px;
    width: auto;
    margin: -2px 2px;
}

.discord-content a {
    color: #0982f8;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.discord-content a:hover {
    text-decoration: underline;
}

.discord-shop p {
    color: #b9bbbe;
    font-size: 1em;
}

.discord-shop h1 {
    margin: 0;
    display: inline-block;
}

.loader {
    box-sizing: border-box;
    width: 46px;
    height: 46px;
    border: 4px solid rgba(10, 132, 255, 0.18);
    border-top-color: #0a84ff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: auto;
    flex-shrink: 0;
    will-change: transform;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Let the spinner fill & center the empty space of a list while it loads */
#discord-messages:has(> .loader:only-child),
#discord-shops:has(> .loader:only-child) {
    min-height: 50vh;
    justify-content: center;
}

.slider-content #discord-messages:has(> .loader:only-child) {
    min-height: 0;
}

/* OVERLAY */

.edgypro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    z-index: 999999999999999999999999999;
    transition: opacity 0.3s ease;
    animation: edgyOverlayFade 0.25s ease backwards;
    /* Basically on top of everything ^^^ */
}

@keyframes edgyOverlayFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes edgyOverlayPop {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.edgypro-overlay-box {
    position: relative;
    max-width: 440px;
    width: 100%;
    background: linear-gradient(160deg, #202020 0%, #181818 100%);
    border: 1px solid #2c2c2c;
    padding: 28px 26px;
    box-sizing: border-box;
    border-radius: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    transition: opacity 0.3s ease;
    animation: edgyOverlayPop 0.32s cubic-bezier(0.18, 0.89, 0.32, 1.28) backwards;
}

/* Image / video preview popups get a wider box */
.edgypro-overlay-box:has(img),
.edgypro-overlay-box:has(video) {
    max-width: min(92vw, 1040px);
    width: auto;
    padding: 18px;
}

.edgypro-overlay-box img,
.edgypro-overlay-box video {
    max-width: min(84vw, 1000px) !important;
    max-height: 74vh !important;
    width: auto;
    height: auto;
    border-radius: 10px;
    margin: 4px 0 2px;
    object-fit: contain;
}

.edgypro-overlay-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
    padding: 0 28px;
    color: #fff;
}

.edgypro-overlay-box-contents {
    color: #b6b6b6;
    margin: 2px 0 18px;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.55;
}

.edgypro-overlay-box-contents:has(p:empty) {
    display: none;
}

.edgypro-overlay-box-contents p {
    margin: 0;
}

.edgypro-overlay-box-contents a {
    color: #43b0ff;
    font-weight: 700;
    text-decoration: none;
}

.edgypro-overlay-box-contents a:hover {
    text-decoration: underline;
}

.edgypro-overlay-button-span {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.edgypro-overlay-start-button {
    flex: 1;
    margin: 0;
    background: linear-gradient(30deg, #0a84ff 50%, #0063c7 100%);
    color: #fff;
    padding: 11px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    border-radius: 9px;
    font-family: 'Poppins', sans-serif !important;
    box-shadow: 0 8px 20px rgba(10, 132, 255, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.edgypro-overlay-start-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 10px 26px rgba(10, 132, 255, 0.45);
}

.edgypro-overlay-start-button:disabled {
    display: none;
}

.edgypro-overlay-close-button {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    flex: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: transparent;
    font-size: 0;
    line-height: 0;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    transition: background 0.18s ease;
    z-index: 3;
}

.edgypro-overlay-close-button::before {
    content: "\00d7";
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
    color: #b0b0b0;
    font-family: 'Poppins', sans-serif;
    transition: color 0.18s ease;
}

.edgypro-overlay-close-button:hover {
    background: rgba(240, 61, 61, 0.14);
}

.edgypro-overlay-close-button:hover::before {
    color: #ff5252;
}

.video-container {
    margin: auto;
    max-width: 780px;
}

.video-container video {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.video-container video:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.video-container video:focus {
    outline: none;
    box-shadow: 0 0 0 3px #0982f8;
}

#tutorialVideo {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

textarea {
    width: 100%;
    max-width: 600px;
    height: 250px;
    background-color: #101010;
    border: 1px solid transparent;
    ;
    border-radius: 3px;
    color: #ccc;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Poppins', sans-serif !important;
    resize: none;
}

textarea:focus {
    background-color: #101010;
    border: 1px solid #0982f8;
    border-radius: 0;
    color: #fff;
}

/* ===== Cyber Monday Countdown ===== */

.ep-countdown-bar {
    width: 100%;
    background: linear-gradient(90deg, #0b3b6b 0%, #0a1a2b 55%, #141516 100%);
    padding: 12px 24px;
    box-sizing: border-box;
    display: flex;
    position: sticky;
    justify-content: center;
    font-family: 'Poppins', sans-serif !important;
    top: 0;
    z-index: 2147483646;
    border-bottom: 1px solid rgba(9, 130, 248, 0.35);
    box-shadow: 0 4px 22px rgba(9, 130, 248, 0.14);
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.ep-countdown-content {
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: #ccc;
}

.ep-countdown-text {
    flex: 0.5 1 auto;
}

.ep-countdown-text h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.ep-countdown-text p {
    margin: 4px 0 0;
    font-size: 13px;
    color: rgba(200, 200, 200, 0.8);
}

.ep-countdown-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 11px;
    margin-bottom: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0a84ff, #0668d0);
    box-shadow: 0 2px 12px rgba(9, 130, 248, 0.45);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: #fff;
}

/* Timer */

.ep-countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.28);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(9, 130, 248, 0.28);
}

.ep-time-box {
    min-width: 58px;
    text-align: center;
}

.ep-time-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #0982f8;
    text-shadow: 0 0 10px rgba(9, 130, 248, 0.8);
}

#ep-seconds {
    color: red;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

.ep-time-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(180, 180, 180, 0.8);
}

.ep-time-separator {
    font-size: 20px;
    font-weight: 700;
    color: rgba(120, 160, 255, 0.85);
    margin: 0 2px;
}

/* CTA button */

.ep-countdown-cta {
    margin-left: auto;
    padding: 11px 22px;
    border-radius: 9px;
    background: linear-gradient(135deg, #0a84ff, #0668d0);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 18px rgba(9, 130, 248, 0.4);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.ep-countdown-cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
    box-shadow: 0 10px 26px rgba(9, 130, 248, 0.55);
}

/* Mobile Styling for Countdown */
@media (max-width: 786px) {
    .ep-countdown-bar {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
        box-sizing: border-box;
        width: 100%;
    }

    .ep-countdown-content {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .ep-countdown-text {
        text-align: center;
        margin-bottom: 10px;
        width: 100%;
    }

    .ep-countdown-text h3 {
        font-size: 18px;
    }

    .ep-countdown-text p {
        font-size: 12px;
    }

    .ep-countdown-timer {
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 0px;
        justify-content: center;
        width: 100%;
    }

    .ep-time-box {
        min-width: 50px;
    }

    .ep-time-value {
        font-size: 16px;
    }

    .ep-time-label {
        font-size: 9px;
    }

    .ep-countdown-cta {
        width: 100%;
        padding: 12px;
        font-size: 14px;
        margin-top: 10px;
        text-align: center;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .ep-countdown-text h3 {
        font-size: 16px;
    }

    .ep-time-box {
        min-width: 48px;
    }

    .ep-countdown-bar {
        padding-inline: 12px;
    }
}

/* MOBILE */

@media screen and (max-width: 768px) {
    .confirmation-container {
        padding: 30px 16px;
        width: 100%;
        overflow-x: hidden;
    }

    .confirmation-content {
        padding: 24px 20px;
        border-radius: 10px;
        width: 100%;
        max-width: 100%;
        box-shadow: none;
    }

    .confirmation-title {
        font-size: 1.6em;
        line-height: 1.3;
    }

    .confirmation-message {
        font-size: 0.98em;
    }

    .key-box {
        padding: 16px;
    }

    .key-box-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .copy-btn {
        width: 100%;
        padding: 10px 0;
        font-size: 1rem;
    }

    .confirmation-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .confirmation-button {
        font-size: 1rem;
        padding: 12px;
        width: 100%;
    }

    .retry-cta {
        padding: 22px 18px;
    }

    .additional-info {
        padding: 16px 18px;
    }

    .instructions-section h2 {
        font-size: 1.1rem;
    }

    .edgy-install-list > li {
        padding: 12px 14px 12px 50px;
    }

    .edgy-install-list > li::before {
        left: 11px;
    }
}


@media screen and (max-width: 768px) {

    .container,
    .purchase-container {
        max-width: 90%;
        max-height: 70%;
        overflow-y: auto;
        margin: auto;
    }

    .confirmation-container {
        max-width: 90%;
        margin: auto;
    }

    .disclaimer-container {
        max-width: 90%;
    }

    .container {
        margin-top: 10px;
    }

    .nav-dropdown {
        display: inline-block;
    }

    .navigation {
        display: none;
    }

    #discord-messages {
        max-width: 95% !important;
    }

    #discord-shops {
        max-width: 95% !important;
    }

    .discord-image {
        max-width: 95% !important;
        max-height: 350px;
    }

    #status-iframe {
        display: none !important;
    }

    .stats {
        display: flex;
        flex-direction: column;
        margin-top: 80px;
    }

    .edgypro-overlay-box {
        max-width: 90%;
    }

    .title {
        font-size: 1.5em;
    }

    .message,
    .purchase-box p,
    .feature-description {
        font-size: 1.1em;
    }

    .edgypro-overlay-box {
        width: 80%;
        padding: 10px;
    }

    .video-container {
        max-width: 90%;
    }

    .video-container video {
        max-width: 90%;
    }

    .buttons {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .buttons button {
        width: 100%;
    }
}

/* Reviews sort toggle */
#sort-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 26px auto 6px;
}

#sort-controls button {
    background: linear-gradient(30deg, #202020 50%, #252525 100%);
    color: #ccc;
    border: 1px solid #3a3b3c;
    padding: 9px 22px;
    margin: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif !important;
    border-radius: 999px;
    transition: all 0.2s ease;
}

#sort-controls button:hover {
    background: linear-gradient(30deg, #202020 50%, #303030 100%);
    border-color: #4a4a4a;
    color: #eee;
}

#sort-controls button.active {
    background: linear-gradient(30deg, #0a84ff 50%, #0063c7 100%);
    border-color: #0a84ff;
    color: #fff;
}

#sort-controls button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(10, 132, 255, 0.4);
}

@media (max-width: 768px) {
    #sort-controls button {
        padding: 8px 18px;
        font-size: 13px;
    }
}

.discord-content-images-box {
    display: flex;
    align-items: center;
    /* This ensures they are aligned vertically in the center */
    justify-content: normal;
    /* This spreads out the items across the horizontal space */
}

.discord-content-images-box span {
    padding-right: 5px;
}

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

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

.review-slider {
    position: relative;
    margin: auto;
    overflow: hidden;
    height: 250px;
    display: flex;
    align-items: center;
    text-align: center;
    width: 80%;
    max-width: 1000px;
}

.review-slider::before,
.review-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    /* So mouse events pass through */
}

.review-slider::before {
    left: 0;
    background: linear-gradient(to right, rgba(32, 32, 32, 1), transparent);
}

.review-slider::after {
    right: 0;
    background: linear-gradient(to left, rgba(32, 32, 32, 1), transparent);
}

.review-slider .title {
    width: fit-content;
    margin: 0 auto;
}

.slider-content {
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    animation: scroll 300s linear infinite;
    animation-play-state: running;
    width: max-content;
    overflow: hidden;
}

.slider-content .discord-review-content {
    display: block;
    max-height: 92px;
    overflow: auto;
    padding-right: 6px;
}

.slider-content .discord-review-content::-webkit-scrollbar {
    width: 5px;
}

.slider-content .discord-review-content::-webkit-scrollbar-thumb {
    background: #3a3a3a;
    border-radius: 3px;
}

.slider-content #discord-messages {
    max-width: none;
    flex-direction: row;
}

.discord-message {
    flex: 0 0 100%;
}

.slider-btn {
    position: absolute;
    top: 50%;
    background-color: #0982f8;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 17.5px;
    z-index: 2;
    transition: all 0.2s ease-in-out;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800
}

.slider-btn:hover {
    background-color: #2099f5;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.discord-shop p {
    color: #b9bbbe;
    font-size: 1em;
}

.discord-shop h1 {
    margin: 0;
    display: inline-block;
}

.discord-review-message {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    max-width: 640px;
    margin: 0 auto 12px;
    padding: 16px 18px;
    background: linear-gradient(160deg, #232323 0%, #191919 100%);
    border: 1px solid #2f2f2f;
    border-radius: 12px;
    color: #c2c2c2;
    box-sizing: border-box;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.discord-review-message:hover {
    border-color: #0a84ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

#sliderContent .discord-review-message {
    width: 460px;
    max-width: 460px;
    height: 180px;
    margin: 0 14px 0 0;
}

#sliderContent .discord-review-text {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

#sliderContent .discord-review-content-images-box {
    margin-top: auto;
}

.discord-review-avatar {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2f2f2f;
}

/* Review source badge (Discord vs Trustpilot) overlaid on the avatar */
.discord-review-avatar-wrap {
    position: relative;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
}

.review-source-badge {
    position: absolute;
    right: -3px;
    bottom: -3px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #191919;
    color: #fff;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.review-source-badge i {
    font-size: 12px;
}

.review-source-discord {
    background: #5865f2;
}

.review-source-trustpilot {
    background: #00b67a;
}

.discord-review-message-highlighted .review-source-badge {
    border-color: #161b20;
}

/* Trustpilot star rating (shown in place of the "helpful" line) */
.discord-review-stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    margin-left: auto;
    color: #00b67a;
    font-size: 0.95rem;
}

.discord-review-stars .bx-star {
    color: #4a4a4a;
}

/* Trustpilot aggregate summary card (free widget data) shown atop the reviews */
.trustpilot-summary {
    width: 100%;
    max-width: 640px;
    margin: 0 auto 16px;
    padding: 18px 20px;
    box-sizing: border-box;
    background: linear-gradient(160deg, #14231d 0%, #0f1a16 100%);
    border: 1px solid #00b67a;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 18px rgba(0, 182, 122, 0.18);
}

.tp-summary-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tp-summary-brand {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 800;
    color: #fff;
    font-size: 1.05rem;
}

.tp-summary-brand i {
    color: #00b67a;
    font-size: 1.1rem;
}

.tp-summary-label {
    color: #00b67a;
    font-weight: 700;
    font-size: 0.9rem;
}

.tp-summary-stars {
    display: inline-flex;
    gap: 2px;
    font-size: 1.35rem;
    color: #00b67a;
}

.tp-summary-stars .bx-star {
    color: #3a4b45;
}

.tp-summary-score {
    color: #d7e5e0;
    font-size: 0.9rem;
}

.tp-summary-score b {
    color: #fff;
    font-size: 1.05rem;
}

.tp-summary-link {
    color: #7fe0c0;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    margin-top: 2px;
}

.tp-summary-link:hover {
    text-decoration: underline;
}

/* Carousel variant on the home page */
#sliderContent .trustpilot-summary {
    width: 300px;
    max-width: 300px;
    height: 180px;
    margin: 0 14px 0 0;
    flex-shrink: 0;
    justify-content: center;
}

/* On phones the standalone summary is a direct child of body; inset it from
   the screen edges so it has breathing room on the sides. */
@media (max-width: 768px) {
    .trustpilot-summary {
        width: auto;
        margin-left: 16px;
        margin-right: 16px;
    }
}

/* ===== STATUS PAGE ===== */
.status-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 44px 20px 60px;
}

.status-overall {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 26px;
    border-radius: 16px;
    background: linear-gradient(160deg, #232323 0%, #18191a 100%);
    border: 1px solid #2f2f2f;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.status-overall::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: #0a84ff;
}

.status-overall-ok::before { background: #3ba55d; }
.status-overall-warn::before { background: #faa61a; }
.status-overall-down::before { background: #ed4245; }

.status-overall-icon-wrap {
    flex: none;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 30px;
    color: #4aa3ff;
    background: rgba(10, 132, 255, 0.16);
}

.status-overall-ok .status-overall-icon-wrap { background: rgba(59, 165, 93, 0.16); color: #4bd07a; }
.status-overall-warn .status-overall-icon-wrap { background: rgba(250, 166, 26, 0.16); color: #ffbb44; }
.status-overall-down .status-overall-icon-wrap { background: rgba(237, 66, 69, 0.16); color: #ff5c5f; }

.status-overall-text { flex: 1; min-width: 0; }
.status-overall-text h1 { font-size: 1.6rem; margin: 0 0 4px; color: #fff; }
.status-overall-text p { margin: 0; color: #a9a9a9; font-size: 0.95rem; }

.status-refresh {
    flex: none;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #262626;
    border: 1px solid #383838;
    color: #cfcfcf;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.18s ease, border-color 0.18s ease;
}
.status-refresh:hover { color: #fff; border-color: #0a84ff; }
.status-refresh.is-loading i { animation: statusSpin 0.8s linear infinite; }
@keyframes statusSpin { to { transform: rotate(360deg); } }

.status-section { margin-top: 34px; }
.status-section-title {
    font-size: 1.15rem;
    color: #e9e9e9;
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #2b2b2b;
}

.status-components { display: flex; flex-direction: column; gap: 12px; }

.status-component {
    background: linear-gradient(160deg, #232323 0%, #191919 100%);
    border: 1px solid #2f2f2f;
    border-radius: 12px;
    padding: 16px 18px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.status-component:hover { border-color: #3a3a3a; transform: translateY(-1px); }

.status-component-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.status-component-info { display: flex; flex-direction: column; min-width: 0; }
.status-component-name { font-weight: 700; color: #f0f0f0; font-size: 1rem; }
.status-component-desc { color: #8a8a8a; font-size: 0.82rem; margin-top: 2px; }

.status-pill {
    flex: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}
.status-pill-dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.status-pill-ok { background: rgba(59, 165, 93, 0.14); color: #4bd07a; }
.status-pill-warn { background: rgba(250, 166, 26, 0.14); color: #ffbb44; }
.status-pill-down { background: rgba(237, 66, 69, 0.14); color: #ff5c5f; }

.status-spark {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 40px;
    margin: 14px 0 10px;
}
.spark-bar {
    flex: 1;
    min-width: 2px;
    border-radius: 2px;
    background: #3ba55d;
    opacity: 0.85;
    transition: opacity 0.15s ease;
}
.spark-bar:hover { opacity: 1; }
.spark-up { background: #3ba55d; }
.spark-warn { background: #faa61a; }
.spark-down { background: #ed4245; }

.status-uptime { margin: 14px 0 8px; }
.status-uptime-bars {
    display: flex;
    align-items: stretch;
    gap: 2px;
    height: 34px;
}
.uptime-bar {
    flex: 1;
    min-width: 3px;
    border-radius: 2px;
    opacity: 0.9;
    transition: opacity 0.15s ease, transform 0.15s ease;
}
.uptime-bar:hover { opacity: 1; transform: scaleY(1.08); }
.uptime-up { background: #3ba55d; }
.uptime-warn { background: #faa61a; }
.uptime-down { background: #ed4245; }
.uptime-none { background: #333333; }
.status-uptime-legend {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6f6f6f;
    font-size: 0.72rem;
    margin-top: 6px;
}
.status-uptime-pct { color: #4bd07a; font-weight: 700; }

.status-component-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: #9a9a9a;
    font-size: 0.82rem;
}
.status-component-foot i { color: #6f6f6f; margin-right: 3px; vertical-align: middle; }

.status-incidents { display: flex; flex-direction: column; gap: 10px; }
.status-incident {
    background: linear-gradient(160deg, #232323 0%, #191919 100%);
    border: 1px solid #2f2f2f;
    border-left: 3px solid #3ba55d;
    border-radius: 10px;
    padding: 14px 16px;
}
.status-incident-ongoing { border-left-color: #ed4245; }
.status-incident-resolved { border-left-color: #3ba55d; }
.status-incident-empty {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8fbf9e;
    border-left-color: #3ba55d;
    font-size: 0.9rem;
}
.status-incident-empty i { font-size: 1.1rem; }
.status-incident-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.status-incident-title { font-weight: 700; color: #ededed; font-size: 0.95rem; }
.status-incident-badge {
    flex: none;
    padding: 3px 9px;
    border-radius: 14px;
    font-size: 0.72rem;
    font-weight: 700;
}
.status-incident-badge.ongoing { background: rgba(237, 66, 69, 0.16); color: #ff5c5f; }
.status-incident-badge.resolved { background: rgba(59, 165, 93, 0.16); color: #4bd07a; }
.status-incident-meta { color: #8a8a8a; font-size: 0.8rem; margin-top: 5px; }

.status-updated {
    text-align: center;
    color: #7a7a7a;
    font-size: 0.82rem;
    margin-top: 28px;
}

@media (max-width: 560px) {
    .status-overall { flex-wrap: wrap; padding-right: 62px; }
    .status-overall-text h1 { font-size: 1.35rem; }
    .status-refresh { position: absolute; top: 18px; right: 18px; }
}

.discord-review-text {
    position: relative;
    flex: 1;
    min-width: 0;
}

.discord-review-username {
    display: block;
    font-weight: 700;
    color: #43b0ff;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 130px);
}

.discord-review-date {
    color: #72767d;
    font-size: 0.8rem;
    cursor: default;
    text-decoration: none;
}

.discord-review-text > .discord-review-date {
    position: absolute;
    top: 1px;
    right: 0;
    font-size: 0.76rem;
    white-space: nowrap;
}

.discord-review-content {
    display: block;
    margin: 8px 0 0;
    line-height: 1.5;
    color: #cfcfcf;
    font-size: 0.95rem;
    word-break: break-word;
}

.discord-review-content p {
    margin: 4px 0 !important;
}

.discord-review-content h1 {
    font-size: 1.2em;
    color: #fff;
}

.discord-review-content img {
    height: 16px;
    width: auto;
    margin: -2px 2px;
}

.discord-review-content-images-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.discord-review-content-images-box:empty {
    display: none;
}

.discord-review-content-images-box span {
    color: #7289da;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    margin: 0;
}

.discord-review-content-images-box span:hover {
    text-decoration: underline;
}

.discord-review-content-images-box .discord-review-date {
    margin-left: auto;
    color: #72767d;
    font-size: 0.78rem;
}

.discord-review-helpful {
    color: #72767d;
    font-size: 0.8rem;
    text-align: right;
    display: block;
    margin-top: 10px;
}

/* Featured / highlighted review */
.discord-review-message-highlighted {
    background: linear-gradient(160deg, #1c2b3b 0%, #161b20 100%);
    border: 1px solid #0a84ff;
    box-shadow: 0 0 18px rgba(10, 132, 255, 0.22);
    color: #eef4ff;
}

#sliderContent .discord-review-message-highlighted {
    width: 480px;
    max-width: 480px;
}

.discord-review-message-highlighted:hover {
    border-color: #3c9fff;
    transform: translateY(-2px);
    box-shadow: 0 0 26px rgba(10, 132, 255, 0.4);
}

.discord-review-message-highlighted .discord-review-avatar {
    border-color: #0a84ff;
}

.discord-review-message-highlighted .discord-review-username {
    color: #5bb3ff;
}

.discord-review-message-highlighted .discord-review-content {
    color: #eef4ff;
}

.discord-review-message-highlighted .discord-review-helpful,
.discord-review-message-highlighted .discord-review-date {
    color: #9bb8d4;
}

/* General Section Styles */
.pricing-section {
    text-align: center;
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px 20px;
    border-radius: 10px;
    color: white;
}

.pricing-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Grid for Pricing Cards */
.pricing-custom-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
}

.pricing-custom-grid .price-card {
    max-width: none;
}

/* Wider variant used under the home page pricing grid (its parent .pricing-section
   is capped at 1000px, so 2 columns would look sparse — use 3; mobile overrides for
   this live alongside .pricing-custom-grid's own breakpoints below). */
.pricing-section .included-features-box {
    max-width: 1000px;
    margin-top: 32px;
}

.pricing-section .included-features-grid {
    grid-template-columns: repeat(3, 1fr);
}

.price-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, #232323 0%, #18191a 100%);
    border: 1px solid #2f2f2f;
    padding: 18px 20px 18px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    text-align: left;
    position: relative;
}

.price-card:hover {
    transform: translateY(-4px);
    border-color: #0982f8;
    box-shadow: 0 14px 34px rgba(9, 130, 248, 0.28);
}

/* Featured "Most Popular" plan — warm accent so it stands out against the
   blue/dark site (replaces the old purple treatment). */
.price-card.featured {
    border-color: #d9622e;
    background: linear-gradient(160deg, #241c16 0%, #181614 100%);
    box-shadow: 0 12px 32px rgba(255, 106, 43, 0.12);
}

.price-card.featured:hover {
    border-color: #ff7a3a;
    box-shadow: 0 16px 40px rgba(255, 106, 43, 0.3);
}

.summer-price-card:hover {
    transform: translateY(-3px);
    border-color: #ff5436;
    box-shadow: 0px 8px 16px rgb(255 89 40 / 50%);
}

/* Card Badges (top-of-card tag) */
.badge {
    align-self: flex-start;
    display: inline-block;
    background: rgba(9, 130, 248, 0.12);
    border: 1px solid rgba(9, 130, 248, 0.4);
    color: #6cb4ff;
    padding: 4px 11px;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.price-card.featured .badge {
    background: linear-gradient(135deg, #ff8a3d, #ff5e2e);
    border-color: #ff8a3d;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 106, 43, 0.45);
}

/* Pricing Titles and Descriptions */
.price-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 6px;
    color: #fff;
    text-align: left;
}

.price-card p {
    font-size: 0.92rem;
    color: #9aa0a6;
    margin: 0;
    text-align: left;
    line-height: 1.5;
}

/* Price + value meta */
.price-block {
    margin: 14px 0 14px;
}

.price-card .price {
    font-size: 2.1rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1;
    text-align: left;
}

.price-card .price i {
    font-size: 0.95rem;
    font-weight: 600;
    font-style: normal;
    color: #8a8f94;
    margin-left: 5px;
}

.price-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
    min-height: 22px;
}

.price-perday {
    font-size: 0.8rem;
    color: #9aa0a6;
}

.price-save {
    font-size: 0.64rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #2ee08a;
    background: rgba(40, 199, 111, 0.12);
    border: 1px solid rgba(40, 199, 111, 0.4);
    padding: 3px 9px;
    border-radius: 999px;
    white-space: nowrap;
}

/* Discount Tag (goes inside .price-card) */
.price-card .discount-tag {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-right: 32px;
    margin-top: 7px;
    /* space for yellow pill */
    margin-bottom: 7px;
}

/* Big pill with current price */
.price-card .discount-main {
    /* padding: 6px 16px 8px 16px; */
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 14px;
    margin-top: 10px;
}

.price-card .discount-main-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #d0e7ff;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.price-card .discount-main-price {
    font-size: 2.4rem;
    font-weight: 900;
    color: #00FF80;
    line-height: 1;
}

.price-card .discount-main-price i {
    font-size: 1.3rem;
    font-weight: 500;
    font-style: normal;
    margin-left: -5px;
}

.shine-text {
    font-weight: 700;
    text-shadow:
        0 0 1px #ffa500,
        0 0 3px #ffa500,
        0 0 5px #ffa500,
        0 0 15px rgba(255, 84, 54, 0.03);
    animation: shineGlow 1s cubic-bezier(0.4, 0, 1, 1) infinite alternate;
}

@keyframes shineGlow {
    from {
        text-shadow:
            0 0 1px #ffa500,
            0 0 3px #ffa500,
            0 0 5px #ffa500,
            0 0 10px rgba(255, 84, 54, 0.03);
    }

    to {
        text-shadow:
            0 0 7.5 #ffa500,
            0 0 5px #ffa500,
            0 0 10px #ffa500,
            0 0 15px rgba(255, 84, 54, 0.5);
    }
}

/* Small pill with old price */
.price-card .discount-old {
    position: absolute;
    top: -6px;
    right: 0;
    background: linear-gradient(30deg, #ff4a4a 50%, #ff2a2a 100%);
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}

.price-card .discount-old-value {
    text-decoration: line-through;
    color: #fff;
}

/* Buttons */
.purchase-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: auto;
    text-align: center;
    background: linear-gradient(135deg, #0a84ff, #0668d0);
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.15s ease, box-shadow 0.2s ease;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(9, 130, 248, 0.25);
}

.purchase-btn:hover {
    filter: brightness(1.08);
    box-shadow: 0 8px 22px rgba(9, 130, 248, 0.42);
    color: #fff;
}

/* Featured "Most Popular" card gets the matching warm accent button */
.price-card.featured .purchase-btn {
    background: linear-gradient(135deg, #ff8a3d, #ff5e2e);
    box-shadow: 0 6px 16px rgba(255, 106, 43, 0.3);
}

.price-card.featured .purchase-btn:hover {
    box-shadow: 0 8px 22px rgba(255, 106, 43, 0.5);
}

/* ===== Service Key banner (distinct from the tiered cards) ===== */
.service-key-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 940px;
    margin: 30px auto 0;
    padding: 26px 32px;
    border-radius: 16px;
    background: linear-gradient(160deg, #202020 0%, #191919 100%);
    border: 1px solid #2f2f2f;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-key-banner:hover {
    border-color: rgba(9, 130, 248, 0.45);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
}

.service-key-banner-main {
    flex: 1 1 auto;
}

.service-key-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(9, 130, 248, 0.12);
    border: 1px solid rgba(9, 130, 248, 0.4);
    color: #6cb4ff;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.service-key-banner-main h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0 8px;
}

.service-key-banner-main p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-width: 560px;
}

.service-key-banner-side {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 170px;
}

.service-key-price-word {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.service-key-price-note {
    font-size: 0.8rem;
    color: #8a8f94;
    margin-bottom: 12px;
}

.service-key-banner-side .purchase-btn {
    margin-top: 0;
}

@media (max-width: 640px) {
    .service-key-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 24px 22px;
    }

    .service-key-banner-main p {
        max-width: none;
    }

    .service-key-banner-side {
        width: 100%;
    }

    .service-key-banner-badge {
        align-self: center;
    }
}

.summer-purchase-btn:hover {
    background: linear-gradient(90deg, #0982f8 10%, #0063c7 100%) !important;
    color: #fff;
    transform: scale(1.02);
}

/* Small Disclaimer Text */
.pricing-small-disclaimer-text {
    font-size: 0.9rem;
    color: #b9bbbe;
    margin-top: 20px;
}

.pricing-small-disclaimer-text b {
    color: red;
}

/* Mobile Support */
@media (max-width: 992px) {
    .pricing-custom-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 600px;
        gap: 20px;
    }

    .pricing-section .included-features-box {
        max-width: 600px;
    }

    .pricing-section .included-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-key-banner {
        max-width: 600px;
        box-sizing: border-box;
    }
}

@media (max-width: 540px) {
    .pricing-custom-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
    }

    .pricing-section .included-features-box {
        max-width: 340px;
    }

    .pricing-section .included-features-grid {
        grid-template-columns: 1fr;
    }

    .service-key-banner {
        max-width: 340px;
        box-sizing: border-box;
    }
}

/* ===== FAQ ===== */
.faq-section {
    text-align: center;
    padding: 20px;
}

.faq-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.faq-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #aaa;
}

.faq-container {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.faq-column {
    flex: 1 1 0;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: linear-gradient(160deg, #1d1d1d 0%, #161616 100%);
    border: 1px solid #2c2c2c;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
    border-color: #3a3a3a;
}

.faq-item.open {
    border-color: #0a84ff;
    box-shadow: 0 8px 24px rgba(10, 132, 255, 0.12);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    cursor: pointer;
    font-size: 0.98rem;
    font-weight: 600;
    color: #fff;
    text-align: left;
}

.faq-question > span:not(.faq-toggle) {
    flex: 1;
    line-height: 1.4;
}

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.06);
}

.faq-question .faq-toggle {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #9aa0a6;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.3s ease, color 0.25s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    color: #0a84ff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    background: rgba(0, 0, 0, 0.25);
    color: #b6b6b6;
    text-align: left;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 14px 18px 16px;
    border-top: 1px solid #2a2a2a;
}

.faq-answer p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.faq-answer code {
    background: #2a2a2a;
    padding: 2px 7px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.85em;
    color: #7dd3fc;
}

.faq-answer b,
.faq-answer strong {
    color: #fff;
    font-weight: 600;
}

/* Mobile Styling */
@media screen and (max-width: 768px) {
    .faq-section h1 {
        font-size: 1.8rem;
    }

    .faq-container {
        flex-direction: column;
        width: 100%;
        padding: 0 14px;
    }

    .faq-column {
        flex: none;
        width: 100%;
        min-width: 0;
    }
}

.ts-page {
    max-width: 1000px;
    width: 92%;
    margin: 0 auto;
    padding: 48px 0 80px;
    position: relative;
    z-index: 1;
}

.ts-intro {
    text-align: center;
    margin-bottom: 26px;
}

.ts-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}

.ts-subtitle {
    color: #b8c0cc;
    font-size: 1rem;
    margin: 0;
}

#forum-posts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.forum-post {
    background: linear-gradient(160deg, #232323, #18191a);
    padding: 24px 26px;
    border-radius: 14px;
    border: 1px solid #2f2f2f;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.forum-post:hover {
    transform: translateY(-2px);
    border-color: rgba(9, 130, 248, 0.45);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.forum-post.search-hidden {
    display: none;
}

/* Accent bar down the left edge of each article */
.forum-post:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0982f8, #0063c7);
    opacity: 0.9;
}

/* .forum-post:hover:before {
    height: 100%;
    opacity: 0.05; /* Slight opacity change on hover 
    transition: height 0.3s ease-in-out, opacity 0.2s ease-in-out;
} */

.forum-post-title {
    font-size: 1.4rem;
    color: #fff;
    margin: 0 0 12px;
    font-weight: 700;
    border-bottom: 1px solid #2f2f2f;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Base styles for forum post content */
.forum-post-content {
    color: #fff;
    line-height: 1.6;
    font-size: 1rem;
    padding-top: 10px;
    font-family: 'Poppins', sans-serif !important;
}

/* List view shows titles only; the full article opens on its own page. */
#forum-posts .forum-post-content,
#forum-posts .forum-post-date {
    display: none;
}

#forum-posts.ts-single-view .forum-post-content {
    display: block;
}

#forum-posts.ts-single-view .forum-post-date {
    display: inline-block;
}

#forum-posts:not(.ts-single-view) .forum-post-title {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.forum-post-title-link {
    color: inherit;
    text-decoration: none;
}

.forum-post-title-link:hover {
    color: #43b0ff;
}

/* Search-only snippet: the matching sentence revealed under the title. */
.forum-post-snippet {
    margin: 8px 0 0;
    color: #b8c0cc;
    font-size: 0.94rem;
    line-height: 1.55;
    border-left: 2px solid #2f4a6a;
    padding-left: 12px;
}

.forum-post-snippet.is-hidden {
    display: none;
}

.ts-mark {
    background: rgba(10, 132, 255, 0.28);
    color: #fff;
    border-radius: 3px;
    padding: 0 3px;
}

/* Headings */
.forum-post-content h1,
.forum-post-content h2,
.forum-post-content h3,
.forum-post-content h4,
.forum-post-content h5,
.forum-post-content h6 {
    font-weight: bold;
    color: #ffffff;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

/* Specific sizes for different heading levels */
.forum-post-content h1 {
    font-size: 2rem;
    border-bottom: 2px solid #0982f8;
    /* Underline H1 */
    padding-bottom: 0.3em;
}

/* Paragraphs */
.forum-post-content p {
    margin-bottom: 1em;
}

/* Blockquotes */
.forum-post-content blockquote {
    border-left: 4px solid #0982f8;
    margin: 1em 0;
    padding-left: 1em;
    color: #ccc;
    font-style: italic;
    background-color: #1f1f1f;
}

/* Lists */
.forum-post-content ul,
.forum-post-content ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
}

.forum-post-content ol li {
    list-style: decimal inside;
    color: #ccc;
}

/* Code blocks */
.forum-post-content pre,
.forum-post-content code {
    font-family: 'Courier New', Courier, monospace;
    background-color: #1e1e1e;
    color: #ffffff;
    border-radius: 5px;
    padding: 0.3em 0.5em;
}

.forum-post-content pre {
    padding: 1em;
    overflow-x: auto;
    margin-bottom: 1.5em;
}

.forum-post-content code {
    font-size: 0.9rem;
}

/* Inline code */
.forum-post-content p code {
    background-color: #333;
    color: #ffffff;
    padding: 0.2em 0.4em;
    border-radius: 4px;
}

/* Links */
.forum-post-content a {
    color: #0982f8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forum-post-content a:hover {
    color: #00aaff;
    text-decoration: underline;
}

.forum-post-date {
    color: #72767d;
    font-size: 0.9em;
    font-style: italic;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #333;
    /* Divider above the date */
}

.forum-post-share {
    color: #999;
    font-size: 0.8em;
    display: inline-flex;
    margin-left: 5px;
}

.forum-post-share:hover {
    color: #ccc;
    text-decoration: underline;
    cursor: pointer;
}

/* Search / navigation toolbar */
.forum-posts-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    background: rgba(20, 21, 22, 0.92);
    backdrop-filter: blur(8px);
    align-items: center;
    position: sticky;
    z-index: 50;
    top: 12px;
    padding: 10px 14px;
    margin: 0 0 8px;
    border: 1px solid #2f2f2f;
    border-radius: 12px;
}

.forum-posts-header.ts-single .search-bar-container,
.forum-posts-header.ts-single .ts-result-count {
    display: none;
}

.ts-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #43b0ff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
}

.ts-back:hover {
    text-decoration: underline;
}

.search-bar-container {
    position: relative;
    flex: 1;
    max-width: 420px;
    display: flex;
    align-items: center;
}

.ts-search-icon {
    position: absolute;
    left: 12px;
    color: #7b828c;
    font-size: 1.1rem;
    pointer-events: none;
}

.search-bar {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 36px 10px 38px;
    border: 1px solid #34363a;
    border-radius: 10px;
    background-color: #141516;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.search-bar::placeholder {
    color: #6b7178;
}

.search-bar:focus {
    outline: none;
    border-color: #0a84ff;
    box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.18);
}

.ts-search-clear {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    color: #8a9098;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 2px;
}

.ts-search-clear:hover {
    color: #fff;
}

.ts-result-count {
    color: #8a9098;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.ts-empty {
    text-align: center;
    padding: 50px 20px;
    color: #9aa0a6;
}

.ts-empty i {
    font-size: 2.6rem;
    color: #5a616b;
}

.ts-empty p {
    margin: 12px 0 0;
    font-size: 1rem;
}

.ts-empty a {
    color: #43b0ff;
    text-decoration: none;
}

.ts-empty-cta {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 18px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0a84ff, #0668d0);
    color: #fff !important;
    font-weight: 600;
}

.ts-page .is-hidden {
    display: none !important;
}

/* Style for disclaimer text */
.small-disclaimer-text {
    color: #bbb;
    font-size: 0.7rem;
    text-align: center;
}

.small-disclaimer-text a {
    color: #ccc;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.small-disclaimer-text a:hover {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 1020px) {
    #nav {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .ts-page {
        width: 94%;
        padding: 32px 0 60px;
    }

    .ts-title {
        font-size: 1.7rem;
    }

    .forum-post {
        padding: 18px 18px;
    }

    .forum-post-title {
        font-size: 1.2rem;
    }

    .forum-post-content {
        font-size: 0.95rem;
    }

    .forum-posts-header {
        flex-wrap: wrap;
    }

    .search-bar {
        font-size: 0.9rem;
    }

    .ts-result-count {
        display: none;
    }
}

.highlighted-text {
    background-color: yellow;
    font-weight: bold;
}

.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: linear-gradient(135deg, #0a84ff 0%, #0668d0 100%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.25em;
    font-weight: bold;
    padding: 13px 34px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    box-shadow: 0 8px 20px rgba(10, 132, 255, 0.28);
    margin: 20px 0 0;
}

.download-button:hover {
    filter: brightness(1.08);
    box-shadow: 0 12px 26px rgba(10, 132, 255, 0.42);
    transform: translateY(-2px);
}

.download-button:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(10, 132, 255, 0.3);
}

/* Pending/Loading Style */
.download-button.loading {
    background-image: none;
    background-color: #ffc107;
    /* Yellow */
    color: #121212;
    /* Dark text for contrast */
    pointer-events: none;
    /* Disable interaction */
    cursor: wait;
}

.download-button.loading::after {
    content: '...';
    /* Shows ellipsis for loading */
    display: inline-block;
    margin-left: 5px;
    animation: loadingDots 1s infinite;
}

@keyframes loadingDots {
    0% {
        content: '.';
    }

    33% {
        content: '..';
    }

    66% {
        content: '...';
    }

    100% {
        content: '.';
    }
}

/* Completed Style */
.download-button.completed {
    background-image: none;
    background-color: #28a745;
    /* Green */
    color: #ffffff;
    pointer-events: none;
    /* Disable interaction */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.download-button.completed::after {
    content: '✓';
    /* Checkmark to indicate completion */
    font-size: 16px;
    display: inline-block;
    margin-left: 10px;
}

/* Error Style */
.download-button.error {
    background-image: none;
    background-color: #dc3545;
    /* Red */
    color: #ffffff;
    pointer-events: none;
    /* Disable interaction */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.download-button.error::after {
    content: '✗';
    /* Cross mark to indicate error */
    font-size: 16px;
    display: inline-block;
    margin-left: 10px;
}

.free-trial-description {
    background: #1c1c1c;
    border: 1px solid #444;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    line-height: 1.6;
    color: #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
    max-width: 800px;
}

.free-trial-description h2 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
    padding-bottom: 6px;
    border-bottom: 1px solid #0982f8;
}

.free-trial-description p {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 16px;
}

.free-trial-description ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    list-style: none;
    margin: 0.5rem 0;
    padding: 0;
}

.free-trial-description li {
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    line-height: 1.4;
    font-size: 0.8em;
    opacity: 80%;
    transition: all 0.3s ease;
}

.free-trial-description li:hover {
    opacity: 100%;
}

/* If the last item is alone in its row (odd number of items), have it span 100% width of the container */
.free-trial-description li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: stretch;
}

/* EdgyPro menu (home-page demo) styles moved to css/menu-preview.css - linked only by index.html at min-width:1021px (menu is hidden <=1020px via #nav display:none above). */

/* ===== Page Styles ===== */

/* Setup Page Styles */
.setup-header {
    text-align: center;
    margin-bottom: 40px;
}

.setup-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #0a84ff;
}

.setup-header p {
    font-size: 16px;
    color: #999;
    margin: 0;
    line-height: 1.5;
}

.setup-step-head {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto 18px;
    text-align: left;
}

.setup-step-badge {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(160deg, #0a84ff 0%, #0668d0 100%);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(10, 132, 255, 0.4);
}

.setup-step-info {
    display: flex;
    flex-direction: column;
}

.setup-step-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.setup-step-desc {
    font-size: 0.85rem;
    color: #8a8f94;
    margin-top: 2px;
}

.platform-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 700px;
    margin: 0 auto 36px;
}

.platform-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 22px 14px 16px;
    background: linear-gradient(160deg, #242424 0%, #1a1a1a 100%);
    border: 2px solid #333;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #ccc;
    text-align: center;
    overflow: visible;
}

.platform-btn:hover {
    border-color: #0a84ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 132, 255, 0.15);
}

.platform-btn.active {
    background: linear-gradient(160deg, #0a84ff 0%, #0668d0 100%);
    border-color: #0a84ff;
    box-shadow: 0 8px 20px rgba(10, 132, 255, 0.35);
}

.platform-btn i {
    font-size: 30px;
    color: #0a84ff;
    transition: color 0.25s ease;
}

.platform-btn:hover i {
    color: #3c9fff;
}

.platform-btn-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.platform-btn-sub {
    font-size: 12px;
    font-weight: 500;
    color: #999;
}

.platform-btn.active i,
.platform-btn.active .platform-btn-title {
    color: #fff;
}

.platform-btn.active .platform-btn-sub {
    color: #d6e9ff;
}

.platform-btn-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 999px;
    background: linear-gradient(30deg, #00b300 50%, #009100 100%);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.platform-btn-badge i {
    font-size: 0.85rem;
    color: #fff !important;
}

/* === EdgyOne per-OS download buttons (download page) === */
.edgyone-download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 700px;
    margin: 6px auto 22px;
}

.edgyone-os-button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 96px;
    padding: 13px 44px 13px 14px;
    background: linear-gradient(160deg, #242424 0%, #1a1a1a 100%);
    border: 2px solid #333;
    border-radius: 12px;
    color: #eee;
    text-decoration: none;
    cursor: pointer;
    overflow: visible;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.edgyone-os-button:hover {
    border-color: #0a84ff;
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(10, 132, 255, 0.2);
}

.edgyone-os-button:active {
    transform: translateY(-1px);
}

.edgyone-os-icon {
    font-size: 34px;
    color: #0a84ff;
    transition: color 0.25s ease, transform 0.25s ease;
}

.edgyone-os-button:hover .edgyone-os-icon {
    color: #3c9fff;
    transform: scale(1.06);
}

.edgyone-os-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
}

.edgyone-os-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.edgyone-os-sub {
    font-size: 11.5px;
    font-weight: 500;
    color: #9aa0a6;
    letter-spacing: 0.02em;
}

/* Big circular action chip pinned to the right edge of each card. Both the download
   arrow and the success check share the chip; scoping under .edgyone-os-button gives
   these display rules higher specificity than boxicons' .bx (which loads after page.css). */
.edgyone-os-button .edgyone-os-dl,
.edgyone-os-button .edgyone-os-ok {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 19px;
    line-height: 1;
}

.edgyone-os-button .edgyone-os-dl {
    display: inline-flex;
    background: rgba(10, 132, 255, 0.12);
    color: #4aa3ff;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.edgyone-os-button:hover .edgyone-os-dl {
    background: #0a84ff;
    color: #fff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 14px rgba(10, 132, 255, 0.45);
}

.edgyone-os-button .edgyone-os-ok {
    display: none;
    background: rgba(40, 167, 69, 0.16);
    color: #34c759;
}

/* "Suggested for your system" badge — revealed by JS adding .suggested */
.edgyone-os-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%) scale(0.6);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 11px;
    border-radius: 999px;
    background: linear-gradient(30deg, #0a84ff 50%, #0668d0 100%);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 2;
}

.edgyone-os-badge i {
    font-size: 0.8rem;
    color: #fff !important;
}

.edgyone-os-button.suggested {
    border-color: #0a84ff;
    background: linear-gradient(160deg, #1b2c40 0%, #16202d 100%);
    box-shadow: 0 10px 24px rgba(10, 132, 255, 0.22);
}

.edgyone-os-button.suggested .edgyone-os-badge {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.edgyone-os-button.suggested .edgyone-os-sub {
    color: #bcd9ff;
}

/* Click feedback: arrow bounces while downloading, swaps to a check when started */
.edgyone-os-button.downloading {
    pointer-events: none;
    border-color: #0a84ff;
}

.edgyone-os-button.downloading .edgyone-os-dl {
    background: #0a84ff;
    color: #fff;
    animation: edgyoneDlBounce 0.7s ease infinite;
}

@keyframes edgyoneDlBounce {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% + 4px));
    }
}

.edgyone-os-button.started {
    border-color: #28a745;
    box-shadow: 0 10px 24px rgba(40, 167, 69, 0.22);
}

.edgyone-os-button.started .edgyone-os-dl {
    display: none;
}

.edgyone-os-button.started .edgyone-os-ok {
    display: inline-flex;
    animation: edgyoneOkPop 0.3s ease;
}

@keyframes edgyoneOkPop {
    0% {
        transform: translateY(-50%) scale(0.4);
        opacity: 0;
    }

    100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
}

/* === Step flow: per-platform guide titles, notes & numbered cards === */
.setup-guide-title {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 700px;
    margin: 0 auto 14px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    text-align: left;
}

.setup-guide-title i {
    color: #0a84ff;
    font-size: 1.35rem;
}

.setup-guide-option {
    background: linear-gradient(30deg, #0a84ff 50%, #0668d0 100%);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    border-radius: 999px;
}

.setup-guide-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 700px;
    margin: 0 auto 14px;
    padding: 11px 15px;
    background: #161616;
    border-left: 3px solid #0a84ff;
    border-radius: 8px;
    font-size: 0.86rem;
    color: #b6b6b6;
    line-height: 1.55;
    text-align: left;
}

.setup-guide-note i {
    color: #0a84ff;
    font-size: 1.15rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.setup-guide-note a {
    color: #43b0ff;
    text-decoration: none;
    font-weight: 600;
}

.setup-guide-note a:hover {
    text-decoration: underline;
}

.setup-steps {
    max-width: 700px;
    margin: 0 auto 36px;
    padding: 0;
    list-style: none;
    counter-reset: setup-step;
    text-align: left;
}

.setup-steps>li {
    position: relative;
    counter-increment: setup-step;
    background: linear-gradient(160deg, #232323 0%, #191919 100%);
    border: 1px solid #2f2f2f;
    border-radius: 10px;
    padding: 15px 18px 15px 60px;
    margin-bottom: 12px;
    color: #c6c6c6;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.setup-steps>li:last-child {
    margin-bottom: 0;
}

.setup-steps>li:hover {
    border-color: #0a84ff;
    transform: translateX(3px);
}

.setup-steps>li::before {
    content: counter(setup-step);
    position: absolute;
    left: 15px;
    top: 14px;
    width: 28px;
    height: 28px;

    background: rgba(10, 132, 255, 0.08);
    border: 2px solid rgba(10, 132, 255, 0.35);

    color: #7bb8ff;
    border-radius: 50%;

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

    font-weight: 700;
    font-size: 0.85rem;

    box-shadow: none;
}

.setup-steps>li>b {
    color: #fff;
    font-weight: 600;
}

.setup-steps>li>b:first-of-type {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 3px;
}

.setup-steps a {
    color: #43b0ff;
    text-decoration: none;
    font-weight: 600;
}

.setup-steps a:hover {
    text-decoration: underline;
}

.setup-steps code {
    background: #2a2a2a;
    padding: 2px 7px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.85em;
    color: #7dd3fc;
    word-break: break-all;
}

.setup-steps #developer-mode-instructions {
    display: block;
    margin-top: 12px;
    padding: 12px 16px;
    background-color: #161616;
    border-left: 3px solid #0a84ff;
    border-radius: 6px;
    font-size: 13px;
    color: #bbb;
    line-height: 1.6;
}

.setup-steps #developer-mode-instructions p {
    margin: 0 0 8px;
}

.setup-steps #developer-mode-instructions ol {
    margin: 0;
    padding-left: 20px;
    list-style: decimal;
}

.setup-steps #developer-mode-instructions li {
    margin-bottom: 5px;
    font-size: 13px;
    color: #bbb;
}

.setup-steps #developer-mode-instructions code {
    font-size: 12px;
}

.setup-page-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.setup-page-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.setup-install-box {
    background-color: #1f1f1f;
    border-left: 4px solid #0a84ff;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 6px;
    line-height: 1.8;
    text-align: left;
}

.setup-install-box h1 {
    font-size: 22px;
    font-weight: 600;
    color: #0a84ff;
    margin: 0 0 20px 0;
    padding-left: 0;
}

.setup-install-box li {
    margin-bottom: 20px;
    font-size: 15px;
    color: #ccc;
}

.setup-install-box li:last-child {
    margin-bottom: 0;
}

.setup-install-box b {
    color: #0a84ff;
    font-weight: 600;
}

.setup-install-box a {
    color: #0a84ff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.setup-install-box a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.setup-install-box code {
    background-color: #262626;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #7dd3fc;
}

.setup-action-btn {
    background-color: #0a84ff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    display: inline-block;
}

.setup-action-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.setup-download-section {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
}

.setup-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background-color: #0a84ff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(10, 132, 255, 0.3);
}

.setup-download-btn:hover {
    background-color: #0563d4;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 132, 255, 0.4);
}

.setup-download-btn i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .setup-header h2 {
        font-size: 24px;
    }

    .platform-selector {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .edgyone-download-grid {
        grid-template-columns: 1fr;
    }

    .setup-step-name {
        font-size: 1.05rem;
    }

    .setup-steps>li {
        font-size: 0.9rem;
        padding: 14px 16px 14px 54px;
    }

    .setup-steps>li::before {
        left: 13px;
    }

    .setup-install-box {
        padding: 20px;
    }

    .setup-install-box h1 {
        font-size: 18px;
    }

    .setup-install-box li {
        font-size: 14px;
    }

    .setup-download-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ===== EdgyOne Launcher Promo ===== */
.edgyone-section {
    text-align: center;
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px 20px;
    border-radius: 10px;
    color: white;
}

.edgyone-card {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #0982f8;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.00) 30%),
        radial-gradient(circle at top right, rgba(9, 130, 248, 0.18), transparent 28%),
        linear-gradient(5deg, #111213 0%, #18191a 55%, rgba(9, 130, 248, 0.10) 82%, rgba(9, 130, 248, 0.16) 100%);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.25);
    text-align: center;
    transition: all 0.3s ease;
}

.edgyone-card:hover {
    transform: translateY(-3px);
    border-color: #3c9fff;
    box-shadow: 0px 8px 16px rgba(0, 136, 255, 0.5);
}

.edgyone-badge {
    background: linear-gradient(90deg, #0982f8 10%, #0063c7 100%);
    color: white;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: bold;
    position: absolute;
    top: -10px;
    right: 5px;
}

.edgyone-card-title {
    font-size: 1.6rem;
    margin: 10px 0;
    color: white;
    text-align: left;
}

.edgyone-card-description {
    font-size: 1rem;
    color: #b9bbbe;
    margin: 5px 0;
    text-align: left;
}

.edgyone-price-tag {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-top: 7px;
    margin-bottom: 7px;
}

.edgyone-price-main {
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 14px;
    margin-top: 10px;
}

.edgyone-price {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: #c7d8ff;
    text-shadow:
        0 0 1px #0982f8,
        0 0 3px #0982f8,
        0 0 5px #0982f8,
        0 0 15px rgba(9, 130, 248, 0.03);
    animation: edgyoneShineGlow 1s cubic-bezier(0.4, 0, 1, 1) infinite alternate;
}

@keyframes edgyoneShineGlow {
    from {
        text-shadow:
            0 0 1px #0982f8,
            0 0 3px #0982f8,
            0 0 5px #0982f8,
            0 0 10px rgba(9, 130, 248, 0.03);
    }

    to {
        text-shadow:
            0 0 7.5px #0982f8,
            0 0 5px #0982f8,
            0 0 10px #0982f8,
            0 0 15px rgba(9, 130, 248, 0.5);
    }
}

.edgyone-price-sub {
    padding: 3px;
    color: #ffffff;
    text-align: center;
}

.edgyone-price-sub .sub-text {
    margin: 0;
}

.edgyone-download-btn {
    display: block;
    background: linear-gradient(90deg, #0982f8 10%, #0063c7 100%);
    color: #eee;
    border: none;
    border-radius: 8px;
    padding: 5px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.edgyone-download-btn:hover {
    background: linear-gradient(90deg, #0063c7 10%, #004a9f 100%);
    transform: translateY(-2px);
    color: #fff;
}

.edgyone-disclaimer-text {
    font-size: 0.85rem;
    color: #b9bbbe;
    margin-top: 15px;
}

.edgyone-disclaimer-text b {
    color: #0982f8;
}

/* ===== Purchase Page Polish ===== */
.purchase-container {
    width: auto;
    max-width: 660px;
}

.purchase-container .message {
    margin-bottom: 22px;
}

/* Summer School Bundle promo */
.summer-promo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-decoration: none;
    margin-bottom: 22px;
    padding: 18px 22px;
    border-radius: 12px;
    border: 1px solid #f87509;
    background:
        radial-gradient(circle at top right, rgba(255, 84, 54, 0.18), transparent 45%),
        linear-gradient(5deg, #141414 0%, #18191a 55%, rgba(248, 117, 9, 0.10) 100%);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.summer-promo-banner:hover {
    transform: translateY(-2px);
    border-color: #ffb066;
    box-shadow: 0 12px 28px rgba(248, 117, 9, 0.28);
}

.summer-promo-info {
    text-align: left;
}

.summer-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background: linear-gradient(90deg, #f87509 10%, #f41414 100%);
    padding: 4px 11px;
    border-radius: 999px;
    margin-bottom: 9px;
}

.summer-promo-title {
    margin: 0 0 5px;
    font-size: 1.18rem;
    color: #fff;
    font-weight: 700;
}

.summer-promo-desc {
    margin: 0;
    font-size: 0.85rem;
    color: #c4c4c4;
    max-width: 340px;
    line-height: 1.5;
}

.summer-promo-desc b {
    color: #ffd27a;
}

.summer-promo-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}

.summer-promo-price {
    font-size: 2rem;
    font-weight: 900;
    color: #ffdc75;
    line-height: 1;
}

.summer-promo-price small {
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 3px;
    color: #e0b85e;
}

.summer-promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #f87509 10%, #f41414 100%);
    padding: 9px 16px;
    border-radius: 8px;
    white-space: nowrap;
    transition: filter 0.2s ease;
}

.summer-promo-banner:hover .summer-promo-cta {
    filter: brightness(1.1);
}

/* Step sections */
.purchase-step {
    margin-bottom: 20px;
    text-align: left;
}

.step-label {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9aa0a6;
    margin-bottom: 11px;
}

.step-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #3a3b3c;
    color: #9aa0a6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Richer plan toggle */
.purchase-box .plan-group .toggle-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 14px 12px;
}

.plan-title {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.98rem;
    font-weight: 700;
    color: #eee;
}

.plan-sub {
    font-size: 0.72rem;
    color: #9aa0a6;
    font-weight: 500;
}

.toggle-button.active .plan-title {
    color: #fff;
}

.toggle-button.active .plan-sub {
    color: #d6e9ff;
}

/* Order summary — traditional line-item + total */
.order-summary {
    background: linear-gradient(160deg, #202020 0%, #1a1a1a 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 16px 18px;
    text-align: left;
    margin-bottom: 18px;
}

.order-summary-label {
    margin-bottom: 12px;
}

.order-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.order-line-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.order-line-name {
    font-size: 1rem;
    font-weight: 700;
    color: #eee;
}

.order-line-total {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.order-summary .price-text {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1;
    text-align: right;
}

.price-per-day {
    font-size: 0.82rem;
    color: #9aa0a6;
}

.price-savings {
    display: none;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #28c76f;
    background: rgba(40, 199, 111, 0.12);
    border: 1px solid rgba(40, 199, 111, 0.35);
    padding: 3px 9px;
    border-radius: 999px;
    white-space: nowrap;
}

.price-savings.visible {
    display: inline-block;
}

.order-summary .description-text {
    margin: 14px 0 0;
    padding: 12px 0 0;
    background: none;
    border: none;
    border-top: 1px solid #2c2c2c;
    border-radius: 0;
    color: #9aa0a6;
    font-size: 0.82rem;
    text-align: left;
}

/* Primary CTA */
.purchase-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.05rem;
    box-shadow: 0 8px 20px rgba(9, 130, 248, 0.3);
}

/* Trust indicators */
.trust-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    color: #9aa0a6;
}

.trust-item i {
    color: #0982f8;
    font-size: 1rem;
}

/* "Every plan includes" feature grid (purchase page) */
.included-features-box {
    max-width: 660px;
    margin: 24px auto 0;
    background: linear-gradient(160deg, #202020 0%, #1a1a1a 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px 22px;
    text-align: left;
}

.included-features-label {
    margin-bottom: 16px;
}

.included-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
}

.included-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.included-feature-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(9, 130, 248, 0.12);
    color: #0982f8;
    font-size: 1.1rem;
}

.included-feature-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.included-feature-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #eee;
}

.included-feature-desc {
    font-size: 0.78rem;
    line-height: 1.5;
    color: #9aa0a6;
}

@media (max-width: 560px) {
    .included-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .summer-promo-banner {
        flex-direction: column;
        text-align: center;
        align-items: stretch;
    }

    .summer-promo-info {
        text-align: center;
    }

    .summer-promo-desc {
        max-width: none;
    }

    .summer-promo-action {
        flex-direction: row;
        justify-content: center;
    }
}

/* ===== On-site Custom Checkout Popup (Stripe Payment Element) ===== */
/* CTA acts as a button even though it's an anchor without href */
#stripe-buy-btn {
    cursor: pointer;
}

.co-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 16px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.co-overlay.visible {
    display: flex;
    animation: coFade 0.2s ease;
}

@keyframes coFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.co-modal {
    position: relative;
    width: 100%;
    max-width: 760px;
    margin: auto;
    background: linear-gradient(160deg, #232323 0%, #191919 100%);
    border: 1px solid #2f2f2f;
    border-radius: 16px;
    padding: 26px 24px 22px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    animation: coPop 0.24s cubic-bezier(0.2, 0.8, 0.3, 1) backwards;
}

@keyframes coPop {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: none; }
}

.co-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 8px;
    color: #bbb;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.15s ease;
}

.co-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.co-head {
    margin-bottom: 4px;
}

.co-title {
    margin: 0 0 14px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    text-align: left;
}

/* Two-column checkout body: order summary + promo on the left, payment on the right. */
.co-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.co-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.co-summary .co-order-lines,
.co-summary .co-qty {
    margin-top: 0;
}

.co-summary .co-promo {
    margin-bottom: 0;
}

.co-summary .co-promo-msg {
    margin: 0;
}

.co-order {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    background: linear-gradient(160deg, #202020 0%, #1a1a1a 100%);
    border: 1px solid #333;
    border-radius: 10px;
}

.co-order-name {
    font-size: 0.9rem;
    color: #cfcfcf;
    font-weight: 600;
}

.co-order-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: #28c76f;
}

.co-order-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
    padding: 10px 14px;
    background: linear-gradient(160deg, #1e1e1e 0%, #191919 100%);
    border: 1px solid #2c2c2c;
    border-radius: 10px;
}

.co-order-lines[hidden] {
    display: none;
}

.co-order-subline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #9aa0a6;
}

.co-order-subline span:last-child {
    color: #cfcfcf;
    font-weight: 600;
}

.co-qty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
    padding: 8px 14px;
    background: linear-gradient(160deg, #202020 0%, #1a1a1a 100%);
    border: 1px solid #333;
    border-radius: 10px;
}

.co-qty-label {
    font-size: 0.9rem;
    color: #cfcfcf;
    font-weight: 600;
}

.co-qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    overflow: hidden;
    background: #2a2a2a;
}

.co-qty-btn {
    width: 34px;
    height: 34px;
    border: none;
    background: #2a2a2a;
    color: #eee;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.co-qty-btn:hover:not(:disabled) {
    background: #333;
    color: #0982f8;
}

.co-qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.co-qty-value {
    width: 42px;
    height: 34px;
    box-sizing: border-box;
    border: none;
    border-left: 1px solid #3a3a3a;
    border-right: 1px solid #3a3a3a;
    background: #202020;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    pointer-events: none;
}

.co-form {
    display: flex;
    flex-direction: column;
}

.co-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #cfcfcf;
    margin-bottom: 6px;
    text-align: left;
}

.co-label-hint {
    color: #8a8f94;
    font-weight: 500;
}

.co-input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    margin-bottom: 16px;
    background: #202020;
    border: 1px solid #333;
    border-radius: 8px;
    color: #eee;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.co-input::placeholder {
    color: #777;
}

.co-input:focus {
    outline: none;
    border-color: #0982f8;
    box-shadow: 0 0 0 1px #0982f8;
}

.co-payment-element {
    min-height: 40px;
    margin-bottom: 8px;
}

.co-address {
    margin-bottom: 8px;
}

.co-address-element {
    min-height: 40px;
}

.co-promo {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.co-promo-input {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
    padding: 11px 13px;
    background: #202020;
    border: 1px solid #333;
    border-radius: 8px;
    color: #eee;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.co-promo-input::placeholder {
    color: #777;
    letter-spacing: normal;
}

.co-promo-input:focus {
    outline: none;
    border-color: #0982f8;
    box-shadow: 0 0 0 1px #0982f8;
}

.co-promo-input:disabled {
    opacity: 0.6;
}

.co-promo-btn {
    flex: 0 0 auto;
    padding: 0 18px;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    background: #2a2a2a;
    color: #eee;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.co-promo-btn:hover {
    background: #333;
    border-color: #0982f8;
}

.co-promo-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.co-promo-btn.is-remove {
    color: #ff9b9b;
}

.co-promo-msg {
    display: none;
    margin: 0 0 12px;
    font-size: 0.8rem;
    line-height: 1.35;
    text-align: left;
}

.co-promo-msg.visible {
    display: block;
}

.co-promo-msg.ok {
    color: #58d68d;
}

.co-promo-msg.err {
    color: #ffb3b3;
}

.co-error {
    display: none;
    margin: 4px 0 12px;
    padding: 10px 12px;
    background: rgba(255, 91, 91, 0.1);
    border: 1px solid rgba(255, 91, 91, 0.35);
    border-radius: 8px;
    color: #ffb3b3;
    font-size: 0.82rem;
    line-height: 1.35;
    text-align: left;
}

.co-error.visible {
    display: block;
}

.co-pay-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 12px;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(30deg, #0982f8 50%, #0063c7 100%);
    color: #fff;
    font-size: 1.02rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(9, 130, 248, 0.3);
    transition: filter 0.15s ease, transform 0.05s ease;
}

.co-pay-btn:hover {
    filter: brightness(1.08);
}

.co-pay-btn:active {
    transform: translateY(1px);
}

.co-pay-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.co-pay-btn.loading .co-pay-label {
    visibility: hidden;
}

.co-btn-spinner {
    display: none;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: coSpin 0.7s linear infinite;
}

.co-pay-btn.loading .co-btn-spinner {
    display: block;
}

@keyframes coSpin {
    to { transform: rotate(360deg); }
}

.co-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 14px 0 0;
    font-size: 0.74rem;
    color: #8a8f94;
}

.co-secure i {
    color: #28c76f;
}

/* Success state — hide the form + order, reveal the confirmation */
.co-success {
    display: none;
    text-align: center;
    padding: 10px 0 6px;
}

.co-modal.is-success .co-head,
.co-modal.is-success .co-body {
    display: none;
}

.co-modal.is-success .co-success {
    display: block;
    animation: coFade 0.25s ease;
}

.co-success-badge {
    width: 64px;
    height: 64px;
    margin: 6px auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(40, 199, 111, 0.15);
    border: 1px solid rgba(40, 199, 111, 0.5);
    border-radius: 50%;
    color: #28c76f;
    font-size: 2.2rem;
    animation: coPop 0.3s ease;
}

.co-success h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 1.2rem;
}

.co-success p {
    margin: 0;
    color: #b7b7b7;
    font-size: 0.9rem;
}

@media (max-width: 760px) {
    .co-modal {
        max-width: 440px;
    }

    .co-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .co-overlay {
        padding: 16px 10px;
    }

    .co-modal {
        padding: 22px 16px 18px;
    }
}

/* ===== Download / Setup Page Polish ===== */
.setup-container {
    max-width: 780px;
    padding-bottom: 10px;
}

/* Platform instruction panels — shown one at a time (JS toggles inline display) */
.platform-content {
    display: none;
    text-align: left;
    animation: fadeIn 0.3s ease;
}

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

/* Download CTA area (also used on free-trial & edgyone pages) */
.download-section {
    text-align: center;
    margin: 10px 0 30px;
}

/* Keep small notes left-aligned inside the install box */
.setup-install-box .small-disclaimer-text {
    text-align: left;
    margin: 0 0 16px;
    color: #9aa0a6;
}

/* Browser-specific developer-mode steps injected by download.js */
.setup-install-box #developer-mode-instructions {
    display: block;
    margin-top: 12px;
    padding: 12px 16px;
    background-color: #161616;
    border-left: 3px solid #0a84ff;
    border-radius: 6px;
    font-size: 13px;
    color: #bbb;
    line-height: 1.6;
}

.setup-install-box #developer-mode-instructions p {
    margin: 0 0 8px;
}

.setup-install-box #developer-mode-instructions ol {
    margin: 0;
    padding-left: 20px;
}

.setup-install-box #developer-mode-instructions li {
    margin-bottom: 5px;
    font-size: 13px;
}

.setup-install-box #developer-mode-instructions code {
    font-size: 12px;
}

/* ============================================================
   BLOG — Directory + Articles
   ============================================================ */

/* ----- Shared container ----- */
.blog-wrap {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 22px 10px;
    box-sizing: border-box;
}

/* ----- Directory hero ----- */
.blog-hero {
    text-align: center;
    margin-bottom: 40px;
}

.blog-hero .blog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #cfe4ff;
    background: linear-gradient(30deg, rgba(9, 130, 248, 0.18), rgba(9, 130, 248, 0.05));
    border: 1px solid rgba(9, 130, 248, 0.45);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.blog-hero h1 {
    font-size: clamp(2rem, 4.4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.blog-hero p {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    color: #b6b6b6;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ----- Card grid ----- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, #232323 0%, #1a1a1a 100%);
    border: 1px solid #303030;
    border-radius: 14px;
    padding: 24px 22px;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: #0982f8;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

/* First card spans the full width as a featured post */
.blog-card.featured {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    background:
        radial-gradient(700px 220px at 100% 0%, rgba(9, 130, 248, 0.16), transparent 60%),
        linear-gradient(160deg, #242424 0%, #181818 100%);
}

.blog-card.featured .blog-card-body {
    flex: 1;
}

.blog-card.featured .blog-card-art {
    flex: 0 0 230px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #2c2c2c;
    background:
        radial-gradient(circle at 30% 30%, rgba(9, 130, 248, 0.35), transparent 60%),
        linear-gradient(160deg, #1d1d1d, #121212);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 170px;
}

.blog-card.featured .blog-card-art i {
    font-size: 4.5rem;
    color: #0a84ff;
    opacity: 0.85;
}

.blog-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.blog-tag {
    display: inline-block;
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #cfe4ff;
    background: rgba(9, 130, 248, 0.14);
    border: 1px solid rgba(9, 130, 248, 0.4);
    padding: 3px 10px;
    border-radius: 999px;
}

.blog-tag.proctorio {
    color: #ffd5b0;
    background: rgba(248, 117, 9, 0.14);
    border-color: rgba(248, 117, 9, 0.45);
}

.blog-read-time {
    font-size: 0.74rem;
    color: #8a8f94;
}

.blog-card h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.3;
}

.blog-card.featured .blog-card-body h2 {
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0 0 18px;
    flex: 1;
}

.blog-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #43b0ff;
    margin-top: auto;
}

.blog-card:hover .blog-card-readmore {
    color: #6cc4ff;
}

.blog-card-readmore i {
    transition: transform 0.2s ease;
}

.blog-card:hover .blog-card-readmore i {
    transform: translateX(4px);
}

/* ----- Article ----- */
.blog-article {
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 22px 10px;
    box-sizing: border-box;
}

.blog-breadcrumb {
    font-size: 0.82rem;
    color: #8a8f94;
    margin-bottom: 22px;
}

.blog-breadcrumb a {
    color: #43b0ff;
    text-decoration: none;
}

.blog-breadcrumb a:hover {
    text-decoration: underline;
}

.blog-article-header {
    margin-bottom: 26px;
    padding-bottom: 24px;
    border-bottom: 1px solid #2a2a2a;
}

.blog-article-header h1 {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin: 14px 0 16px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    font-size: 0.82rem;
    color: #9aa0a6;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: #0982f8;
}

/* ----- Article body typography ----- */
.blog-body {
    font-size: 1.02rem;
    line-height: 1.8;
    color: #c6c6c6;
}

.blog-body h2 {
    font-size: clamp(1.4rem, 2.6vw, 1.8rem);
    font-weight: 800;
    color: #fff;
    margin: 38px 0 14px;
    letter-spacing: -0.01em;
}

.blog-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 26px 0 10px;
}

.blog-body p {
    margin: 0 0 18px;
}

.blog-body a {
    color: #43b0ff;
    text-decoration: none;
    font-weight: 600;
}

.blog-body a:hover {
    text-decoration: underline;
}

.blog-body strong {
    color: #fff;
    font-weight: 700;
}

.blog-body ul,
.blog-body ol {
    margin: 0 0 20px;
    padding-left: 0;
    list-style: none;
}

.blog-body ul li {
    position: relative;
    padding: 6px 0 6px 30px;
    margin: 0;
    color: #c6c6c6;
}

.blog-body ul li::before {
    content: "\2713";
    position: absolute;
    left: 4px;
    top: 6px;
    color: #28c76f;
    font-weight: 900;
}

.blog-body ol {
    counter-reset: blog-counter;
}

.blog-body ol li {
    position: relative;
    padding: 6px 0 6px 38px;
    margin: 0 0 6px;
    counter-increment: blog-counter;
}

.blog-body ol li::before {
    content: counter(blog-counter);
    position: absolute;
    left: 0;
    top: 6px;
    width: 24px;
    height: 24px;
    background: linear-gradient(30deg, #0982f8 50%, #0063c7 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
}

.blog-body blockquote {
    margin: 0 0 22px;
    padding: 14px 20px;
    background: #181818;
    border-left: 4px solid #0982f8;
    border-radius: 0 8px 8px 0;
    color: #d0d0d0;
    font-style: italic;
}

.blog-body code {
    background: #2a2a2a;
    padding: 2px 7px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.88em;
    color: #7dd3fc;
}

.blog-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #2c2c2c;
    margin: 8px 0 22px;
}

/* ----- Article hero image ----- */
.blog-hero-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1200 / 630;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid #2c2c2c;
    margin: 0 0 30px;
    background: #131820;
}

/* ----- Figures with captions ----- */
.blog-figure {
    margin: 8px 0 26px;
}

.blog-figure img {
    margin: 0 0 8px;
    width: 100%;
}

.blog-figure figcaption {
    font-size: 0.82rem;
    color: #8a8f94;
    text-align: center;
    font-style: italic;
}

/* ----- Comparison table ----- */
.blog-compare {
    margin: 8px 0 28px;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #2c2c2c;
}

.blog-compare table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
    font-size: 0.92rem;
}

.blog-compare th,
.blog-compare td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #262626;
}

.blog-compare thead th {
    background: linear-gradient(160deg, #1f2731, #171b1f);
    color: #cfe4ff;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.blog-compare tbody tr:nth-child(odd) td {
    background: #1a1a1a;
}

.blog-compare tbody tr:nth-child(even) td {
    background: #161616;
}

.blog-compare td:first-child {
    color: #fff;
    font-weight: 600;
}

.blog-compare .col-edgypro {
    background: rgba(9, 130, 248, 0.10) !important;
    color: #eaf3ff;
}

.blog-compare thead .col-edgypro {
    background: linear-gradient(160deg, #12395f, #0d2740) !important;
    color: #fff;
}

.blog-compare .yes {
    color: #28c76f;
    font-weight: 700;
}

.blog-compare .no {
    color: #ff5b5b;
    font-weight: 700;
}

/* ----- Article FAQ ----- */
.blog-faq {
    margin: 10px 0 8px;
}

.blog-faq-item {
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 0 0 12px;
    background: linear-gradient(165deg, #1e1e1e, #171717);
}

.blog-faq-item h3 {
    margin: 0 0 8px !important;
    font-size: 1.05rem !important;
    color: #fff !important;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.blog-faq-item h3::before {
    content: "Q";
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(30deg, #0982f8, #0063c7);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.blog-faq-item p {
    margin: 0 !important;
    color: #b8b8b8;
}

/* Key-takeaways / callout box */
.blog-callout {
    background: linear-gradient(160deg, #1d2733 0%, #15191c 100%);
    border: 1px solid #1e4d7a;
    border-left: 4px solid #0a84ff;
    border-radius: 10px;
    padding: 18px 22px;
    margin: 0 0 26px;
}

.blog-callout h3 {
    margin: 0 0 10px !important;
    color: #cfe4ff !important;
    font-size: 1.05rem !important;
}

.blog-callout ul {
    margin: 0 !important;
}

/* ----- In-article CTA banner ----- */
.blog-cta-banner {
    margin: 34px 0;
    padding: 30px 26px;
    text-align: center;
    border-radius: 14px;
    background:
        radial-gradient(600px 200px at 50% 0%, rgba(9, 130, 248, 0.22), transparent 60%),
        linear-gradient(160deg, #1f1f1f 0%, #161616 100%);
    border: 1px solid #2c2c2c;
}

.blog-cta-banner h3 {
    margin: 0 0 8px;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 800;
}

.blog-cta-banner p {
    margin: 0 0 20px;
    color: #b6b6b6;
    font-size: 0.95rem;
}

.blog-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 9px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(30deg, #0982f8 50%, #0063c7 100%);
    border: 1px solid #0982f8;
    box-shadow: 0 8px 20px rgba(9, 130, 248, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(9, 130, 248, 0.45);
    color: #fff;
}

/* ----- Related posts ----- */
.blog-related {
    max-width: 820px;
    margin: 30px auto 0;
    padding: 0 22px;
}

.blog-related h2 {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 800;
    margin: 0 0 18px;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* ----- Responsive ----- */
@media (max-width: 860px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-card.featured {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-card.featured .blog-card-art {
        flex-basis: auto;
        min-height: 130px;
    }
}

@media (max-width: 560px) {

    .blog-grid,
    .blog-related-grid {
        grid-template-columns: 1fr;
    }
}

#key-redeem-btn {
    width: fit-content;
    height: 25px;
    background: linear-gradient(30deg, var(--selected-color) 50%, var(--selected-color-dark) 100%);
    color: #dedede;
    padding: 3px 10px 2px;
    font-size: 0.85em;
    font-weight: 800;
    border-radius: 3px;
    border: 1px solid var(--primary-color);
    transition: var(--tran-03);
}

#key-redeem-btn:hover {
    background: linear-gradient(90deg, var(--selected-color) 50%, var(--selected-color-dark) 100%);
    border: 1px solid var(--selected-color);
    border-radius: 5px;
    color: #fff;
}

/* ===== Promo codes page (/promo-codes) ===== */
.promo-container {
    max-width: 940px;
    margin: 0 auto;
    padding: 60px 20px 90px;
    position: relative;
    z-index: 1;
}

.promo-hero {
    text-align: center;
    margin-bottom: 34px;
}

.promo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #43b0ff;
    background: rgba(9, 130, 248, 0.12);
    border: 1px solid rgba(9, 130, 248, 0.28);
    padding: 5px 12px;
    border-radius: 999px;
}

.promo-title {
    margin: 14px 0 10px;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
}

.promo-sub {
    max-width: 640px;
    margin: 0 auto;
    color: #b8c0cc;
    font-size: 1rem;
    line-height: 1.6;
}

.promo-sub a,
.promo-how a,
.promo-faq a {
    color: #43b0ff;
    text-decoration: none;
}

.promo-sub a:hover,
.promo-how a:hover,
.promo-faq a:hover {
    text-decoration: underline;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

.promo-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(160deg, #232323, #18191a);
    border: 1px solid #2f2f2f;
    border-radius: 16px;
    padding: 22px 20px;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.promo-card:hover {
    border-color: rgba(9, 130, 248, 0.5);
    transform: translateY(-2px);
}

.promo-card-badge {
    align-self: flex-start;
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #0a84ff, #0668d0);
    padding: 6px 14px;
    border-radius: 10px;
}

.promo-card-desc {
    margin: 0;
    color: #b8c0cc;
    font-size: 0.9rem;
    line-height: 1.45;
}

.promo-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: #141516;
    border: 1px dashed #3a4653;
    border-radius: 10px;
    padding: 10px 12px;
}

.promo-code-text {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    word-break: break-all;
}

.promo-copy {
    flex-shrink: 0;
    background: none;
    border: none;
    color: #9aa0a6;
    cursor: pointer;
    font-size: 1.15rem;
    padding: 2px 4px;
    line-height: 1;
    transition: color 0.15s ease;
}

.promo-copy:hover {
    color: #43b0ff;
}

.promo-copy.copied {
    color: #4ade80;
}

.promo-copy.failed {
    color: #e74c3c;
}

.promo-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    font-size: 0.78rem;
    color: #8a9098;
    margin-top: auto;
}

.promo-card-cta {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #43b0ff;
    text-decoration: none;
}

.promo-card-cta:hover {
    text-decoration: underline;
}

.promo-empty {
    text-align: center;
    padding: 40px 20px;
    color: #9aa0a6;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed #34363a;
    border-radius: 16px;
}

.promo-empty i {
    font-size: 2.4rem;
    color: #5a616b;
}

.promo-empty p {
    margin: 10px 0 0;
}

.promo-empty a {
    color: #43b0ff;
    text-decoration: none;
}

.promo-how,
.promo-faq {
    margin-top: 44px;
}

.promo-how h2,
.promo-faq h2 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0 16px;
}

.promo-steps {
    color: #c4cbd3;
    line-height: 1.7;
    padding-left: 22px;
}

.promo-steps li {
    margin-bottom: 6px;
}

.promo-faq-item {
    background: linear-gradient(160deg, #202020, #181818);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 12px;
}

.promo-faq-item h3 {
    margin: 0 0 6px;
    font-size: 1.02rem;
    color: #fff;
}

.promo-faq-item p {
    margin: 0;
    color: #b8c0cc;
    font-size: 0.92rem;
    line-height: 1.55;
}

.promo-cta {
    text-align: center;
    margin-top: 40px;
}

.promo-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 11px;
    background: linear-gradient(135deg, #0a84ff, #0668d0);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.promo-cta-btn:hover {
    filter: brightness(1.08);
}

@media (max-width: 560px) {
    .promo-title {
        font-size: 1.7rem;
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== Self-service refund page (/refund) ===== */
.refund-container {
    max-width: 560px;
    margin: 0 auto;
    padding: 60px 20px 90px;
    position: relative;
    z-index: 1;
}

.refund-card {
    background: linear-gradient(160deg, #232323, #18191a);
    border: 1px solid #2f2f2f;
    border-radius: 18px;
    padding: 34px 30px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.refund-head {
    text-align: center;
    margin-bottom: 22px;
}

.refund-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #43b0ff;
    background: rgba(9, 130, 248, 0.12);
    border: 1px solid rgba(9, 130, 248, 0.28);
    padding: 5px 12px;
    border-radius: 999px;
}

.refund-title {
    margin: 14px 0 8px;
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
}

.refund-sub {
    margin: 0;
    color: #b8c0cc;
    font-size: 0.98rem;
    line-height: 1.55;
}

.refund-steps {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 24px 0;
    flex-wrap: wrap;
}

.refund-step-dot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #7b828c;
}

.refund-step-dot span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #2a2b2c;
    border: 1px solid #3a3b3c;
    font-size: 0.85rem;
    color: #9aa0a6;
    transition: all 0.2s ease;
}

.refund-step-dot.active {
    color: #fff;
}

.refund-step-dot.active span {
    background: linear-gradient(135deg, #0a84ff, #0668d0);
    border-color: #0a84ff;
    color: #fff;
}

/* Completed steps — and the terminal "Done" step on the success screen — read
   as green checks so the tracker matches the green success state. */
.refund-step-dot.done span,
.refund-step-dot[data-step="3"].active span {
    background: #1f7a3d;
    border-color: #27ae60;
    color: transparent;
    position: relative;
}

.refund-step-dot.done span::after,
.refund-step-dot[data-step="3"].active span::after {
    content: "\2713";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
}

.refund-msg {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.92rem;
    line-height: 1.45;
}

.refund-msg.is-hidden {
    display: none;
}

.refund-msg.error {
    background: rgba(231, 76, 60, 0.12);
    border: 1px solid rgba(231, 76, 60, 0.4);
    color: #ff9b90;
}

.refund-msg.info {
    background: rgba(9, 130, 248, 0.1);
    border: 1px solid rgba(9, 130, 248, 0.32);
    color: #8ecbff;
}

.refund-panel {
    display: none;
}

.refund-panel.active {
    display: block;
    animation: refundFade 0.25s ease;
}

@keyframes refundFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.refund-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd2da;
    margin-bottom: 8px;
}

.refund-input {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 15px;
    border-radius: 11px;
    background: #141516;
    border: 1px solid #34363a;
    color: #fff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.refund-input:focus {
    border-color: #0a84ff;
    box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.2);
}

.refund-input-code {
    text-align: center;
    letter-spacing: 0.5em;
    font-size: 1.5rem;
    font-weight: 700;
    padding-left: 0.5em;
}

.refund-label-spaced {
    margin-top: 22px;
}

.refund-optional {
    color: #8a9098;
    font-weight: 500;
}

.refund-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 40px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%238a9098' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.refund-select option {
    background: #141516;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.refund-btn {
    width: 100%;
    box-sizing: border-box;
    margin-top: 16px;
    padding: 13px 18px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(135deg, #0a84ff, #0668d0);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: filter 0.15s ease, transform 0.05s ease;
}

.refund-btn:hover {
    filter: brightness(1.08);
}

.refund-btn:active {
    transform: translateY(1px);
}

.refund-btn:disabled {
    opacity: 0.7;
    cursor: default;
}

.refund-btn-ghost {
    background: transparent;
    border: 1px solid #3a3b3c;
    color: #cbd2da;
    text-decoration: none;
}

.refund-btn-ghost:hover {
    border-color: #0a84ff;
    color: #fff;
    filter: none;
}

.refund-hint {
    margin: 12px 0 0;
    font-size: 0.82rem;
    color: #8a9098;
    line-height: 1.45;
}

.refund-code-note {
    margin: 0 0 18px;
    color: #b8c0cc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.refund-code-note b {
    color: #fff;
}

.refund-secondary {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.refund-link {
    background: none;
    border: none;
    color: #43b0ff;
    font-size: 0.88rem;
    cursor: pointer;
    padding: 4px 2px;
}

.refund-link:hover {
    text-decoration: underline;
}

.refund-done {
    text-align: center;
    padding: 8px 0;
}

.refund-done-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: rgba(39, 174, 96, 0.15);
    border: 1px solid rgba(39, 174, 96, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #4ade80;
}

.refund-done-title {
    margin: 0 0 8px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.refund-done-sub {
    margin: 0 0 20px;
    color: #b8c0cc;
    font-size: 0.96rem;
    line-height: 1.55;
}

.refund-support {
    text-align: center;
    margin: 22px 0 0;
    font-size: 0.9rem;
    color: #8a9098;
}

.refund-support a {
    color: #43b0ff;
    text-decoration: none;
}

.refund-support a:hover {
    text-decoration: underline;
}

@media (max-width: 560px) {
    .refund-card {
        padding: 26px 20px;
    }

    .refund-title {
        font-size: 1.6rem;
    }

    .refund-step-dot {
        font-size: 0.78rem;
    }
}