/* Fonts are loaded via Google Fonts in layout.html for better performance */

html {
    scrollbar-width: thin;
    scrollbar-color: #32f701 #050509;
    scroll-behavior: smooth;
}

/* HTML5 Modern Smoothness Elements */
a,
button,
.btn,
input,
select,
textarea,
.nav-item,
.menu-item,
.dropdown-menu,
.modal-content {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

a:active,
button:active,
.btn:active {
    transform: scale(0.96);
}

@keyframes globalFadeIn {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Body fade-in handled by JS .page-loaded class animation in layout.html */

:root {
    --primary: #00ff00;
    --primary-glow: rgba(0, 255, 0, 0.4);
    --bg-dark: #050505;
    --bg-card: #0d0d0d;
    --text-main: #ffffff;
    --text-muted: #888888;
    --border: rgba(255, 255, 255, 0.1);
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: #050509;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background: #32f701;
    border-radius: 25px;
    border: 2px solid #050509;
}

body {
    background-color: #0d0d0d;
    background-image: url('/static/images/email-checker-validator-bulk-verify-bounce-reduce.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 20px;
    overflow-x: hidden;
    zoom: 0.8;
}


#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* --- Holographic Effects --- */
.splash-bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.splash-bg-effects::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
        linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 2px, 3px 100%;
    z-index: 1;
}

.splash-bg-effects::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 1px,
            rgba(115, 230, 0, 0.05) 1px,
            rgba(115, 230, 0, 0.05) 2px);
    background-size: 100% 100%;
    animation: scanline-move 10s linear infinite;
    z-index: 2;
}

@keyframes scanline-move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 100%;
    }
}







.container {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    /* New Font */
    font-size: 3.5em;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 30px;
    color: #ffffff;
    /* White base */
    position: relative;
}

.logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.logo-container img {
    width: 120px;
    height: auto;
}

.input-section {
    margin-bottom: 30px;
    padding: 30px 24px;
    background: linear-gradient(135deg, rgba(35, 35, 35, 0.85) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 0 !important;
    /* STRICTLY BORDERLESS */
    box-shadow: none !important;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    animation: cyber-breathing 4s infinite ease-in-out;
}

.input-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    /* PLATINUM SHINE EDGE */
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.35) 20%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.35) 80%, transparent 100%);
    z-index: 5;
}

.input-section>* {
    position: relative;
    z-index: 10;
}

label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: bold;
    color: #ffffff;
    /* Changed to White */
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1.5px;
}

label .material-symbols-outlined {
    margin-right: 10px;
    font-size: 1.2em;
}

/* Redesigned Input Textarea */
.textarea-wrapper {
    position: relative;
    padding: 1px;
    background: transparent;
    border-radius: 12px;
}

#emails {
    width: 100%;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    /* Match login input background */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Grey border */
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    padding: 15px;
    box-sizing: border-box;
    resize: vertical;
    outline: none;
    font-size: 14px;
    border-radius: 10px;
    /* 10px corner */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#emails:focus {
    border-color: rgba(255, 255, 255, 0.5);
    /* White/Grey focus border */
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none !important;
}

#emails::placeholder {
    color: #ffffff;
}

/* Scrollbar styling for textareas */
textarea {
    scrollbar-width: thin;
    scrollbar-color: #444 #050509;
}

textarea::-webkit-scrollbar {
    width: 10px;
}

textarea::-webkit-scrollbar-track {
    background: #050509;
    border-radius: 25px;
}

textarea::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 25px;
}

/* Match scrollbar color with each panel */
#emails::-webkit-scrollbar-thumb {
    background: #ffffff;
}

.valid textarea::-webkit-scrollbar-thumb {
    background: #32f701;
}

.blocked textarea::-webkit-scrollbar-thumb {
    background: #ff3b3b;
}

.not-found textarea::-webkit-scrollbar-thumb {
    background: #ff9500;
}

.valid textarea {
    scrollbar-color: #32f701 #050509;
}

.blocked textarea {
    scrollbar-color: #ff3b3b #050509;
}

.not-found textarea {
    scrollbar-color: #ff9500 #050509;
}

/* Restore Original Global Button Styles */
button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 120px;
    padding: 12px 17px;
    margin-top: 15px;
    position: relative;
    cursor: pointer;
    border: 0;
    border-radius: 7px;
    box-shadow: none !important;
    background: radial-gradient(ellipse at bottom,
            rgb(0, 0, 0) 0%,
            rgb(29, 31, 34) 45%);
    color: rgba(255, 255, 255, 0.66);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    overflow: hidden;
    transition: all 1s cubic-bezier(0.15, 0.83, 0.66, 1);
}

button:active {
    transform: translateY(2px) scale(0.98);
    transition: all 0.1s ease;
}

button::before {
    content: "";
    width: 70%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 15%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 50%,
            rgba(255, 255, 255, 0) 100%);
    opacity: 0.2;
    transition: all 1s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.btn-text {
    display: flex;
    align-items: center;
}

.icon-btn {
    margin-right: 10px;
    font-size: 1.2em;
}

button:hover {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.03) translateY(-1px);
}

button:hover::before {
    opacity: 1;
}

