* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Impact, 'Arial Black', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.manifesto-terminal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    box-shadow: 2px 0 5px rgba(255, 0, 193, .5), -2px 0 5px rgba(0, 255, 249, .5);
    mix-blend-mode: color-dodge;
    animation: chromatic-aberration-bg 4s infinite linear alternate;
    z-index: 1;
    will-change: transform, opacity;
    transform: translateZ(0);
}

@keyframes chromatic-aberration-bg {
    0% { transform: translate(1px, -1px); opacity: .8; }
    25% { transform: translate(-1px, 1px); opacity: .6; }
    50% { transform: translate(0, 1px); opacity: .9; }
    75% { transform: translate(1px, 0); opacity: .7; }
    100% { transform: translate(-1px, -1px); opacity: .8; }
}

.leaderboard-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-self: end;
}

.leaderboard-flag-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leaderboard-flag-container::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0f0;
    color: #0a0a0a;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: .9rem;
    white-space: nowrap;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease-in-out, visibility .2s ease-in-out;
}

.leaderboard-flag-container:hover::after {
    opacity: 1;
    visibility: visible;
}

.leaderboard-country-flag {
    width: 40px;
    height: 25px;
    border-radius: 2px;
    border: 1px solid rgba(0, 255, 0, .2);
}

#tsparticles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list-alternating {
    margin-top: 50px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.feature-item:nth-child(odd) .feature-image-placeholder {
    order: 1;
}

.feature-item:nth-child(odd) .feature-text-content {
    order: 2;
}

.feature-item:nth-child(even) {
    grid-template-columns: 1fr 400px;
}

.feature-item:nth-child(even) .feature-image-placeholder {
    order: 2;
    justify-self: end;
}

.feature-item:nth-child(even) .feature-text-content {
    order: 1;
    text-align: right;
}

.feature-image-placeholder {
    width: 300px;
    aspect-ratio: 16/10;
    background: rgba(0, 255, 0, .04);
    border: 2px dashed rgba(0, 255, 0, .2);
    border-radius: 8px;
    overflow: hidden;
    transition: all .3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 0, .1);
}

.feature-image-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-image-placeholder span {
    font-family: 'Courier New', Courier, monospace;
    color: rgba(0, 255, 0, .3);
    font-size: .9rem;
    font-style: italic;
}

.feature-item:hover .feature-image-placeholder {
    background: rgba(0, 255, 0, .08);
    border-color: rgba(0, 255, 0, .5);
    transform: scale(1.01);
}

.logo-scanline-wrapper {
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 4px;
}

.logo-scanline-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: repeating-linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 1px, transparent 1px, transparent 3px);
    animation: scanlines 10s linear infinite;
}

.feature-title {
    color: #0f0;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(0, 255, 0, .5);
}

.feature-description {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out .6s both;
}

.proof-section {
    padding: 120px 0;
    margin-top: 130px;
    margin-bottom: 130px;
    background: 0 0;
    position: relative;
    overflow: hidden;
}

.proof-section .manifesto-title {
    font-size: 5rem;
    margin-bottom: 30px;
}

.basic-checks-link {
    color: #a020f0;
    text-decoration: underline;
    text-decoration-color: rgba(160, 32, 240, .5);
    transition: all .3s ease;
}

.basic-checks-link:hover {
    color: #c780e8;
    text-decoration-color: #c780e8;
}

.platform-logo-img {
    height: 30px;
}

.news-headlines {
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out .8s both;
    margin-bottom: 220px;
    font-family: 'Courier New', Courier, monospace;
}

.headline-item {
    background: rgba(10, 25, 10, .5);
    border: 1px solid rgba(0, 255, 0, .3);
    border-radius: 10px;
    padding: 12px 12px;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
    will-change: transform, box-shadow;
    position: relative;
    overflow: hidden;
    width: 430px;
    box-shadow: 0 0 15px rgba(0, 255, 0, .1);
}

.headline-item::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0f0, transparent);
    animation: continuous-flash 5s linear infinite;
}

@keyframes continuous-flash {
    0% { left: -100%; }
    100% { left: 100%; }
}

.headline-item:hover::before {
    left: 100%;
}

.headline-item:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 255, 0, .6);
    box-shadow: 0 8px 25px rgba(0, 255, 0, .15);
}

.headline-text {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 8px;
    line-height: 1.5;
    font-style: normal;
    text-align: left;
    position: relative;
    padding-left: 25px;
}

.headline-text::before {
    content: '>';
    position: absolute;
    left: 0;
    top: 0;
    color: #888;
}

.headline-source {
    display: block;
    color: #27c93f;
    font-size: .9rem;
    text-align: right;
    font-weight: 400;
    letter-spacing: 0;
    margin-top: 10px;
}

.headline-source::before {
    content: '//SOURCE: ';
    color: #666;
}

.manifesto-section .section-title.manifesto-title {
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    margin: 0 auto;
    max-width: 700px;
    letter-spacing: 2px;
    margin-bottom: 0px;
    position: relative;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(32, 191, 240, .6), 0 0 10px rgba(32, 233, 240, .4), 0 0 20px rgba(255, 69, 0, .5);
    animation: glitch-skew 1s infinite linear alternate-reverse;
}

