/* Existing styles... */
body {
    margin: 0;
    background: #0f0f10;
    font-family: 'Inter', sans-serif;
    color: #ccc;
    /* Full-page centering */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* This is the container for the main content (Logo, buttons) */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    padding: 20px;
}

/* --- New Styles for Fade Transition and Layout --- */

/* Base class for elements that should fade */
.fade-element {
    transition: opacity 0.5s ease; /* Controls the fade duration */
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    position: absolute; /* Ensures both can occupy the same space */
}

/* Class to apply when the element should be hidden/faded out */
.hidden-fade {
    opacity: 0;
    pointer-events: none; /* Prevents interaction while hidden */
}

/* Pricing Plans Styles */
#pricing-plans {
    display: none; /* Start hidden, overridden by JS when fading in */
}

.pricing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
}

.pricing-header {
    font-size: 32px;
    color: #fff;
    margin-bottom: 0;
}

.pricing-subtext {
    max-width: 600px;
    font-size: 16px;
    color: #b3b3b3;
    text-align: center;
    margin-top: 0;
}

.plans-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.plan-card {
    background: rgba(30, 30, 30, 0);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 20px;
    width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.plan-card h3 {
    font-size: 24px;
    color: #fff;
    margin-top: 0;
    margin-bottom: -6px;
}

.tagline {
    font-size: 14px;
    color: #757575;
    margin-bottom: 15px;
}

.price {
    font-size: 15px;
    color: #757575;
    margin: 10px 0 20px 0;
    line-height: 1.2;
}

.price strong {
    color: #fff;
    font-size: 30px;
}

.purchase-btn {
    background: rgba(30, 30, 30, 0);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 10px 15px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
}

.purchase-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1; /* Pushes button and price up */
}

.features-list li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #ccc;
}

.features-list i {
    color: #b28af8;
    margin-right: 8px;
}

.terms-link {
    font-size: 12px;
    color: #6f6f6f;
    margin-bottom: 10px;
}

.terms-link a {
    color: #b28af8;
    text-decoration: none;
}

.terms-link a:hover {
    text-decoration: underline;
}

.go-back-btn {
    background: rgba(50, 50, 50, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.go-back-btn:hover {
    background: rgba(70, 70, 70, 0.7);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Add media query for responsiveness */
@media (max-width: 1000px) {
    .plans-row {
        flex-direction: column;
        align-items: center;
    }
    .plan-card {
        width: 80%;
        max-width: 400px;
    }
}


/* Existing styles continued... */
.Logo {
    /* ...existing styles... */
    width: 160px;
    height: auto;
    animation: pulseGlow 3.5s infinite ease-in-out;
    filter: drop-shadow(0 0 8px rgba(165, 95, 255, 0.35));
    transition: transform 0.3s ease, filter 0.3s ease;
    color: #b28af8;
}

/* ...rest of your existing styles... */
.Logo:hover {
    transform: scale(1.06);
    filter: drop-shadow(0 0 14px rgba(195, 130, 255, 0.55));
}

@keyframes pulseGlow {
    /* ...existing keyframes... */
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 6px rgba(150, 70, 255, 0.25));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 9px rgba(190, 120, 255, 0.55));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 6px rgba(150, 70, 255, 0.25));
    }
}

.subtext {
    max-width: 480px;
    font-size: 14px;
    color: #b3b3b3;
}

.btn-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 12px 0;
}

.btn-purple,
.icon-btn {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-purple {
    background: linear-gradient(50deg, #b28af8, #845ff4);
    padding: 12px 24px;
    gap: 10px;
    font-size: 16px;
    width: 50px;
    height: 50px;
}

.btn-purple:hover {
    background: linear-gradient(50deg, #c5a4ff, #9068ff);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.btn-purple[data-tooltip],
.icon-btn[data-tooltip] {
    position: relative;
}

/* Tooltip text */
.btn-purple[data-tooltip]::after,
.icon-btn[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease-in-out;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
}

/* lil arrow */
.btn-purple[data-tooltip]::before,
.icon-btn[data-tooltip]::before {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(30, 30, 30, 0.8) transparent transparent transparent;
    opacity: 0;
    transition: 0.25s ease-in-out;
}

/* Show tooltip on hover */
.btn-purple[data-tooltip]:hover::after,
.icon-btn[data-tooltip]:hover::after,
.btn-purple[data-tooltip]:hover::before,
.icon-btn[data-tooltip]:hover::before {
    opacity: 1;
}

.icon-btn {
    background: rgba(50, 50, 50, 0.25);
    padding: 12px;
    font-size: 20px;
    width: 50px;
    height: 50px;
}

.icon-btn:hover {
    background: rgba(50, 50, 50, 0.45);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.footer {
    max-width: 500px;
    font-size: 12px;
    color: #6f6f6f;
}

.footer a {
    color: #6B3DF9;
    text-decoration: underline;
}

.error-message {
    margin-top: 10px;
    padding-left: 2px;
}

#messageBox {
    position: fixed;
    top: -60px;
    /* start hidden above screen */
    left: 50%;
    transform: translateX(-50%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: linear-gradient(50deg, #b28af85e, #845ff4);
    padding: 12px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: top 0.5s ease, opacity 0.4s ease;
    opacity: 0;
    z-index: 9999;
}

/* When active */
#messageBox.show {
    top: 20px;
    /* slides in */
    opacity: 1;
}

.domain-section {
    max-width: 900px;
    width: 100%;
    margin-top: 60px;
}

.section-title {
    font-size: 26px;
    color: #fff;
    margin-top: 35px;
    margin-bottom: 10px;
}

.section-text {
    color: #b3b3b3;
    font-size: 15px;
    line-height: 1.6;
}

.warning-box {
    background: rgba(255, 0, 0, 0.08);
    border: 1px solid rgba(255, 0, 0, 0.25);
    padding: 15px;
    border-radius: 6px;
    margin: 18px 0;
    color: #ffe0e0;
    font-size: 14px;
}

.scam-list {
    margin-top: 12px;
    font-size: 14px;
    color: #ccc;
    padding-left: 18px;
}

.scam-list li {
    margin-bottom: 8px;
}

.terms-warning {
    margin-top: 25px;
    background: rgba(255, 0, 0, 0.08);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ffdcdc;
}

.terms-warning ul {
    margin-top: 12px;
    padding-left: 20px;
}

.terms-warning ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.terms-footer {
    margin-top: 12px;
    font-size: 12px;
    color: #ff9999;
    font-style: italic;
}

.fade-inline {
  transition: opacity 0.5s ease;
  opacity: 1;
  /* keep normal flow: don't force display/position/height */
}

/* hidden state */
.hidden-fade-inline {
  opacity: 0;
  pointer-events: none;
  /* don't change display or layout here */
}