/* Premium Scan Button Class (Inherits Navbar Design) */
.premium-scan-btn {
    position: relative;
    padding: 0 5px 0 25px !important;
    font-size: 15px !important;
    font-weight: bold !important;
    color: #e0e0e0 !important;
    text-transform: uppercase !important;
    font-family: 'Orbitron', sans-serif !important;
    background: linear-gradient(to bottom, #171717, #242424) !important;
    border-radius: 9999px !important;
    cursor: pointer !important;
    box-shadow: none !important;
    transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    /* Center for better loader position */
    border: 1px solid #292929 !important;
    height: 3.8em !important;
    overflow: visible !important;
    z-index: 1 !important;
    width: 100% !important;
    margin-top: 20px !important;
    letter-spacing: 1px !important;
    /* Slightly less for cleaner look */
}

.premium-scan-btn::before {
    content: "";
    position: absolute;
    top: -2px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    background: linear-gradient(to bottom, #292929, #000000);
    z-index: -1;
    border-radius: 9999px;
    transition: all 0.3s ease;
    opacity: 1;
    width: auto;
    height: auto;
}

.premium-scan-btn .btn-icon-circle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #171717, #242424);
    width: 44px;
    height: 44px;
    margin-left: 10px;
    border-radius: 50%;
    box-shadow: none !important;
    border: 1px solid #252525;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.premium-scan-btn .btn-icon-circle::before {
    content: "";
    position: absolute;
    top: -2px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    background: linear-gradient(to bottom, #292929, #000000);
    z-index: -1;
    border-radius: 50%;
}

.premium-scan-btn .btn-icon-circle .icon-btn {
    margin: 0;
    font-size: 1.3em;
    color: #73e600;
    filter: none !important;
    transition: all 0.3s ease;
}

.premium-scan-btn:hover {
    color: #ffffff !important;
    transform: scale(1.02) translateY(-2px) !important;
    box-shadow: none !important;
}

.premium-scan-btn:hover .btn-icon-circle .icon-btn {
    transform: rotate(15deg) scale(1.1);
    color: #fff;
    filter: none !important;
}

.premium-scan-btn:hover::before {
    opacity: 1;
}

button:disabled {
    background: #111;
    color: #555;
    border-color: #333;
    cursor: not-allowed;
}

/* Loading Animation */
.loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid #73e600;
    border-bottom-color: transparent;
    border-radius: 50%;
    animation: rotation 0.8s linear infinite;
    margin-left: 10px;
    filter: none !important;
}

button.loading .loader {
    display: inline-block;
}

button.loading .btn-text {
    opacity: 0.8;
}

/* Hover Pause Effect */
.pause-text {
    display: none;
    align-items: center;
}

button.loading:hover .scanning-text {
    display: none !important;
}

button.loading:hover .pause-text {
    display: flex !important;
}

button.loading:hover {
    background-color: #000000 !important;
    color: #ffffff;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: rotation 1.5s linear infinite;
    display: inline-block;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}

.result-box {
    padding: 25px 20px;
    border-radius: 18px;
    border: 0 !important;
    /* STRICTLY BORDERLESS */
    background: linear-gradient(135deg, rgba(35, 35, 35, 0.85) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: cyber-breathing 5s infinite ease-in-out;
}

.result-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 20%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.15) 80%, transparent 100%);
    z-index: 5;
}

.result-box:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.9) 0%, rgba(15, 15, 15, 0.98) 100%);
}

.result-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1em;
    margin-bottom: 12px;
    text-align: left;
    border-bottom: 2px solid;
    padding-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content {
    display: flex;
    align-items: center;
}

.header-content .material-symbols-outlined {
    margin-right: 8px;
    font-size: 1.1em;
}

.counter {
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 0.85em;
    font-weight: 600;
}

.result-box textarea {
    height: 260px;
    background-color: rgba(8, 8, 12, 0.6);
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    resize: none;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    outline: none;
    border-radius: 10px;
    border: 0;
}