.manifesto-title::after, .manifesto-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    overflow: hidden;
}

.manifesto-title::before {
    left: 2px;
    text-shadow: -2px 0 #00ff80;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    animation: glitch-anim-1 4s infinite linear alternate-reverse;
}

.manifesto-title::after {
    left: -2px;
    text-shadow: -2px 0 #2081f0, 2px 2px #1eff00;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-skew {
    0% { transform: skewX(0); }
    100% { transform: skewX(-1deg); }
}

@keyframes glitch-anim-1 {
    0% { clip-path: polygon(0 2%, 100% 2%, 100% 33%, 0 33%); }
    50% { clip-path: polygon(0 45%, 100% 45%, 100% 65%, 0 65%); }
    100% { clip-path: polygon(0 82%, 100% 82%, 100% 95%, 0 95%); }
}

@keyframes glitch-anim-2 {
    0% { clip-path: polygon(0 67%, 100% 67%, 100% 85%, 0 85%); }
    50% { clip-path: polygon(0 40%, 100% 40%, 100% 50%, 0 50%); }
    100% { clip-path: polygon(0 15%, 100% 15%, 100% 25%, 0 25%); }
}

.manifesto-section {
    padding: 120px 0;
    margin-top: 130px;
    margin-bottom: 80px;
    background: 0 0;
    position: relative;
    overflow: hidden;
}

.manifesto-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: manifesto-pulse 8s ease-in-out infinite;
}

@keyframes manifesto-pulse {
    0%, 100% { opacity: .3; }
    50% { opacity: .6; }
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 32px;
    background: #5ebffd;
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

#user-profile-container {
    position: relative;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, .8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn .3s ease-out;
    justify-content: center;
    align-items: center;
}

.close-btn {
    color: #fff;
    font-size: 30px;
    position: absolute;
    top: 15px;
    right: 25px;
    cursor: pointer;
    transition: color .3s ease;
}

.close-btn:focus, .close-btn:hover {
    color: #a020f0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.help-section {
    padding: 120px 0;
    padding-bottom: 120px;
    background: 0 0;
    position: relative;
    overflow: hidden;
}

.platform-item.in-progress {
    background: rgba(40, 25, 25, .85);
    border-color: rgba(255, 107, 107, .4);
    box-shadow: 0 0 12px rgba(255, 82, 82, .25);
}

.status-notice {
    color: #ffbd2e;
    font-size: .9rem;
    font-weight: 700;
    display: flex;
    margin-left: 10px;
    font-family: 'Courier New', Courier, monospace;
}

.help-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    font-family: 'Courier New', Courier, monospace;
}

.spinner {
    border: 6px solid rgba(0, 255, 0, .1);
    border-top: 6px solid #0f0;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 25px rgba(0, 255, 0, .3);
}

@keyframes spin {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}

.spinner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.spinner-text {
    color: #0f0;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 0 8px rgba(0, 255, 0, .5);
    margin: 0;
}

.cancel-btn {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color .3s ease, transform .2s ease;
}

.cancel-btn:hover {
    background: rgba(255, 255, 255, .2);
}

.cancel-btn:active {
    transform: scale(.95);
}

.progress-bar-container {
    width: 80%;
    max-width: 250px;
    height: 8px;
    background-color: rgba(0, 0, 0, .5);
    border-radius: 2px;
    border: 1px solid rgba(0, 255, 0, .3);
    margin-top: 20px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: #0f0;
    border-radius: 0;
    transition: width .5s ease-out;
    box-shadow: 0 0 15px rgba(0, 255, 0, .5);
}

.price-item {
    display: flex;
    align-items: baseline;
}

.price-label {
    font-size: 1rem;
    color: #ccc;
}

.map-section {
    padding: 100px 0;
    padding-top: 150px;
    margin-bottom: 120px;
    text-align: center;
    background: #0a0a0a00;
    position: relative;
}

.leaderboard-subtitle {
    font-family: 'Courier New', Courier, monospace;
    color: #888;
    text-align: center;
    margin-bottom: 40px;
    font-style: italic;
    font-size: 1rem;
}

.leaderboard-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.leaderboard-rank {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ccc;
    width: 40px;
    flex-shrink: 0;
}

.leaderboard-item:nth-child(1) {
    background-color: rgba(167, 142, 0, .26);
    border-color: rgba(255, 217, 0, .116);
}

.leaderboard-item:nth-child(2) {
    background-color: rgba(155, 155, 155, .288);
    border-color: rgba(192, 192, 192, .13);
}

.leaderboard-item:nth-child(3) {
    background-color: rgba(139, 86, 32, .288);
    border-color: rgba(205, 128, 50, .116);
}

.leaderboard-username {
    font-weight: 600;
    color: #ccc;
    font-size: 1.1rem;
    flex-grow: 1;
}

.leaderboard-empty, .leaderboard-loading {
    color: #888;
    text-align: center;
    padding: 40px 0;
    font-size: 1rem;
    font-style: italic;
}

.cli-warning {
    color: #ffbd2e;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(255, 189, 46, .6);
}

.tabs-nav {
    display: flex;
    gap: 5px;
    border-bottom: 1px solid rgba(0, 255, 0, .3);
    margin-bottom: 25px;
    padding: 0 5px;
}

