/* ==========================================================================
   Base & Variables (Cyber/Glassmorphism Theme)
   ========================================================================== */
:root {
    --bg-dark: #ffffff;
    --bg-panel: #777777;
    --border-glass: rgba(255, 255, 255, 0.08);
    --text-main: #000000;
    --text-dim: #000000;
    --neon-blue: #00f0ff;
    --neon-purple: #b026ff;
    --neon-green: #00ff66;
    --neon-red: #ff3366;
    --neon-yellow: #ffcc00;
    --font-sans: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --shadow-neon: 0 0 15px rgba(0, 240, 255, 0.2);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --radius-lg: 16px;
    --radius-md: 8px;
    --radius-sm: 4px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffc8c817;
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Grid Effect */
.background-grid,
.checkout-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: 40px 40px;
    background-image: url(../images/abstrack-bg.png);
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background: #ffffff;
}

.checkout-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(176, 38, 255, 0.15) 0%, transparent 60%);
}

.background-grid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
}

/* Typography & Utilities */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.neon-text {
    color: #00fff5;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

.dim {
    color: var(--text-dim);
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.req {
    color: var(--neon-red);
}

/* ==========================================================================
   Layout (Dashboard)
   ========================================================================== */
.app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.top-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    text-align: center;
    background: rgb(123 123 133 / 60%);
    backdrop-filter: blur(12px);
    margin-bottom: 2rem;
    border: 10px solid;
    border-image-slice: 1;
    border-width: 2px;
    border-image-source: -webkit-linear-gradient(left, rgb(229 229 229) 0%, rgb(1 252 242) 50%, rgb(16 203 196 / 98%) 100%);
}

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background-color: #000000;
        color: var(--text-main);
        font-family: var(--font-sans);
        line-height: 1.6;
        min-height: 100vh;
        overflow-x: hidden;
    }

    /* Background Grid Effect */
    .background-grid,
    .checkout-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-size: 40px 40px;
        background-image: url(../images/abstrack-bg.png);
        z-index: -1;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
    }

    .checkout-bg:: after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 0%, rgba(176, 38, 255, 0.15) 0%, transparent 60%);
    }

    .background-grid:: after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    }

    /* Typography & Utilities */
    h1,
    h2,
    h3,
    h4 {
        font-weight: 600;
        letter-spacing: -0.02em;
    }

    .neon-text {
        color: #00fff5;
        text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
    }

    .dim {
        color: var(--text-dim);
    }

    .mt-4 {
        margin-top: 1rem;
    }

    .mt-6 {
        margin-top: 1.5rem;
    }

    .req {
        color: var(--neon-red);
    }

    /* ==========================================================================
   Layout (Dashboard)
   ========================================================================== */
    .app-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem;
    }

    .top-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem 2rem;
        text-align: center;
        background: rgb(123 123 133 / 60%);
        backdrop-filter: blur(12px);
        border: 1px solid rgb(255 255 255 / 60%);
        border-radius: var(--radius-lg);
        margin-bottom: 2rem;
    }

    .logo {
        font-family: var(--font-mono);
        font-size: 1.2rem;
        font-weight: 700;
    }

    .nav-links a {
        color: var(--text-dim);
        text-decoration: none;
        margin: 0 1rem;
        font-size: 0.95rem;
        transition: var(--transition);
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--text-main);
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    }

    .avatar {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        font-weight: 600;
    }

    /* Glass Panels */
    .glass-panel {
        background: rgb(123 123 133 / 60%);
        backdrop-filter: blur(16px);
        border: 1px solid rgb(0 255 245);
        border-radius: var(--radius-lg);
        padding: 2.5rem;
        box-shadow: var(--shadow-glass);
        animation: fadeUp 0.6s ease-out;
    }

    .panel-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        border-bottom: 1px solid var(--border-glass);
        padding-bottom: 1rem;
    }

    .status-badge {
        background: rgb(0 240 255 / 0%);
        color: #ffffff;
        padding: 0.4rem 1rem;
        border-radius: 20px;
        font-size: 0.85rem;
        font-family: var(--font-mono);
        border: 1px solid rgb(255 255 255 / 93%);
    }

    /* ==========================================================================
   Forms & Inputs
   ========================================================================== */
    .cyber-form .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .input-group {
        margin-bottom: 1.5rem;
        display: flex;
        flex-direction: column;
    }

    .input-group label {
        font-size: 0.85rem;
        color: var(--text-dim);
        margin-bottom: 0.5rem;
        font-family: var(--font-mono);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .cyber-form input,
    .cyber-form select,
    .cyber-form textarea {
        background: rgb(0 0 0 / 5%);
        border: 1px solid rgb(213 213 213 / 52%);
        color: var(--text-main);
        padding: 0.8rem 1rem;
        border-radius: var(--radius-md);
        font-family: var(--font-sans);
        font-size: 1rem;
        transition: var(--transition);
        outline: none;
    }

    .cyber-form input:focus,
    .cyber-form select:focus,
    .cyber-form textarea:focus {
        border-color: var(--neon-blue);
        box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
        background: rgba(0, 240, 255, 0.02);
    }

    .cyber-form select option {
        background: var(--bg-dark);
        color: var(--text-main);
    }

    .helper-text {
        font-size: 0.75rem;
        color: var(--text-dim);
        margin-top: 0.3rem;
    }

    /* Buttons */
    .cyber-btn {
        position: relative;
        padding: 1rem 2rem;
        border: none;
        border-radius: var(--radius-md);
        font-family: var(--font-mono);
        font-weight: 600;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        cursor: pointer;
        overflow: hidden;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .primary-btn {
        background: var(--neon-blue);
        color: #000;
        box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
    }

    .primary-btn:hover {
        box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
        transform: translateY(-2px);
    }

    .primary-btn:disabled {
        background: #333;
        color: #666;
        box-shadow: none;
        cursor: not-allowed;
        transform: none;
    }

    .full-width {
        width: 100%;
    }

    .sm-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .outline {
        background: transparent;
        border: 1px solid var(--neon-blue);
        color: var(--neon-blue);
    }

    /* ==========================================================================
   Modals
   ========================================================================== */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgb(105 99 99 / 80%);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .modal-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .glass-modal {
        background: rgb(99 99 107 / 43%);
        border: 1px solid rgb(0 240 255);
        border-radius: var(--radius-lg);
        width: 90%;
        max-width: 500px;
        padding: 2rem;
        transform: translateY(20px) scale(0.95);
        transition: var(--transition);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    .modal-overlay.active .glass-modal {
        transform: translateY(0) scale(1);
    }

    .large-modal {
        max-width: 700px;
    }

    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .pulse-dot {
        display: inline-block;
        width: 10px;
        height: 10px;
        background: #00f0ff;
        border-radius: 50%;
        margin-right: 10px;
        box-shadow: 0 0 10px var(--neon-green);
        animation: pulse 2s infinite;
    }

    .terminal-prompt {
        font-family: var(--font-mono);
        color: var(--text-dim);
        margin-bottom: 2rem;
    }

    /* Selection Cards */
    .radio-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .radio-card {
        position: relative;
        cursor: pointer;
    }

    .radio-card input {
        position: absolute;
        opacity: 0;
    }

    .card-content {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border-glass);
        border-radius: var(--radius-md);
        padding: 1.5rem 1rem;
        text-align: center;
        transition: var(--transition);
    }

    .radio-card input:checked+.card-content {
        border-color: var(--neon-blue);
        background: rgba(0, 240, 255, 0.05);
        box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.1);
    }

    .card-content h4 {
        color: var(--text-main);
        margin-bottom: 0.5rem;
    }

    .card-content p {
        font-size: 0.8rem;
        color: var(--text-dim);
    }

    /* Email Preview */
    .url-box {
        margin-bottom: 2rem;
    }

    .copy-group {
        display: flex;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .copy-group input {
        flex: 1;
        background: rgba(0, 0, 0, 0.5);
        border: 1px solid var(--border-glass);
        color: var(--neon-green);
        padding: 0.8rem;
        border-radius: var(--radius-md);
        font-family: var(--font-mono);
        font-size: 0.85rem;
    }

    .email-preview-container {
        background: #fff;
        color: #333;
        border-radius: var(--radius-md);
        overflow: hidden;
    }

    .email-header {
        background: #f1f5f9;
        padding: 0.8rem 1rem;
        border-bottom: 1px solid #e2e8f0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }

    .dot.red {
        background: #ff5f56;
    }

    .dot.yellow {
        background: #ffbd2e;
    }

    .dot.green {
        background: #27c93f;
    }

    .email-title {
        font-family: var(--font-sans);
        font-size: 0.85rem;
        color: #64748b;
        margin-left: 1rem;
    }

    .email-body {
        padding: 2rem;
    }

    .email-subject {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        color: #0f172a;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 1rem;
    }

    .email-content p {
        margin-bottom: 1rem;
        color: #334155;
    }

    .email-cta-box {
        text-align: center;
        margin: 2rem 0;
    }

    .email-cta-btn {
        display: inline-block;
        padding: 1rem 2rem;
        background: #0f172a;
        color: #fff;
        text-decoration: none;
        border-radius: var(--radius-sm);
        font-weight: 500;
    }

    .close-btn {
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
    }

    /* ==========================================================================
   Checkout Page
   ========================================================================== */
    .checkout-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 2rem;
    }

    .checkout-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .brand-title {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        background: linear-gradient(to right, #fff, #94a3b8);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .secure-badge {
        display: inline-block;
        background: rgba(0, 255, 102, 0.1);
        color: var(--neon-green);
        padding: 0.4rem 1rem;
        border-radius: 20px;
        font-size: 0.85rem;
        border: 1px solid rgba(0, 255, 102, 0.3);
    }

    .checkout-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    @media(max-width: 768px) {
        .checkout-grid {
            grid-template-columns: 1fr;
        }

        .cyber-form .form-row {
            grid-template-columns: 1fr;
            gap: 0;
        }
    }

    .checkout-card {
        background: var(--bg-panel);
        backdrop-filter: blur(16px);
        border: 1px solid var(--border-glass);
        border-radius: var(--radius-lg);
        padding: 2rem;
    }

    .checkout-card h2 {
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
        border-bottom: 1px solid var(--border-glass);
        padding-bottom: 1rem;
    }

    .summary-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 1rem;
        color: var(--text-dim);
    }

    .summary-row strong {
        color: var(--text-main);
    }

    .summary-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border-glass);
        font-size: 1.2rem;
        font-weight: bold;
    }

    .amount-display {
        font-size: 2rem;
        color: var(--neon-blue);
    }

    /* Credit Card Visual */
    .card-visual {
        width: 100%;
        height: 180px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--radius-md);
        padding: 1.5rem;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .card-visual:: before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        transform: rotate(30deg);
    }

    .chip {
        width: 40px;
        height: 30px;
        background: linear-gradient(135deg, #e2e8f0, #94a3b8);
        border-radius: 4px;
    }

    .card-number-vis {
        font-family: var(--font-mono);
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .card-footer-vis {
        display: flex;
        justify-content: space-between;
        font-family: var(--font-mono);
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
    }

    .terms-section {
        margin: 1.5rem 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .checkbox-label {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.85rem;
        color: var(--text-dim);
        cursor: pointer;
    }

    .checkbox-label a {
        color: var(--neon-blue);
        text-decoration: none;
    }

    .checkout-footer {
        text-align: center;
        margin-top: 3rem;
        color: var(--text-dim);
        font-size: 0.85rem;
    }

    /* Loading & Toast */
    .loading-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--bg-dark);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 2000;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .loading-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .spinner {
        width: 50px;
        height: 50px;
        border: 3px solid rgba(0, 240, 255, 0.2);
        border-top-color: var(--neon-blue);
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin-bottom: 1rem;
    }

    .spinner-small {
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 2px solid rgba(0, 0, 0, 0.2);
        border-top-color: #000;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin-right: 10px;
    }

    .toast-container {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 3000;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .toast {
        background: var(--bg-panel);
        backdrop-filter: blur(10px);
        border: 1px solid var(--border-glass);
        padding: 1rem 1.5rem;
        border-radius: var(--radius-md);
        color: #fff;
        transform: translateX(120%);
        transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        box-shadow: var(--shadow-glass);
    }

    .toast.show {
        transform: translateX(0);
    }

    .toast-success {
        border-left: 4px solid var(--neon-green);
    }

    .toast-error {
        border-left: 4px solid var(--neon-red);
    }

    .success-screen {
        text-align: center;
        padding: 3rem 0;
        animation: fadeUp 0.5s;
    }

    .success-icon {
        font-size: 4rem;
        color: var(--neon-green);
        margin-bottom: 1rem;
        text-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.7);
        }

        70% {
            box-shadow: 0 0 0 10px rgba(0, 255, 102, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(0, 255, 102, 0);
        }
    }

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

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

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

    ;


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background-color: #000000;
        color: var(--text-main);
        font-family: var(--font-sans);
        line-height: 1.6;
        min-height: 100vh;
        overflow-x: hidden;
    }

    /* Background Grid Effect */
    .background-grid,
    .checkout-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-size: 40px 40px;
        background-image: url(../images/abstrack-bg.png);
        z-index: -1;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
    }

    .checkout-bg:: after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 0%, rgba(176, 38, 255, 0.15) 0%, transparent 60%);
    }

    .background-grid:: after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    }

    /* Typography & Utilities */
    h1,
    h2,
    h3,
    h4 {
        font-weight: 600;
        letter-spacing: -0.02em;
    }

    .neon-text {
        color: #00fff5;
        text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
    }

    .dim {
        color: var(--text-dim);
    }

    .mt-4 {
        margin-top: 1rem;
    }

    .mt-6 {
        margin-top: 1.5rem;
    }

    .req {
        color: var(--neon-red);
    }

    /* ==========================================================================
   Layout (Dashboard)
   ========================================================================== */
    .app-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem;
    }

    .top-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem 2rem;
        text-align: center;
        background: rgb(123 123 133 / 60%);
        backdrop-filter: blur(12px);
        border: 1px solid rgb(255 255 255 / 60%);
        border-radius: var(--radius-lg);
        margin-bottom: 2rem;
    }

    .logo {
        font-family: var(--font-mono);
        font-size: 1.2rem;
        font-weight: 700;
    }

    .nav-links a {
        color: var(--text-dim);
        text-decoration: none;
        margin: 0 1rem;
        font-size: 0.95rem;
        transition: var(--transition);
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--text-main);
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    }

    .avatar {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        font-weight: 600;
    }

    /* Glass Panels */
    .glass-panel {
        background: rgb(123 123 133 / 60%);
        backdrop-filter: blur(16px);
        border: 1px solid rgb(0 255 245);
        border-radius: var(--radius-lg);
        padding: 2.5rem;
        box-shadow: var(--shadow-glass);
        animation: fadeUp 0.6s ease-out;
    }

    .panel-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        border-bottom: 1px solid var(--border-glass);
        padding-bottom: 1rem;
    }

    .status-badge {
        background: rgb(0 240 255 / 0%);
        color: #ffffff;
        padding: 0.4rem 1rem;
        border-radius: 20px;
        font-size: 0.85rem;
        font-family: var(--font-mono);
        border: 1px solid rgb(255 255 255 / 93%);
    }

    /* ==========================================================================
   Forms & Inputs
   ========================================================================== */
    .cyber-form .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .input-group {
        margin-bottom: 1.5rem;
        display: flex;
        flex-direction: column;
    }

    .input-group label {
        font-size: 0.85rem;
        color: var(--text-dim);
        margin-bottom: 0.5rem;
        font-family: var(--font-mono);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .cyber-form input,
    .cyber-form select,
    .cyber-form textarea {
        background: rgb(0 0 0 / 5%);
        border: 1px solid rgb(213 213 213 / 52%);
        color: var(--text-main);
        padding: 0.8rem 1rem;
        border-radius: var(--radius-md);
        font-family: var(--font-sans);
        font-size: 1rem;
        transition: var(--transition);
        outline: none;
    }

    .cyber-form input:focus,
    .cyber-form select:focus,
    .cyber-form textarea:focus {
        border-color: var(--neon-blue);
        box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
        background: rgba(0, 240, 255, 0.02);
    }

    .cyber-form select option {
        background: var(--bg-dark);
        color: var(--text-main);
    }

    .helper-text {
        font-size: 0.75rem;
        color: var(--text-dim);
        margin-top: 0.3rem;
    }

    /* Buttons */
    .cyber-btn {
        position: relative;
        padding: 1rem 2rem;
        border: none;
        border-radius: var(--radius-md);
        font-family: var(--font-mono);
        font-weight: 600;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        cursor: pointer;
        overflow: hidden;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .primary-btn {
        background: var(--neon-blue);
        color: #000;
        box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
    }

    .primary-btn: hover {
        box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
        transform: translateY(-2px);
    }

    .primary-btn: disabled {
        background: #333;
        color: #666;
        box-shadow: none;
        cursor: not-allowed;
        transform: none;
    }

    .full-width {
        width: 100%;
    }

    .sm-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .outline {
        background: transparent;
        border: 1px solid var(--neon-blue);
        color: var(--neon-blue);
    }

    /* ==========================================================================
   Modals
   ========================================================================== */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgb(105 99 99 / 80%);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .modal-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .glass-modal {
        background: rgb(99 99 107 / 43%);
        border: 1px solid rgb(0 240 255);
        border-radius: var(--radius-lg);
        width: 90%;
        max-width: 500px;
        padding: 2rem;
        transform: translateY(20px) scale(0.95);
        transition: var(--transition);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    .modal-overlay.active .glass-modal {
        transform: translateY(0) scale(1);
    }

    .large-modal {
        max-width: 700px;
    }

    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .pulse-dot {
        display: inline-block;
        width: 10px;
        height: 10px;
        background: #00f0ff;
        border-radius: 50%;
        margin-right: 10px;
        box-shadow: 0 0 10px var(--neon-green);
        animation: pulse 2s infinite;
    }

    .terminal-prompt {
        font-family: var(--font-mono);
        color: var(--text-dim);
        margin-bottom: 2rem;
    }

    /* Selection Cards */
    .radio-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .radio-card {
        position: relative;
        cursor: pointer;
    }

    .radio-card input {
        position: absolute;
        opacity: 0;
    }

    .card-content {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border-glass);
        border-radius: var(--radius-md);
        padding: 1.5rem 1rem;
        text-align: center;
        transition: var(--transition);
    }

    .radio-card input:checked+.card-content {
        border-color: var(--neon-blue);
        background: rgba(0, 240, 255, 0.05);
        box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.1);
    }

    .card-content h4 {
        color: var(--text-main);
        margin-bottom: 0.5rem;
    }

    .card-content p {
        font-size: 0.8rem;
        color: var(--text-dim);
    }

    /* Email Preview */
    .url-box {
        margin-bottom: 2rem;
    }

    .copy-group {
        display: flex;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .copy-group input {
        flex: 1;
        background: rgba(0, 0, 0, 0.5);
        border: 1px solid var(--border-glass);
        color: var(--neon-green);
        padding: 0.8rem;
        border-radius: var(--radius-md);
        font-family: var(--font-mono);
        font-size: 0.85rem;
    }

    .email-preview-container {
        background: #fff;
        color: #333;
        border-radius: var(--radius-md);
        overflow: hidden;
    }

    .email-header {
        background: #f1f5f9;
        padding: 0.8rem 1rem;
        border-bottom: 1px solid #e2e8f0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }

    .dot.red {
        background: #ff5f56;
    }

    .dot.yellow {
        background: #ffbd2e;
    }

    .dot.green {
        background: #27c93f;
    }

    .email-title {
        font-family: var(--font-sans);
        font-size: 0.85rem;
        color: #64748b;
        margin-left: 1rem;
    }

    .email-body {
        padding: 2rem;
    }

    .email-subject {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        color: #0f172a;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 1rem;
    }

    .email-content p {
        margin-bottom: 1rem;
        color: #334155;
    }

    .email-cta-box {
        text-align: center;
        margin: 2rem 0;
    }

    .email-cta-btn {
        display: inline-block;
        padding: 1rem 2rem;
        background: #0f172a;
        color: #fff;
        text-decoration: none;
        border-radius: var(--radius-sm);
        font-weight: 500;
    }

    .close-btn {
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
    }

    /* ==========================================================================
   Checkout Page
   ========================================================================== */
    .checkout-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 2rem;
    }

    .checkout-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .brand-title {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        background: linear-gradient(to right, #fff, #94a3b8);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .secure-badge {
        display: inline-block;
        background: rgba(0, 255, 102, 0.1);
        color: var(--neon-green);
        padding: 0.4rem 1rem;
        border-radius: 20px;
        font-size: 0.85rem;
        border: 1px solid rgba(0, 255, 102, 0.3);
    }

    .checkout-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    @media(max-width: 768px) {
        .checkout-grid {
            grid-template-columns: 1fr;
        }

        .cyber-form .form-row {
            grid-template-columns: 1fr;
            gap: 0;
        }
    }

    .checkout-card {
        background: var(--bg-panel);
        backdrop-filter: blur(16px);
        border: 1px solid var(--border-glass);
        border-radius: var(--radius-lg);
        padding: 2rem;
    }

    .checkout-card h2 {
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
        border-bottom: 1px solid var(--border-glass);
        padding-bottom: 1rem;
    }

    .summary-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 1rem;
        color: var(--text-dim);
    }

    .summary-row strong {
        color: var(--text-main);
    }

    .summary-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border-glass);
        font-size: 1.2rem;
        font-weight: bold;
    }

    .amount-display {
        font-size: 2rem;
        color: var(--neon-blue);
    }

    /* Credit Card Visual */
    .card-visual {
        width: 100%;
        height: 180px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--radius-md);
        padding: 1.5rem;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .card-visual:: before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        transform: rotate(30deg);
    }

    .chip {
        width: 40px;
        height: 30px;
        background: linear-gradient(135deg, #e2e8f0, #94a3b8);
        border-radius: 4px;
    }

    .card-number-vis {
        font-family: var(--font-mono);
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .card-footer-vis {
        display: flex;
        justify-content: space-between;
        font-family: var(--font-mono);
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
    }

    .terms-section {
        margin: 1.5rem 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .checkbox-label {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.85rem;
        color: var(--text-dim);
        cursor: pointer;
    }

    .checkbox-label a {
        color: var(--neon-blue);
        text-decoration: none;
    }

    .checkout-footer {
        text-align: center;
        margin-top: 3rem;
        color: var(--text-dim);
        font-size: 0.85rem;
    }

    /* Loading & Toast */
    .loading-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--bg-dark);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 2000;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .loading-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .spinner {
        width: 50px;
        height: 50px;
        border: 3px solid rgba(0, 240, 255, 0.2);
        border-top-color: var(--neon-blue);
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin-bottom: 1rem;
    }

    .spinner-small {
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 2px solid rgba(0, 0, 0, 0.2);
        border-top-color: #000;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin-right: 10px;
    }

    .toast-container {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 3000;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .toast {
        background: var(--bg-panel);
        backdrop-filter: blur(10px);
        border: 1px solid var(--border-glass);
        padding: 1rem 1.5rem;
        border-radius: var(--radius-md);
        color: #fff;
        transform: translateX(120%);
        transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        box-shadow: var(--shadow-glass);
    }

    .toast.show {
        transform: translateX(0);
    }

    .toast-success {
        border-left: 4px solid var(--neon-green);
    }

    .toast-error {
        border-left: 4px solid var(--neon-red);
    }

    .success-screen {
        text-align: center;
        padding: 3rem 0;
        animation: fadeUp 0.5s;
    }

    .success-icon {
        font-size: 4rem;
        color: var(--neon-green);
        margin-bottom: 1rem;
        text-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.7);
        }

        70% {
            box-shadow: 0 0 0 10px rgba(0, 255, 102, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(0, 255, 102, 0);
        }
    }

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

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

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

    ;
}

.logo {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Glass Panels */
.glass-panel {
    background: rgb(255 255 255 / 60%);
    backdrop-filter: blur(16px);
    border: 1px solid rgb(0 255 245);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-glass);
    animation: fadeUp 0.6s ease-out;
    border: 10px solid;
    border-image-slice: 1;
    border-width: 2px;
    border-image-source: -webkit-linear-gradient(left, rgb(229 229 229) 0%, rgb(1 252 242) 50%, rgb(16 203 196 / 98%) 100%);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 1rem;
}

.status-badge {
    background: rgb(0 240 255 / 0%);
    color: #00f0ff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: var(--font-mono);
    border: 1px solid rgb(0 240 255);
}

/* ==========================================================================
   Forms & Inputs
   ========================================================================== */
.cyber-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.85rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cyber-form input,
.cyber-form select,
.cyber-form textarea {
    background: rgb(197 191 191);
    border: 1px solid rgb(0 0 0 / 91%);
    color: var(--text-main);
    padding: 0.8rem 1rem;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
    /*appearance: none !important;*/
    /*-webkit-appearance: none;*/
    /*-moz-appearance: textfield;*/
}

.cyber-form input:focus,
.cyber-form select:focus,
.cyber-form textarea:focus {
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
    background: rgba(0, 240, 255, 0.02);
}

.cyber-form select option {
    background: var(--bg-dark);
    color: var(--text-main);
}

.helper-text {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 0.3rem;
}

/* Buttons */
.cyber-btn {
    position: relative;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.primary-btn {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.primary-btn:hover {
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
    transform: translateY(-2px);
}

.primary-btn:disabled {
    background: #333;
    color: #666;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.full-width {
    width: 100%;
}

.sm-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.outline {
    background: transparent;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
}

/* ==========================================================================
   Modals
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgb(105 99 99 / 80%);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.glass-modal {
    background: rgb(223 212 212 / 57%);
    border: 1px solid rgb(0 240 255);
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    transform: translateY(20px) scale(0.95);
    transition: var(--transition);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .glass-modal {
    transform: translateY(0) scale(1);
}

.large-modal {
    max-width: 700px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #00f0ff;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--neon-green);
    animation: pulse 2s infinite;
}

.terminal-prompt {
    font-family: var(--font-mono);
    color: var(--text-dim);
    margin-bottom: 2rem;
}

/* Selection Cards */
.radio-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.card-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition);
}

.radio-card input:checked+.card-content {
    border-color: var(--neon-blue);
    background: rgba(0, 240, 255, 0.05);
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.1);
}