.valid {
    border-color: #00ff66;
    background: radial-gradient(circle at top, rgba(0, 255, 102, 0.12), #050505);
}

.valid h2 {
    color: #00ff66;
    border-color: rgba(0, 255, 102, 0.65);
}

.valid textarea {
    border: 0;
    color: #a6ffcc;
}

.valid .counter {
    border: 1px solid rgba(0, 255, 102, 0.8);
    background: rgba(0, 255, 102, 0.1);
}

.blocked {
    border-color: #ff3b3b;
    background: radial-gradient(circle at top, rgba(255, 59, 59, 0.18), #050404);
}

.blocked h2 {
    color: #ff4d4d;
    border-color: rgba(255, 59, 59, 0.7);
}

.blocked textarea {
    border: 0;
    color: #ffb3b3;
}

.blocked .counter {
    border: 1px solid rgba(255, 59, 59, 0.9);
    background: rgba(255, 59, 59, 0.12);
}

.not-found {
    border-color: #ffb347;
    background: radial-gradient(circle at top, rgba(255, 179, 71, 0.18), #050403);
}

.not-found h2 {
    color: #ffb347;
    border-color: rgba(255, 179, 71, 0.7);
}

.not-found textarea {
    border: 0;
    color: #ffe0b3;
}

.not-found .counter {
    border: 1px solid rgba(255, 179, 71, 0.9);
    background: rgba(255, 179, 71, 0.12);
}

#status-bar {
    margin-top: 25px;
    padding: 12px 20px;
    background: rgba(13, 13, 13, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: none !important;
}

.status-main {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    /* Changed to white */
    font-weight: bold;
    font-size: 0.9em;
}

.status-stats {
    display: flex;
    gap: 20px;
    align-items: center;
}

.status-stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85em;
    font-weight: 500;
}

.status-stat-item i,
.status-stat-item span.material-symbols-outlined {
    font-size: 1.2em;
}

.stat-label {
    color: #aaa;
    text-transform: uppercase;
    font-size: 0.75em;
    letter-spacing: 0.5px;
}

.stat-value {
    font-family: 'Audiowide', cursive;
    font-size: 1.1em;
}

.status-stat-item.valid {
    color: #00ff66;
}

.status-stat-item.blocked {
    color: #ff3b3b;
}

.status-stat-item.notfound {
    color: #ffb347;
}

/* Glitch Effect - Updated for Ubuntu */
.glitch {
    position: relative;
    color: white;
    font-size: 4em;
    font-weight: 900;
    text-transform: uppercase;
    animation: glitch 3s infinite alternate-reverse;
}

@keyframes glitch {
    0% {
        opacity: 1;
    }

    20% {
        opacity: 0.8;
    }

    40% {
        opacity: 1;
    }

    60% {
        opacity: 0.9;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0.8;
    }
}

/* Error Modal Styles */
/* ==========================================================================
   PREMIUM MODAL SYSTEM (RE-DESIGNED)
   ========================================================================== */
.modal {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 5000;
    /* Higher z-index to stay above everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    animation: modalFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-content {
    background: rgba(15, 15, 15, 0.85);
    border: 0;
    border-radius: 24px;
    width: 90%;
    max-width: 600px;
    box-shadow: none !important;
    animation: modalPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.modal-header {
    background: linear-gradient(to right, rgba(255, 0, 0, 0.15), transparent);
    padding: 24px 30px;
    display: flex;
    align-items: center;
    border-bottom: 0;
    gap: 15px;
}

.modal-header h2 {
    color: #ff3b3b;
    margin: 0;
    font-family: 'Audiowide', cursive;
    font-size: 1.1em;
    letter-spacing: 2px;
    flex-grow: 1;
    text-transform: uppercase;
}

.modal-icon {
    color: #ff3b3b;
    font-size: 28px;
}

.close-btn {
    color: rgba(255, 255, 255, 0.4);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px 30px;
    text-align: center;
}

.modal-body p {
    color: #eee;
    font-size: 1.05em;
    line-height: 1.6;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

/* Success Modal Overrides */
.modal-success .modal-content {
    border: 0;
    box-shadow: none !important;
}

.modal-success .modal-header {
    background: linear-gradient(to right, rgba(115, 230, 0, 0.15), transparent);
    border-bottom: 0;
}

.modal-success .modal-header h2 {
    color: #73e600;
}

.modal-success .modal-icon {
    color: #73e600;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 
   ==========================================================================
   NEW STYLES FOR AUTH, DASHBOARD, AND NAVBAR
   ==========================================================================
*/

/* Navbar Styles */
.navbar {
    position: relative;
    z-index: 1001;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none !important;
    border-radius: 20px;
    margin: 20px;
    margin-bottom: 30px;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5em;
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-brand .material-symbols-outlined {
    margin-right: 10px;
    color: #00ff00;
}

.landing-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.landing-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.landing-nav a:hover {
    color: var(--text-main);
}

.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary {
    background: var(--primary);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    box-shadow: none !important;
    z-index: 1000;
    margin-top: 10px;
    padding: 8px;
    overflow: visible;
    backdrop-filter: blur(20px);
    /* Smooth show/hide via opacity instead of display:none */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.97);
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    pointer-events: none;
}

/* Clear transparent bridge to allow mouse movement to menu */
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.dropdown-item {
    padding: 0 5px 0 20px;
    /* Perfect match for .nav-link */
    color: #e0e0e0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 3em;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s ease;
    border-radius: 9999px;
    margin-bottom: 4px;
    line-height: normal;
    box-sizing: border-box;
}

.item-icon-circle {
    width: 35px;
    /* Exact same as inner-button */
    height: 35px;
    background: linear-gradient(to bottom, #171717, #242424);
    border: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #73e600;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: auto;
    /* Push to right */
}

.item-icon-circle .material-symbols-outlined {
    font-size: 18px;
    margin: 0;
    display: block;
}

.dropdown-item:hover {
    background: rgba(115, 230, 0, 0.05);
    color: #fff;
}

.dropdown-item:hover .item-icon-circle {
    background: #73e600;
    color: #000;
}

.nav-link {
    position: relative;
    padding: 0 5px 0 20px;
    /* padding to fit standard text block and inner button right aligned */
    font-size: 15px;
    font-weight: 500;
    color: #e0e0e0;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(to bottom, #171717, #242424);
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: none !important;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    border: 1px solid #292929;
    height: 3em;
    overflow: visible;
    /* Prevents button box shadows from being clipped */
    z-index: 1;
    white-space: nowrap;
}

.nav-link::before {
    content: "";
    position: absolute;
    top: -2px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    background: linear-gradient(to bottom, #292929, #000000);
    z-index: -1;
    border-radius: 9999px;
    transition: all 0.2s ease;
    opacity: 1;
}

.nav-link:active {
    transform: translateY(2px);
    box-shadow: none !important;
}

.nav-link .inner-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #171717, #242424);
    width: 35px;
    height: 35px;
    margin-left: 10px;
    border-radius: 50%;
    box-shadow: none !important;
    border: 1px solid #252525;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.nav-link .inner-button::before {
    content: "";
    position: absolute;
    top: -2px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    background: linear-gradient(to bottom, #292929, #000000);
    z-index: -1;
    border-radius: 9999px;
    transition: all 0.2s ease;
    opacity: 1;
}

.nav-link .inner-button .icon {
    font-size: 1.1em;
    filter: none !important;
    transition: all 0.4s ease-in-out;
}

.nav-link:hover .inner-button .icon {
    filter: none !important;
    transform: rotate(-35deg);
}

.nav-link:hover {
    color: #ffffff;
    transform: scale(1.05) translateY(-1px);
}

/* Wallet Badge Styles */
.wallet-badge {
    display: flex;
    align-items: center;
    background: rgba(115, 230, 0, 0.08);
    border: 1px solid rgba(115, 230, 0, 0.1);
    border-radius: 99px;
    padding: 0 15px;
    height: 45px;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.wallet-badge:hover {
    background: rgba(115, 230, 0, 0.15);
    border-color: rgba(115, 230, 0, 0.4);
    transform: translateY(-1px);
}

.wallet-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.wallet-info .material-symbols-outlined {
    color: #73e600;
    font-size: 20px;
}

.add-credits-pill {
    background: #73e600;
    color: #000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-zoom 2.5s ease-in-out infinite;
}

.wallet-badge:hover .add-credits-pill {
    background: #fff;
    transform: scale(1.15) rotate(90deg);
    animation: none;
    /* Pause pulse when hovering the whole badge */
}

@keyframes pulse-zoom {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

.add-credits-pill .material-symbols-outlined {
    font-size: 20px;
    font-weight: bold;
}

/* Unified Navbar Tabs (Profile-style) */
.nav-tabs-group {
    display: flex;
    align-items: center;
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 0;
    overflow: hidden;
    box-shadow: none !important;
}

.nav-tab-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 25px;
    height: 55px;
    /* Increased from 48px */
    color: #fff;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    /* Increased from 13px */
    font-weight: 600;
    /* Increased to 600 */
    letter-spacing: 0.5px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    white-space: nowrap;
}

.nav-tabs-group> :first-child,
.nav-tabs-group> :first-child .nav-tab-item {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.nav-tabs-group> :last-child,
.nav-tabs-group> :last-child .nav-tab-item {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border-right: none;
}

.nav-tab-item:hover {
    color: #fff;
    background: rgba(115, 230, 0, 0.04);
}

.nav-tab-item.active {
    color: #fff;
    background: rgba(115, 230, 0, 0.08);
    box-shadow: none !important;
}

.nav-tab-item .material-symbols-outlined {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.nav-tab-item:hover .material-symbols-outlined {
    transform: scale(1.1);
}

.nav-tab-item.logout {
    color: #ff5555;
}

.nav-tab-item.logout:hover {
    background: rgba(255, 85, 85, 0.05);
}

.nav-tab-item.credits {
    color: #fff;
}

/* 
   ==========================================================================
   NOTIFICATION BELL STYLES 
   ========================================================================== 
*/

.notification {
    background: transparent;
    border: none;
    padding: 15px 15px;
    border-radius: 50px;
    cursor: pointer;
    transition: 300ms;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.notification:hover {
    background: rgba(170, 170, 170, 0.062);
}

.notification:hover>.bell-container {
    animation: bell-animation 650ms ease-out 0s 1 normal both;
}

.bell-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bell {
    border: 2.17px solid white;
    border-radius: 10px 10px 0 0;
    width: 15px;
    height: 17px;
    background: transparent;
    display: block;
    position: relative;
    top: -3px;
}

.bell::before,
.bell::after {
    content: "";
    background: white;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 2.17px;
}

.bell::before {
    top: 100%;
    width: 20px;
}

.bell::after {
    top: calc(100% + 4px);
    width: 7px;
}

@keyframes bell-animation {
    20% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(-15deg) scale(1.1);
    }

    60% {
        transform: rotate(10deg) scale(1.1);
    }

    80% {
        transform: rotate(-10deg);
    }

    0%,
    100% {
        transform: rotate(0deg);
    }
}


#user-credits {
    color: #00ff00;
    font-weight: bold;
    font-size: 1.1em;
}

/* Auth Pages (Login/Signup) */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    flex-direction: column;
    padding-top: 160px;
    padding-bottom: 80px;
    /* Center vertically and stack elements */
}

.auth-box {
    background: rgba(10, 10, 10, 0.5) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    position: relative;
    z-index: 10;
    border-radius: 20px;
    isolation: isolate;
    animation: auth-box-slide-in 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Ensure Chrome doesn't double-filter or suppress when both classes are present */
.input-section.auth-box {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none !important;
    border: none;
}

.auth-container.page-exit .auth-box {
    animation: auth-box-slide-out 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

@keyframes auth-box-slide-in {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes auth-box-slide-out {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-30px) scale(1.05);
    }
}

.auth-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 20px;
    /* Restore Green Holographic effect */
    background: linear-gradient(90deg, transparent, #00ff00, #73e600, #00ff00, transparent);
    background-size: 200% 100%;
    animation: holo-border 2s linear infinite;
    box-shadow: none !important;
    /* Glow upwards/outwards */
    z-index: -1;
    /* Send it behind the auth-box background */
    border-radius: 22px 22px 0 0;
    /* Match the new 20px auth-box inner radius + 2px offset */
}

@keyframes holo-border {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.auth-box h2 {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    font-size: 0.9em;
    color: #aaa;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Grey border as requested */
    border-radius: 10px;
    /* Slightly less rounded than pill */
    color: #fff;
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none !important;
}

.form-group input:focus {
    border-color: #73e600;
    /* Glow green only on focus */
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none !important;
    outline: none;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    right: 15px;
    color: #aaa;
    cursor: pointer;
    user-select: none;
    font-size: 20px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #73e600;
}

.input-error {
    border-color: #ff0000 !important;
    box-shadow: none !important;
    animation: shake 0.5s;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

/* Restore Original Auth Button Styles */
.auth-btn {
    width: 100%;
    padding: 12px;
    background: #003300;
    color: #00ff00;
    border: none;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    border-radius: 7px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-sizing: border-box;
}

.auth-btn:hover {
    background: #00ff00;
    color: #000;
    transform: scale(1.02);
}

.auth-link {
    display: block;
    margin-top: 20px;
    color: #777;
    text-decoration: none;
    font-size: 0.9em;
}

.auth-link:hover {
    color: #fff;
}

.google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border-radius: 4px;
    background: #111;
    border: 1px solid #555;
    color: #e0e0e0;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9em;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.google-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.google-button {
    width: 100%;
    display: inline-flex;
    padding: 12px;
    font-size: 0.9em;
    font-family: 'Outfit', sans-serif;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    gap: 0.75rem;
    color: rgb(65, 63, 63);
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.google-button svg {
    height: 24px;
}

.google-button:hover {
    transform: scale(1.02);
}


.flash-messages {
    margin-bottom: 20px;
}

.flash-message {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    font-size: 0.9em;
}

.flash-message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    color: #ff5555;
}

.flash-message.success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    color: #00ff00;
}

/* Premium Alert/Flash Styling */
.alert {
    padding: 16px 24px;
    margin: 20px auto;
    max-width: 1000px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95em;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none !important;
    animation: alert-slide-down 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #73e600, #00ff00, #73e600, transparent);
    background-size: 200% 100%;
    animation: holo-border 2s linear infinite;
}

.alert.info {
    background: rgba(115, 230, 0, 0.05);
    border-color: rgba(115, 230, 0, 0.3);
    color: #73e600;
    background: linear-gradient(to right, rgba(115, 230, 0, 0.1), transparent);
}

.alert.info::after {
    content: 'info';
    font-family: 'Material Symbols Outlined';
    font-size: 22px;
    order: -1;
}

@keyframes alert-slide-down {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Dashboard Styles */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-msg {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #fff;
    border-left: 4px solid #00ff00;
    padding-left: 15px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.tool-card {
    background: linear-gradient(135deg, rgba(35, 35, 35, 0.85) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 0 !important;
    /* STRICTLY BORDERLESS */
    border-radius: 24px;
    padding: 20px;
    text-decoration: none;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: none !important;
    min-height: 320px;
}

/* CYBER PULSE AMBIENT BREATHING */
@keyframes cyber-breathing {

    0%,
    100% {
        filter: none !important;
    }

    50% {
        filter: none !important;
    }
}

.tool-card {
    animation: cyber-breathing 4s infinite ease-in-out;
}

.tool-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    /* THICKER PLATINUM EDGE */
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.35) 20%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.35) 80%, transparent 100%);
    z-index: 5;
    transition: all 0.5s ease;
}

.tool-card>* {
    position: relative;
    z-index: 10;
}

.tool-card:hover {
    transform: translateY(-12px);
    /* AGGRESSIVE PREMIUM LIFT */
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.9) 0%, rgba(15, 15, 15, 0.98) 100%);
    box-shadow: none !important;
}

.tool-card:hover::before {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 20%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.5) 80%, transparent 100%);
}

.tool-card.disabled {
    opacity: 0.85;
    cursor: not-allowed;
    background: rgba(30, 30, 30, 0.65) !important;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none !important;
}

.tool-card.disabled:hover {
    transform: none;
    background: rgba(35, 35, 35, 0.7) !important;
    border-color: rgba(255, 255, 255, 0.1);
}

.tool-icon {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #00ff00;
}

.tool-card.disabled .tool-icon {
    color: #555;
}

.tool-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.tool-info h3 {
    font-family: 'Outfit', sans-serif;
    margin: 0 0 10px 0;
    color: #fff;
}

.tool-info p {
    font-size: 0.9em;
    color: #aaa;
    margin: 0;
}

.tool-status {
    margin-top: 20px;
    font-size: 0.8em;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-family: 'Outfit', sans-serif;
}

.tool-status.active {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    border: none;
}

.tool-status.inactive {
    border: none;
    color: #ff5555;
    background: rgba(255, 0, 0, 0.1);
    box-shadow: none !important;
}

.credit-section {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none !important;
    border-radius: 20px;
    padding: 30px;
    margin-top: 50px;
    text-align: center;
}

.credit-section h2 {
    font-family: 'Outfit', sans-serif;
    margin-top: 0;
    color: #fff;
}

.crypto-payment {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.crypto-option {
    background: #050505;
    border: 1px solid #333;
    padding: 20px;
    width: 200px;
    cursor: pointer;
    transition: all 0.3s;
}

.crypto-option:hover {
    border-color: #ffaa00;
}

.crypto-icon {
    font-size: 2em;
    color: #ffaa00;
    margin-bottom: 10px;
    display: block;
}

.crypto-name {
    font-family: 'Outfit', sans-serif;
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.crypto-rate {
    font-size: 0.8em;
    color: #777;
}

/* Specific Bolt Checker Overrides for new Layout */
.tool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.tool-header h1 {
    margin: 0;
    font-size: 2em;
    text-align: left;
}

.back-link {
    color: #aaa;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}


.back-link:hover {
    color: #fff;
}

/* Show Google reCAPTCHA Badge natively */
.grecaptcha-badge {
    visibility: visible !important;
}

@keyframes slowSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.logo-spin {
    animation: slowSpin 10s linear infinite;
}

img.logo-spin {
    animation: none !important;
}

/* Footer Design System */
.site-footer {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin: 100px 20px 80px;
    /* Increased bottom margin significantly */
    padding: 60px 40px 40px;
    position: relative;
    z-index: 10;
    box-shadow: none !important;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand .footer-logo img {
    width: 45px;
    height: 45px;
}

.footer-brand .brand-name {
    font-family: 'Audiowide', cursive;
    font-size: 1.4em;
    letter-spacing: 2px;
}

.footer-brand p {
    color: #888;
    line-height: 1.6;
    font-size: 0.9em;
    max-width: 300px;
}

.footer-heading {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-heading .material-symbols-outlined {
    color: #80ff00;
    font-size: 1.3em;
}

.footer-links .material-symbols-outlined {
    color: #80ff00;
    font-size: 1.25em;
}

.footer-social .material-symbols-outlined {
    color: #80ff00;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #00ff00;
    transform: translateX(5px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #555;
    font-size: 0.85em;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 255, 0, 0.1);
    border-color: #00ff00;
    color: #00ff00;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* 
   ==========================================================================
   PREMIUM LOADER STYLES
   ==========================================================================
*/

.gegga {
    width: 0;
    height: 0;
    position: absolute;
    overflow: hidden;
}


.snurra {
    filter: url(#gegga);
    /* Fixed from #39e600 to match the SVG ID */
}

.stopp1 {
    stop-color: #80ff00;
}

.stopp2 {
    stop-color: #009933;
}

.halvan {
    animation: Snurra1 10s infinite linear;
    stroke-dasharray: 180 800;
    fill: none;
    stroke: url(#gradient);
    stroke-width: 23;
    stroke-linecap: round;
}

.strecken {
    animation: Snurra1 3s infinite linear;
    stroke-dasharray: 26 54;
    fill: none;
    stroke: url(#gradient);
    stroke-width: 23;
    stroke-linecap: round;
}

.skugga {
    filter: blur(5px);
    opacity: 0.3;
    position: absolute;
    transform: translate(3px, 3px);
}

@keyframes Snurra1 {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -403px;
    }
}

.premium-loader-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    /* Semi-transparent black */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    pointer-events: all;
    will-change: opacity;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    zoom: 0.8;
    /* Keep the loader small */
    -webkit-font-smoothing: antialiased;
}

.loader-text {
    font-family: 'Orbitron', sans-serif;
    color: #73e600;
    letter-spacing: 4px;
    font-size: 0.9em;
    font-weight: 700;
    text-transform: uppercase;
    /* text-shadow: none !important; */
    animation: pulse-text 1.5s infinite ease-in-out;
}

@keyframes pulse-text {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(0.98);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- PREMIUM SPOTIFY BRAND STYLES --- */
.spotify-card {
    position: relative;
    overflow: hidden;
}

.spotify-card:hover {
    transform: scale(1.05) !important;
}

.spotify-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(34, 197, 94, 0.05), transparent);
    transform: skewX(-12deg) translateX(100%);
    transition: transform 1s ease;
    z-index: 1;
    pointer-events: none;
}

.spotify-card:hover .spotify-shine {
    transform: skewX(-12deg) translateX(-200%);
}

.spotify-ping-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    z-index: 10;
}

.spotify-ping-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(29, 185, 84, 0.2);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.spotify-brand-svg {
    width: 32px;
    height: 32px;
    fill: #1DB954;
    filter: none !important;
    transition: all 0.3s ease;
}

.spotify-card:hover .spotify-brand-svg {
    fill: #1ED760;
    filter: none !important;
}

/* --- PREMIUM BOLT BRAND STYLES --- */
.bolt-card {
    position: relative;
    overflow: hidden;
}

.bolt-card:hover {
    transform: scale(1.05) !important;
}

.bolt-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(52, 209, 134, 0.1), transparent);
    transform: skewX(-12deg) translateX(100%);
    transition: transform 1s ease;
    z-index: 1;
    pointer-events: none;
}

.bolt-card:hover .bolt-shine {
    transform: skewX(-12deg) translateX(-200%);
}

.bolt-ping-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    z-index: 10;
}

.bolt-ping-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(52, 209, 134, 0.3);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.bolt-brand-img {
    width: 32px;
    height: 32px;

    filter: none !important;
    transition: all 0.3s ease;
}

.bolt-card:hover .bolt-brand-img {

    filter: none !important;
}

/* --- TOOL DOMAIN DISPLAY --- */
.tool-domain {
    font-size: 0.7em;
    color: #666;
    margin-top: 8px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    text-transform: lowercase;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.tool-card:hover .tool-domain {
    color: #aaa;
    opacity: 1;
    text-shadow: none !important;
}

.tool-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    width: fit-content;
    padding: 6px 16px !important;
    border-radius: 8px !important;
}

/* --- PREMIUM PAYPAL BRAND STYLES --- */
.paypal-card {
    position: relative;
    overflow: hidden;
}

.paypal-card:hover {
    transform: scale(1.05) !important;
}

.paypal-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(0, 121, 193, 0.05), transparent);
    transform: skewX(-12deg) translateX(100%);
    transition: transform 1s ease;
    z-index: 1;
    pointer-events: none;
}

.paypal-card:hover .paypal-shine {
    transform: skewX(-12deg) translateX(-200%);
}

.paypal-ping-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    z-index: 10;
    opacity: 0.6;
    /* Dimmed for offline status */
}

.paypal-ping-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(0, 121, 193, 0.2);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.paypal-brand-img {
    width: 32px;
    height: 32px;
    filter: none !important;
    transition: all 0.3s ease;
}

.paypal-card:hover .paypal-brand-img {
    filter: none !important;
}

/* --- PREMIUM NETFLIX BRAND STYLES --- */
.netflix-card {
    position: relative;
    overflow: hidden;
}

.netflix-card:hover {
    transform: scale(1.05) !important;
}

.netflix-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(229, 9, 20, 0.05), transparent);
    transform: skewX(-12deg) translateX(100%);
    transition: transform 1s ease;
    z-index: 1;
    pointer-events: none;
}