.tab-link {
    padding: 10px 20px;
    cursor: pointer;
    background: 0 0;
    transition: all .3s ease;
    font-weight: 600;
    border: 1px solid transparent;
    border-bottom: none;
    color: rgba(0, 255, 0, .6);
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: -1px;
    border-radius: 4px 4px 0 0;
}

.tab-link:hover {
    background: rgba(0, 255, 0, .1);
    color: #0f0;
}

.tab-link.active {
    background: rgba(0, 255, 0, .15);
    color: #0f0;
    border: 1px solid rgba(0, 255, 0, .4);
    border-bottom-color: transparent;
    text-shadow: 0 0 8px rgba(0, 255, 0, .7);
}

.tab-panel {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 8px;
    animation: fadeIn .4s ease;
}

.tab-panel.active {
    display: grid;
}

.platform-item {
    background: rgba(0, 255, 0, .03);
    border: 1px solid rgba(0, 255, 0, .1);
    border-radius: 4px;
    padding: 0;
    overflow: hidden;
    transition: all .3s ease;
}

.platform-item .platform-header {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.video-demo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-size: .9rem;
    padding: 0 15px 12px 15px;
    font-weight: 500;
}

.video-demo-icon {
    width: 18px;
    height: 18px;
    filter: invert(100%) sepia(100%) saturate(0) hue-rotate(288deg) brightness(102%) contrast(102%);
    opacity: .7;
}

.video-demo-link.available {
    color: #0f0;
    text-decoration: none;
    cursor: pointer;
    transition: color .3s ease;
}

.video-demo-link.available:hover {
    color: #9f9;
    text-decoration: underline;
}

.video-demo-link.unavailable {
    color: #555;
    cursor: default;
    user-select: none;
}

.dedsec-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 30px;
}

.manifesto-terminal {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #181818;
    border: 1px solid rgba(120, 255, 120, .5);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 255, 0, .2), inset 0 0 15px rgba(0, 0, 0, .5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transform: perspective(1000px) rotateY(0) rotateX(0);
    transition: transform .2s ease-out;
    z-index: 10;
    font-family: 'Courier New', Courier, monospace;
}

.manifesto-terminal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .3) 1px, transparent 1px, transparent 3px);
    animation: scanlines 15s linear infinite;
    pointer-events: none;
    z-index: 11;
}

@keyframes scanlines {
    from { background-position: 0 0; }
    to { background-position: 0 100px; }
}

.terminal-header {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .3);
    padding: 8px 12px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom: 1px solid rgba(120, 255, 120, .5);
}