.card-content h4 {
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Email Preview */
.url-box {
    margin-bottom: 2rem;
}

.copy-group {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.copy-group input {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-glass);
    color: var(--neon-green);
    padding: 0.8rem;
    border-radius: var(--radius-md);
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.email-preview-container {
    background: #fff;
    color: #333;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.email-header {
    background: #f1f5f9;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.email-title {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: #64748b;
    margin-left: 1rem;
}

.email-body {
    padding: 2rem;
}

.email-subject {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
}

.email-content p {
    margin-bottom: 1rem;
    color: #334155;
}

.email-cta-box {
    text-align: center;
    margin: 2rem 0;
}

.email-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #0f172a;
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Checkout Page
   ========================================================================== */
.checkout-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.checkout-header {
    text-align: center;
    margin-bottom: 3rem;
}

.brand-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #000000;
}

.secure-badge {
    display: inline-block;
    background: rgba(0, 255, 102, 0.1);
    color: var(--neon-green);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(0, 255, 102, 0.3);
}

.checkout-grid {
    display: flex;
    gap: 24px;
}

@media(max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .cyber-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.checkout-card {
    background: var(--bg-panel);
    backdrop-filter: blur(16px);
    border: 1px solid rgb(255 255 255 / 62%);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.checkout-card h2 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    border-bottom: 1px solid rgb(255 255 255 / 47%);
    padding-bottom: 1rem;
    color: #ffffff;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-dim);
}

.summary-row strong {
    color: #ffffff;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgb(255 255 255 / 44%);
    font-size: 1.2rem;
    font-weight: bold;
}

.amount-display {
    font-size: 2rem;
    color: var(--neon-blue);
}

/* Credit Card Visual */
.card-visual {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    transform: rotate(30deg);
}

.chip {
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #e2e8f0, #94a3b8);
    border-radius: 4px;
}

.card-number-vis {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #fff;
}

.card-footer-vis {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.terms-section {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dim);
    cursor: pointer;
}

.checkbox-label a {
    color: var(--neon-blue);
    text-decoration: none;
}

.checkout-footer {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-dim);
    font-size: 0.85rem;
    width: 100%;
}

/* Loading & Toast */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.loading-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 240, 255, 0.2);
    border-top-color: var(--neon-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

.spinner-small {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--bg-panel);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    color: #fff;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: var(--shadow-glass);
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    border-left: 4px solid var(--neon-green);
}

.toast-error {
    border-left: 4px solid var(--neon-red);
}

.success-screen {
    text-align: center;
    padding: 3rem 0;
    animation: fadeUp 0.5s;
}

.success-icon {
    font-size: 4rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 102, 0);
    }
}

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.cyber-form input::placeholder,
.cyber-form textarea::placeholder {
    color: #333;
}

/*.cyber-form input::-webkit-outer-spin-button,.cyber-form input::-webkit-inner-spin-button {appearance: none ;-webkit-appearance: none;margin: 0;}*/

/*input#tos_check::-webkit-outer-spin-button,input#tos_check::-webkit-inner-spin-button{*/
/*    appearance: auto ;*/
/*    -webkit-appearance: auto;*/
/*    margin: 0;*/
/*}*/


footer.checkout-footer p {
    background: #000000;
    padding: 11px 0;
    color: #ffffff;
    border-radius: 9px;
}

.summary-row {
    color: white;
}

.summary-total {
    color: white;
}