.netflix-card:hover .netflix-shine {
    transform: skewX(-12deg) translateX(-200%);
}

.netflix-ping-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    z-index: 10;
    opacity: 0.6;
    /* Dimmed for offline status */
}

.netflix-ping-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(229, 9, 20, 0.2);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.netflix-brand-img {
    height: 32px;
    filter: none !important;
    transition: all 0.3s ease;
}

.netflix-card:hover .netflix-brand-img {
    filter: none !important;
}

/* --- PREMIUM APPLE BRAND STYLES --- */
.apple-card {
    position: relative;
    overflow: hidden;
}

.apple-card:hover {
    transform: scale(1.05) !important;
}

.apple-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(200, 200, 200, 0.05), transparent);
    transform: skewX(-12deg) translateX(100%);
    transition: transform 1s ease;
    z-index: 1;
    pointer-events: none;
}

.apple-card:hover .apple-shine {
    transform: skewX(-12deg) translateX(-200%);
}

.apple-ping-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    z-index: 10;
    opacity: 0.6;
    /* Dimmed for offline status */
}

.apple-ping-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(200, 200, 200, 0.2);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.apple-brand-img {
    height: 32px;
    filter: none !important;
    transition: all 0.3s ease;
}

.apple-card:hover .apple-brand-img {
    filter: none !important;
}