.terminal-buttons {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

.t-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.t-red { background: #ff5f56; }
.t-yellow { background: #ffbd2e; }
.t-green { background: #27c93f; }

.terminal-title {
    color: #ccc;
    font-size: .9rem;
}

.blinking-cursor {
    animation: blink 1s step-end infinite;
    font-weight: 700;
}

@keyframes blink {
    50% { opacity: 0; }
}

.glitch-effect {
    animation: constant-glitch 5s linear infinite;
}

@keyframes constant-glitch {
    0%, 100% { transform: translate(0, 0); opacity: .8; }
    2% { transform: translate(-2px, 2px); }
    4% { transform: translate(2px, -2px); }
    6% { transform: translate(0, 0); }
    49% { transform: translate(0, 0); opacity: .8; }
    50% { transform: translate(3px, -1px); opacity: .6; }
    52% { transform: translate(0, 0); opacity: .8; }
    74% { transform: translate(0, 0); }
    75% { transform: translate(-3px, 1px); }
    77% { transform: translate(0, 0); }
}

@keyframes power-flicker {
    0% { opacity: 1; filter: none; }
    20% { opacity: .8; }
    22% { opacity: 1; }
    30% { opacity: .5; filter: brightness(1.8) saturate(1.5); }
    33% { opacity: 1; filter: none; }
    50% { filter: brightness(1.5) saturate(1.5); }
    52% { filter: none; }
    80% { opacity: .9; }
    100% { opacity: 1; }
}

@keyframes text-glitch-effect {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); text-shadow: -2px 0 #ff00c1; }
    40% { transform: translate(3px, -3px); text-shadow: -2px 0 #00fff9; }
    60% { transform: translate(-3px, -3px); text-shadow: 2px 2px #ff00c1; }
    80% { transform: translate(3px, 3px); text-shadow: 2px 0 #00fff9; }
    100% { transform: translate(0); }
}

@keyframes line-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes text-flicker {
    0%, 100% { opacity: 0.95; }
    50% { opacity: 1; }
}

.terminal-body {
    height: 550px;
    overflow-y: auto;
    padding: 20px 25px;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.terminal-body::-webkit-scrollbar {
    width: 8px;
}

.terminal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, .2);
    border-radius: 0;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: rgba(120, 255, 120, .4);
    border-radius: 0;
}

.terminal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(120, 255, 120, .6);
}

.terminal-line {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 0 3px #7fff7f, 0 0 6px rgba(127, 255, 127, .4);
    animation: line-fade-in .5s forwards, text-flicker 3s infinite alternate;
    color: #7fff7f;
}

.terminal-line .prompt {
    color: #888;
    margin-right: 10px;
}

.terminal-line .highlight-code {
    color: #ffbd2e;
    font-style: normal;
    text-shadow: 0 0 5px #ffbd2e;
    font-weight: 700;
}

.terminal-line.special-line {
    margin-top: 10px;
    font-size: 1.5rem !important;
    font-weight: 700;
    color: #27c93f;
    text-shadow: 0 0 8px #27c93f;
}

.terminal-art {
    color: #ccc;
    font-family: 'Courier New', Courier, monospace;
    font-size: 8px;
    line-height: .9;
    margin-bottom: 15px;
}

.features-section {
    margin-bottom: 250px;
}

.features-section .manifesto-title {
    font-size: 5rem;
    margin-bottom: 30px;
}

.hacker-features-container {
    max-width: 1050px;
    margin: 0 auto;
    background: rgba(10, 25, 10, .5);
    border: 1px solid rgba(0, 255, 0, .3);
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0, 255, 0, .15), inset 0 0 15px rgba(0, 0, 0, .4);
    font-family: 'Courier New', Courier, monospace;
    position: relative;
    overflow: hidden;
}

.hacker-features-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background: repeating-linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 1px, transparent 1px, transparent 3px);
    pointer-events: none;
    z-index: 1;
    animation: scanlines-optimized 10s linear infinite;
    will-change: transform;
}

@keyframes scanlines-optimized {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.features-tabs {
    display: flex;
    background: rgba(0, 0, 0, .3);
    border-bottom: 1px solid rgba(0, 255, 0, .3);
    padding: 5px;
}

.features-tab {
    background: 0 0;
    border: 1px solid transparent;
    color: rgba(0, 255, 0, .6);
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    padding: 10px 20px;
    cursor: pointer;
    transition: all .3s ease;
    text-transform: uppercase;
}

.features-tab:hover {
    background: rgba(0, 255, 0, .1);
    color: #0f0;
}

.features-tab.active {
    background: rgba(0, 255, 0, .15);
    color: #0f0;
    border: 1px solid rgba(0, 255, 0, .4);
    text-shadow: 0 0 8px rgba(0, 255, 0, .7);
}

.features-panels {
    padding: 0 35px;
}

.feature-panel {
    display: none;
    animation: fadeIn .5s ease-in-out;
}

.feature-panel.active {
    display: block;
}

.panel-title {
    color: #27c93f;
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(39, 201, 63, .6);
    position: relative;
}

.panel-title::after, .panel-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 0 0;
    overflow: hidden;
    clip-path: inset(50% 0 50% 0);
}

.panel-title:hover::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    animation: text-glitch-effect 1.5s infinite linear alternate-reverse;
}

.panel-title:hover::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9, 1px 1px #ff00c1;
    animation: text-glitch-effect 2s infinite linear alternate-reverse;
}

.panel-subtitle {
    color: #888;
    font-size: 1rem;
    margin-bottom: 30px;
    font-style: italic;
}

.cli-prompt {
    color: #666;
    margin-right: 10px;
}

.cli-status {
    color: #0f0;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(0, 255, 0, .5);
}

.cli-comment {
    color: #747474;
    font-style: italic;
}

.cli-highlight {
    color: #0ff;
    text-shadow: 0 0 5px rgba(0, 255, 255, .5);
}

.cli-free {
    color: #34d399;
    font-weight: 700;
}

@keyframes pulse-red {
    0%, 100% { text-shadow: 0 0 8px rgba(255, 69, 0, .7); }
    50% { text-shadow: 0 0 16px rgba(255, 69, 0, 1); }
}

.tabs-nav .tab-link[data-tab=evadus].active,
.tabs-nav .tab-link[data-tab=lite].active,
.tabs-nav .tab-link[data-tab=plus].active {
    background: rgba(0, 255, 0, .15);
    border-color: rgba(0, 255, 0, .4);
    border-bottom-color: transparent;
    color: #0f0;
    box-shadow: none;
}

.platform-item:hover {
    background: rgba(0, 255, 0, .1);
    border-color: rgba(0, 255, 0, .4);
    transform: none;
    box-shadow: none;
}

.platform-name {
    color: #0f0;
    font-size: 1.1rem;
}

.platform-logo {
    border-radius: 4px;
}

.map-section .manifesto-title {
    font-size: 5rem;
    margin-bottom: 20px;
}

.leaderboard-container {
    max-width: 950px;
    margin: 0 auto;
    background: rgba(10, 25, 10, .5);
    border: 1px solid rgba(0, 255, 0, .3);
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0, 255, 0, .15), inset 0 0 15px rgba(0, 0, 0, .4);
    font-family: 'Courier New', Courier, monospace;
    position: relative;
    padding: 0 0;
}

.leaderboard-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 1px, transparent 1px, transparent 3px);
    animation: scanlines 10s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.leaderboard-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 25px;
    padding: 15px 15px;
    border-bottom: 1px solid rgba(0, 255, 0, .1);
    transition: background-color .3s ease;
}

.leaderboard-item:last-child {
    border-bottom: none;
}

.leaderboard-item:hover {
    background-color: rgba(0, 255, 0, .1);
    transform: none;
}