/* --- PREMIUM GMAIL (V4) BRAND STYLES --- */
.v4-card {
    position: relative;
    overflow: hidden;
}

.v4-card:hover {
    transform: scale(1.05) !important;
}

.v4-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(219, 68, 55, 0.05), transparent);
    transform: skewX(-12deg) translateX(100%);
    transition: transform 1s ease;
    z-index: 1;
    pointer-events: none;
}

.v4-card:hover .v4-shine {
    transform: skewX(-12deg) translateX(-200%);
}

.v4-ping-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    z-index: 10;
}

.v4-ping-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(219, 68, 55, 0.2);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.v4-brand-img {
    height: 32px;
    filter: none !important;
    transition: all 0.3s ease;
}

.v4-card:hover .v4-brand-img {
    filter: none !important;
    transform: scale(1.1);
}

/* --- OUTLOOK (V6) CARD --- */
.v6-card:hover {
    border-color: rgba(0, 164, 239, 0.4);
    box-shadow: none !important;
}

.v6-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(0, 164, 239, 0.05), transparent);
    transform: skewX(-12deg) translateX(100%);
    transition: transform 1s ease;
    z-index: 1;
    pointer-events: none;
}

.v6-card:hover .v6-shine {
    transform: skewX(-12deg) translateX(-200%);
}

.v6-ping-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    z-index: 10;
}

.v6-ping-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(0, 164, 239, 0.2);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.v6-brand-img {
    height: 32px;
    filter: none !important;
    transition: all 0.3s ease;
}

.v6-card:hover .v6-brand-img {
    filter: none !important;
    transform: scale(1.15);
}

/* --- NETFLIX (V5) CARD RED --- */
.v5-card:hover {
    border-color: rgba(229, 9, 20, 0.4);
    box-shadow: none !important;
}

.v5-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(229, 9, 20, 0.05), transparent);
    transform: skewX(-12deg) translateX(100%);
    transition: transform 1s ease;
    z-index: 1;
    pointer-events: none;
}

.v5-card:hover .v5-shine {
    transform: skewX(-12deg) translateX(-200%);
}

.v5-ping-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    z-index: 10;
}

.v5-ping-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(229, 9, 20, 0.2);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.v5-brand-img {
    height: 32px;
    filter: none !important;
    transition: all 0.3s ease;
}

.v5-card:hover .v5-brand-img {
    filter: none !important;
    transform: scale(1.15);
}

.balance-update-anim {
    animation: balance-glow 1s ease-in-out;
    color: #fff !important;
    text-shadow: none !important;
}

@keyframes balance-glow {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* --- Elite Rank Badges (Holographic System) --- */
.user-rank-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 10px;
    /* Modern Hardware Cut */
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65em;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-left: 10px;
    border: 0 !important;
    /* NO OLD STYLE BORDER */
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(10, 10, 10, 0.98) 100%);
    backdrop-filter: blur(10px);
    vertical-align: middle;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
    user-select: none;
    box-shadow: none !important;
}