.leaderboard-username .cli-label {
    color: #666;
    margin-right: 8px;
    font-size: .9rem;
}

.leaderboard-xp {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f0;
    text-shadow: 0 0 8px rgba(0, 255, 0, .5);
    justify-self: end;
}

.plan-select-btn {
    background: 0 0;
    border: 1px solid;
    color: #ccc;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    padding: 12px 20px;
    cursor: pointer;
    transition: all .3s ease;
    text-transform: uppercase;
    margin-top: auto;
}

.help-section .manifesto-title {
    font-size: 5rem;
    margin-bottom: 20px;
}

.hacker-help-container {
    max-width: 950px;
    margin: 40px auto 0;
    background: rgba(10, 25, 10, .5);
    border: 1px solid rgba(0, 255, 0, .3);
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0, 255, 0, .15), inset 0 0 15px rgba(0, 0, 0, .4);
    position: relative;
    overflow: hidden;
    padding: 30px 35px;
    padding-bottom: 15px;
}

.hacker-help-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 1px, transparent 1px, transparent 3px);
    animation: scanlines 10s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.help-terminal-header {
    margin-bottom: 20px;
}

.faq-header {
    border-top: 1px solid rgba(0, 255, 0, .2);
    padding-top: 30px;
}

.community-links-cli {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
}

.community-links-cli li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cli-link, .community-links-cli a {
    color: #0f0;
    text-decoration: none;
    transition: all .3s ease;
}

.cli-link:hover, .community-links-cli a:hover {
    color: #9f9;
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(0, 255, 0, .5);
}

.faq-list {
    max-width: none;
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
}

.faq-item {
    background: 0 0;
    border: none;
    border-bottom: 1px solid rgba(0, 255, 0, .1);
    border-radius: 0;
    padding-top: 15px;
    transition: none;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item.open, .faq-item:hover {
    background: 0 0;
    border-color: rgba(0, 255, 0, .1);
}

.faq-item.open {
    background: rgba(0, 255, 0, .05);
}

.faq-question {
    background: 0 0;
    padding: 0;
    position: relative;
    cursor: pointer;
}

.faq-question:hover {
    background: 0 0;
}

.faq-question::before {
    content: '>';
    color: #888;
    margin-right: 15px;
    font-size: 1.1rem;
    transition: color .3s ease;
}

.faq-item.open .faq-question::before {
    color: #0f0;
}

.faq-question h4 {
    display: inline;
    color: #ccc;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color .3s ease;
}

.faq-item.open .faq-question h4, .faq-question:hover h4 {
    color: #0f0;
}

.faq-toggle {
    display: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .4s ease;
    padding: 0 30px;
    margin-top: 10px;
    border-left: 1px solid rgba(0, 255, 0, .2);
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 15px 0 15px 25px;
}

.faq-answer p {
    color: #999;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.faq-answer a.basic-checks-link {
    color: #0f0;
    text-decoration: none;
}

.faq-answer a.basic-checks-link:hover {
    text-decoration: underline;
    color: #9f9;
}

.faq-answer strong {
    color: #27c93f;
    text-shadow: 0 0 5px rgba(39, 201, 63, .5);
}

.hero {
    padding-top: 160px;
    padding-bottom: 40px;
}

.hacker-subtitle {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
    animation: fadeInUp 1s ease-out .4s both;
}

.hacker-cta-btn {
    background: 0 0;
    border: 1px solid rgba(0, 255, 0, .4);
    color: rgba(0, 255, 0, .7);
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all .3s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hacker-cta-btn:hover {
    background: rgba(0, 255, 0, .1);
    color: #0f0;
    border-color: #0f0;
    text-shadow: 0 0 8px rgba(0, 255, 0, .7);
    box-shadow: 0 0 20px rgba(0, 255, 0, .2);
    transform: translateY(-3px);
}

.hacker-cta-btn .btn-logo-svg {
    height: 20px;
    filter: grayscale(1) brightness(3) contrast(1.5);
    opacity: .8;
}

.hacker-cta-btn:hover .btn-logo-svg {
    opacity: 1;
}

@keyframes gradient-pan {
    0% { background-position: 0 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0 50%; }
}

#ascii-hero {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.6vw;
    line-height: .9em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(120deg, #0f0, #0ff, #a020f0, #0f0);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-pan 8s linear infinite, fadeInUp 1s ease-out .2s both;
}

.header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    margin-top: 17px;
    width: 1100px;
    background: rgba(10, 25, 10, 0);
    backdrop-filter: blur(6px);
    padding: 8px 0;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 0, .3);
    box-shadow: 0 0 25px rgba(0, 255, 0, .15), inset 0 0 10px rgba(0, 0, 0, .5);
    transition: all .3s ease;
}

.logo-image {
    max-width: 70%;
    border-radius: 4px;
    object-fit: contain;
    transition: all .3s ease;
}