.user-rank-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    /* THE SIGNATURE HARDWARE TOP-LINE */
    background: currentColor;
    z-index: 10;
}

.rank-icon-img {
    height: 24px;
    width: auto;
}

/* Rank Colors & Glows */
.rank-bronze {
    color: #cd7f32;
    background: linear-gradient(135deg, rgba(40, 25, 10, 0.7), rgba(10, 10, 10, 0.95)) !important;
}

.rank-silver {
    color: #c0c0c0;
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.7), rgba(10, 10, 10, 0.95)) !important;
}

.rank-gold {
    color: #ffd700;
    background: linear-gradient(135deg, rgba(60, 50, 10, 0.7), rgba(10, 10, 10, 0.95)) !important;
}

.rank-diamond {
    color: #b9f2ff;
    background: linear-gradient(135deg, rgba(20, 50, 60, 0.7), rgba(10, 10, 10, 0.95)) !important;
    animation: diamond-pulse 3s infinite ease-in-out;
}

.user-rank-badge:hover {
    transform: scale(1.1) translateY(-1px);
    border-color: currentColor;
    background: rgba(255, 255, 255, 0.05);
}

@keyframes diamond-pulse {

    0%,
    100% {
        box-shadow: none !important;
        filter: brightness(1);
    }

    50% {
        box-shadow: none !important;
        filter: brightness(1.2);
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE NAVBAR
   ========================================================================== */

/* Hamburger button - hidden on desktop */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: #73e600;
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: #73e600;
}

/* Mobile drawer - hidden by default */
.mobile-nav-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    pointer-events: none;
}