.logo-circle {
    width: 33px;
    height: 33px;
    background: rgba(0, 0, 0, .3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, .5);
    position: relative;
    overflow: hidden;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.logo-circle:hover {
    transform: scale(1.05);
}

.nav-link {
    font-family: 'Courier New', Courier, monospace;
    text-transform: uppercase;
    color: rgba(0, 255, 0, .7);
    text-decoration: none;
    font-size: 15px;
    position: relative;
    padding: 8px 1px;
    border-radius: 4px;
    transition: all .3s ease;
}

.nav-link::after, .nav-link::before {
    color: rgba(0, 255, 0, .4);
    transition: color .3s ease;
}

.nav-link::before {
    content: '[';
    margin-right: 6px;
}

.nav-link::after {
    content: ']';
    margin-left: 6px;
}

.nav-link:hover {
    background: rgba(0, 255, 0, .1);
    color: #0f0;
    text-shadow: 0 0 8px rgba(0, 255, 0, .7);
}

.nav-link:hover::after, .nav-link:hover::before {
    color: #0f0;
}

.login-btn, .signup-btn {
    font-family: 'Courier New', Courier, monospace;
    text-transform: uppercase;
    font-size: 16px;
    cursor: pointer;
    padding: 5px 20px;
    border-radius: 4px;
    transition: all .3s ease;
}

.login-btn {
    background: 0 0;
    border: 1px solid rgba(0, 255, 0, .4);
    color: rgba(0, 255, 0, .7);
}

.login-btn:hover {
    background-color: rgba(0, 255, 0, .1);
    color: #0f0;
    border-color: rgba(0, 255, 0, .7);
}

.modal-content.hacker-modal-content {
    max-width: 600px;
    background: rgba(10, 25, 10, .9);
    border: 1px solid rgba(0, 255, 0, .3);
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0, 255, 0, .15), inset 0 0 15px rgba(0, 0, 0, .4);
    font-family: 'Courier New', Courier, monospace;
    padding: 0;
    animation: slideIn .4s cubic-bezier(.25, .46, .45, .94);
    position: relative;
    overflow: hidden;
}

.hacker-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 1px, transparent 1px, transparent 3px);
    animation: scanlines 10s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.hacker-modal-body {
    padding: 30px 35px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hacker-modal-content .close-btn {
    top: 15px;
    right: 20px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 2rem;
    font-weight: 300;
    color: rgba(0, 255, 0, .4);
    z-index: 15;
}

.hacker-modal-content .close-btn:hover {
    color: #ff5f56;
}

.hacker-modal-logo {
    height: 50px;
    margin-bottom: 25px;
    filter: grayscale(1) brightness(3) contrast(1.5) drop-shadow(0 0 8px rgba(0, 255, 0, .3));
}

.hacker-modal-body .panel-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hacker-modal-text {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
}

.hacker-modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.hacker-modal-btn {
    background: 0 0;
    border: 1px solid rgba(0, 255, 0, .4);
    color: rgba(0, 255, 0, .7);
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s ease;
}

.hacker-modal-btn:hover {
    background: rgba(0, 255, 0, .1);
    color: #0f0;
    border-color: #0f0;
    text-shadow: 0 0 8px rgba(0, 255, 0, .7);
}

.hacker-modal-btn.confirm-btn {
    background: rgba(0, 255, 0, .15);
    color: #0f0;
    border: 1px solid rgba(0, 255, 0, .4);
    box-shadow: 0 0 10px rgba(0, 255, 0, .3);
}

.hacker-modal-btn.confirm-btn:hover {
    background: rgba(0, 255, 0, .3);
    border-color: #0f0;
    box-shadow: 0 0 15px rgba(0, 255, 0, .5);
}

.hacker-modal-btn.cancel-btn {
    border-color: rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .4);
}

.hacker-modal-btn.cancel-btn:hover {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .4);
    color: #ccc;
}

#loading-overlay .cancel-btn {
    padding: 10px 20px;
    margin-top: 15px;
    border-color: rgba(255, 95, 86, .4);
    color: rgba(255, 95, 86, .7);
}

#loading-overlay .cancel-btn:hover {
    background: rgba(255, 95, 86, .1);
    border-color: #ff5f56;
    color: #ff5f56;
    text-shadow: 0 0 8px rgba(255, 95, 86, .7);
}

#renewal-modal .hacker-modal-text {
    text-align: left;
}

.modal-buttons .cancel-btn {
    background: 0 0;
    border: none;
    box-shadow: none;
}

.user-photo {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 0, .3);
    transition: all .3s ease;
    align-items: center;
}

#user-profile-container:hover .user-photo {
    box-shadow: 0 0 15px rgba(0, 255, 0, .5);
    border-color: rgba(0, 255, 0, .7);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 55px;
    right: 0;
    width: 180px;
    background: rgba(10, 25, 10, .9);
    border: 1px solid rgba(0, 255, 0, .3);
    border-radius: 4px;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 255, 0, .15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
    animation: fadeIn .2s ease-out;
}

.dropdown-menu a, .dropdown-menu button {
    display: block;
    width: 100%;
    padding: 12px 20px;
    text-align: left;
    color: rgba(0, 255, 0, .7);
    text-decoration: none;
    background: 0 0;
    border: none;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
    font-size: 15px;
    text-transform: uppercase;
    transition: all .2s ease-in-out;
    position: relative;
}

.dropdown-menu a::before, .dropdown-menu button::before {
    content: '>';
    position: absolute;
    left: 8px;
    top: 12px;
    color: rgba(0, 255, 0, .4);
    transition: all .2s ease-in-out;
}

.dropdown-menu a:hover, .dropdown-menu button:hover {
    background-color: rgba(0, 255, 0, .1);
    color: #0f0;
    text-shadow: 0 0 8px rgba(0, 255, 0, .7);
    padding-left: 25px;
}

.dropdown-menu a:hover::before, .dropdown-menu button:hover::before {
    color: #0f0;
    left: 13px;
}

.social-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.plan-option.interactive[data-tooltip] {
    position: relative;
}

.plan-option.interactive[data-tooltip]::after, .plan-option.interactive[data-tooltip]::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 10px);
    left: calc(80% + 10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease-in-out, visibility .2s ease-in-out;
    z-index: 10;
}

.plan-option.interactive[data-tooltip]::before {
    content: attr(data-tooltip);
    width: 230px;
    background: #0a190a;
    color: #8f8;
    font-family: 'Courier New', Courier, monospace;
    font-size: .8rem;
    line-height: 1.2;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 0, .4);
    box-shadow: 0 0 70px #111;
}

.plan-option.interactive[data-tooltip]::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(0, 255, 0, .4);
    top: calc(100% + 2px);
}

.plan-option.interactive[data-tooltip]:hover::after, .plan-option.interactive[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
}

.pricing-section-new {
    padding: 120px 0;
    padding-bottom: 0px;
    background-color: transparent;
    font-family: 'Courier New', Courier, monospace;
    margin-bottom: 120px;
}

.pricing-section-new .manifesto-title {
    font-size: 5rem;
    margin-bottom: 30px;
    font-family: Impact, 'Arial Black', sans-serif;
}

.section-title-new {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle-new {
    font-size: 1.125rem;
    color: #a0a0a0;
    text-align: center;
    margin-bottom: 40px;
}

.plan-button-new:disabled {
    background-color: #333 !important;
    color: #888 !important;
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none !important;
}

.plan-button-new:disabled:hover {
    background-color: #333 !important;
    color: #888 !important;
    box-shadow: none !important;
    transform: none;
}

.plan-cta-new {
    position: relative;
    margin-top: 0px;
}

.plan-cta-new[data-tooltip]::before,
.plan-cta-new[data-tooltip]::after {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    z-index: 10;
}

.plan-cta-new[data-tooltip]::after {
    content: '';
    bottom: calc(100% + 4px);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(255, 189, 46, .4);
}

.plan-cta-new[data-tooltip]::before {
    content: attr(data-tooltip);
    bottom: calc(100% + 12px);
    width: 280px;
    background: #0a190a;
    color: #ffbd2e;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 189, 46, .4);
    box-shadow: 0 0 15px rgba(0, 0, 0, .5);
    text-align: left;
    white-space: pre-wrap;
}

.plan-cta-new:hover[data-tooltip]::before,
.plan-cta-new:hover[data-tooltip]::after {
    opacity: 1;
    visibility: visible;
}

.plan-cta-new[data-tooltip-type="info"]::before {
    color: rgb(136, 241, 255);
    border-color: rgba(0, 89, 255, 0.4);
}

.plan-cta-new[data-tooltip-type="info"]::after {
    border-top-color: rgba(0, 195, 255, 0.4);
}

.pricing-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1150px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card-new {
    position: relative;
    background-color: #1a1a1a8c;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 30px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
}

.pricing-card-new:hover {
    transform: translateY(-5px);
    border-color: #555;
    z-index: 10;
}

.bf-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #000000;
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 12px;
    border: 1px solid #fff;
    box-shadow: 0 0 20px rgb(255, 255, 255);
    z-index: 20;
    transform: rotate(2deg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: badge-pulse 3s infinite ease-in-out;
}

.bf-badge::before { content: '[ '; }
.bf-badge::after { content: ' ]'; }

@keyframes badge-pulse {
    0% { transform: rotate(2deg) scale(1); box-shadow: 0 0 15px rgba(188, 42, 255, 0.4); }
    50% { transform: rotate(2deg) scale(1.05); box-shadow: 0 0 25px rgba(188, 42, 255, 0.4); }
    100% { transform: rotate(2deg) scale(1); box-shadow: 0 0 15px rgba(188, 42, 255, 0.4); }
}

.pricing-card-new.featured {
    border: 2px solid #a020f0;
    box-shadow: 0 0 25px rgba(160, 32, 240, .2);
}

.pricing-card-header {
    position: relative;
    min-height: 100px;
}

#standard-plan-btn {
    background-color: #5ebffd;
    color: #0a0a0a;
    box-shadow: 0 0 15px rgba(94, 191, 253, .3);
}

#standard-plan-btn:hover {
    background-color: #3992c9;
    color: #0a0a0a;
    box-shadow: 0 0 20px rgba(255, 255, 255, .3);
}

#pro-plan-btn {
    background-color: #b33ae2;
    color: #fff;
    box-shadow: 0 0 15px rgba(160, 32, 240, .3);
}

#pro-plan-btn:hover {
    background-color: #9b2cb1;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, .3);
}

.plan-title-new {
    font-size: 1.5rem;
    font-weight: 600;
    color: #eee;
}