.mobile-nav-drawer.open {
    pointer-events: all;
}

.mobile-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-drawer.open .mobile-drawer-backdrop {
    opacity: 1;
}

.mobile-drawer-panel {
    position: absolute;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100%;
    background: rgba(8, 8, 8, 0.97);
    border-left: 1px solid rgba(115, 230, 0, 0.15);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-drawer.open .mobile-drawer-panel {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-drawer-user {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mobile-drawer-username {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8em;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.mobile-drawer-credits {
    font-size: 0.72em;
    color: #73e600;
    font-weight: 600;
}

.mobile-drawer-close {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #aaa;
    font-size: 18px;
    transition: all 0.2s;
}

.mobile-drawer-panel .material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
}

.mobile-drawer-close:hover {
    background: rgba(115, 230, 0, 0.1);
    color: #73e600;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    color: #aaa;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72em;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 12px;
    transition: all 0.2s ease;
    border: 0 !important;
    /* Fixed: Removed line border */
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(115, 230, 0, 0.08);
    color: #73e600;
    box-shadow: none !important;
}

.mobile-nav-link .material-symbols-outlined {
    font-size: 20px;
    opacity: 0.8;
}

.mobile-nav-link.logout-mobile {
    color: #ff5555;
    margin-top: 8px;
}

.mobile-nav-link.logout-mobile:hover {
    background: rgba(255, 85, 85, 0.08);
    color: #ff5555;
}

.mobile-nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 8px 4px;
}

.mobile-credits-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(115, 230, 0, 0.04);
    border: 0 !important;
    /* Fixed: Removed line border */
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 8px;
    gap: 10px;
}

.mobile-credits-bar span:not(.material-symbols-outlined) {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.68em;
    color: #888;
    letter-spacing: 1px;
    font-weight: 700;
}

.mobile-credits-bar .mobile-credit-value {
    color: #73e600;
    font-size: 0.9em;
    font-weight: 800;
    margin-left: auto;
    margin-right: 10px;
}

.mobile-add-btn {
    background: rgba(115, 230, 0, 0.1);
    color: #73e600;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65em;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    border: 1px solid rgba(115, 230, 0, 0.2);
}

.mobile-add-btn:hover {
    background: #73e600;
    color: #000;
    box-shadow: none !important;
}

@media (max-width: 900px) {

    /* Shrink the nav links gap on tablet */
    .nav-links {
        gap: 10px;
    }

    .nav-tab-item {
        font-size: 0.65em;
        padding: 6px 10px;
    }

    .wallet-badge {
        padding: 5px 10px;
    }
}

@media (max-width: 768px) {

    /* Make navbar sticky at top on mobile */
    .navbar {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        margin: 0;
        border-radius: 0;
        padding: 12px 16px;
        z-index: 1000;
        border-left: none;
        border-right: none;
        border-top: none;
    }

    /* Show hamburger */
    .nav-hamburger {
        display: flex;
    }

    /* Hide desktop nav links */
    .nav-links {
        display: none !important;
    }

    /* Show mobile drawer */
    .mobile-nav-drawer {
        display: block;
    }

    /* Shrink wallet badge on mobile */
    .wallet-badge {
        padding: 5px 8px;
        font-size: 0.75em;
        gap: 6px;
    }

    /* Add top padding to body content to account for fixed navbar */
    .container {
        padding-top: 80px;
    }

    /* Notification panel full-width on mobile */
    .notification-panel {
        width: calc(100vw - 32px) !important;
        right: -80px !important;
    }

    /* Profile popup full-width on mobile */
    .profile-popup-panel {
        right: -50px !important;
        width: 260px !important;
    }

    /* Nav brand smaller on mobile */
    .nav-brand {
        font-size: 1.1em !important;
    }

    .nav-brand img,
    .nav-brand .logo-spin {
        height: 32px !important;
    }

    /* Fix: Reduce giant gap and vertically align hamburger */
    .navbar>div:first-child {
        gap: 12px !important;
    }

    .nav-hamburger {
        margin-top: -2px;
        /* Lift it slightly to match logo baseline */
    }
}