.plan-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.plan-icon-new {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.plan-price-new {
    transition: opacity .3s ease-in-out, transform .3s ease-in-out;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.plan-price-new.fading {
    opacity: 0;
    transform: translateY(10px);
}

.price-per-month {
    font-size: 1rem;
    font-weight: 400;
    color: #a0a0a0;
}

.plan-button-new {
    width: 100%;
    padding: 4px !important;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all .3s ease;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.plan-button-new.free-btn {
    background-color: #333;
    color: #fff;
}

.plan-button-new.free-btn:hover {
    background-color: #444;
}

.plan-button-new.interactive {
    background-color: #0f0;
    color: #0a0a0a;
    box-shadow: 0 0 15px rgba(0, 255, 0, .3);
}

.plan-button-new.interactive:hover {
    background-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, .3);
}

.plan-button-new.crypto-btn {
    background-color: #272410;
    color: #000000;
    box-shadow: 0 0 15px rgb(255, 140, 0);
    gap: 0;
}

.plan-button-new.crypto-btn:hover {
    background-color: #3b2e14;
    box-shadow: 0 0 20px rgba(247, 147, 26, .5);
}

.plan-button-new.crypto-btn .plan-btn-logo {
    height: 20px;
    width: 20px;
}

.plan-button-new.paypal-btn {
    background-color: #ffffff;
    box-shadow: 0 0 15px rgb(0, 89, 255);
}

.plan-button-new.paypal-btn:hover {
    background-color: #caddff;
    box-shadow: 0 0 20px rgba(0, 112, 186, .5);
}

.plan-button-new.payfast-btn {
    background-color: #e7fbff !important;
    box-shadow: 0 0 15px rgba(31, 191, 178, 0.3) !important;
}

.plan-button-new.payfast-btn:hover {
    background-color: #d7f3fa !important;
    box-shadow: 0 0 20px rgba(31, 191, 191, 0.5) !important;
}

.payment-logo {
    max-height: 28px;
    max-width: 100%;
    object-fit: contain;
    pointer-events: none;
}

.plan-description-new {
    color: #a0a0a0;
    font-size: .9rem;
    margin-bottom: 10px;
    padding-top: 20px;
    min-height: 40px;
}

.plan-features-new {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgb(70, 70, 70);
    padding-top: 18px;
    gap: 16px;
}

.plan-features-new li {
    display: flex;
    align-items: center;
    font-size: .95rem;
    color: #ccc;
    position: relative;
}

.checkmark-icon {
    width: 20px;
    height: 20px;
    color: rgb(0, 247, 255);
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-tooltip-trigger {
    display: inline-block;
    margin-left: 8px;
    color: #888;
    font-weight: 700;
    position: relative;
    font-family: 'Courier New', Courier, monospace;
}

.feature-tooltip-trigger:hover {
    color: rgb(0, 238, 255);
}

.feature-tooltip-trigger[data-tooltip]::before,
.feature-tooltip-trigger[data-tooltip]::after {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    z-index: 1001;
}

.feature-tooltip-trigger[data-tooltip]::before {
    content: attr(data-tooltip);
    bottom: calc(100% + 12px);
    width: 280px;
    background: #0a190a;
    color: rgb(136, 241, 255);
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid rgba(0, 89, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 0, 0, .5);
    text-align: left;
    white-space: pre-wrap;
}

.feature-tooltip-trigger[data-tooltip]::after {
    content: '';
    bottom: calc(100% + 4px);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(0, 195, 255, 0.4);
}

.feature-tooltip-trigger:hover[data-tooltip]::before,
.feature-tooltip-trigger:hover[data-tooltip]::after {
    opacity: 1;
    visibility: visible;
}

.plan-buttons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

#agreement-content p {
    margin-bottom: 1.2em;
}

#agreement-content h1, 
#agreement-content h2, 
#agreement-content h3 {
    margin-top: 1.8em;
    margin-bottom: 0.8em;
    color: #00ff00;
}

#agreement-content ul, 
#agreement-content ol {
    margin-bottom: 1.2em;
    padding-left: 1.5em;
}

#agreement-content li {
    margin-bottom: 0.4em;
}

.pricing-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
    padding: 15px 25px;
    background: rgba(10, 25, 10, 0.5);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    font-family: 'Courier New', Courier, monospace;
    color: #ccc;
    font-size: 0.95rem;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.05);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-tag {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    margin-left: auto;
    padding-left: 10px;
}

.tag-ec { color: #5ebffd; text-shadow: 0 0 5px rgba(94, 191, 253, 0.4); } 
.tag-ep { color: #ce53ff; text-shadow: 0 0 5px rgba(206, 83, 255, 0.4); }  
.tag-el { color: #0f0; text-shadow: 0 0 5px rgba(0, 255, 0, 0.4); }       
.tag-u  { color: #ffbd2e; text-shadow: 0 0 5px rgba(255, 189, 46, 0.4); }

html {
    scroll-behavior: smooth;
}

.error-shake {
    animation: shake 0.4s cubic-bezier(.36, .07, .19, .97) both;
}

@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

#map-inner-wrapper {
    transform-origin: 0 0;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.map-container {
    user-select: none;
    -webkit-user-drag: none;
}

#map-inner-wrapper img {
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}