* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000000;
    color: #e0e0e0;
    min-height: 100vh;
    overflow-y: auto;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a0a2e 25%, #000000 50%, #0a0a1a 75%, #000000 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    z-index: 0;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.login-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.login-panel {
    background: rgba(10, 10, 20, 0.95);
    border: 1px solid #2a2a3a;
    border-radius: 12px;
    padding: 48px;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
}

.login-logo {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    padding: 12px 16px;
    background: #0a0a0a;
    border: 1px solid #2a2a3a;
    border-radius: 6px;
    color: #e0e0e0;
    font-size: 14px;
    transition: all 0.2s ease;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    cursor: pointer;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #2a2a3a;
    background: #0a0a0a;
    display: inline-grid;
    place-content: center;
    transition: all 0.15s ease;
}

.remember-me input[type="checkbox"]:hover {
    border-color: #3a3a4a;
}

.remember-me input[type="checkbox"]:checked {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.2);
}

.remember-me input[type="checkbox"]:checked::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: #8b5cf6;
}

.login-error {
    color: #ef4444;
    font-size: 13px;
    text-align: center;
    min-height: 20px;
    display: none;
}

.login-error.show {
    display: block;
}

.dashboard {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.dashboard.hidden {
    display: none;
}

.dashboard-panel {
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    background: rgba(10, 10, 20, 0.95);
    border: 1px solid #2a2a3a;
    border-radius: 12px;
    display: flex;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
    overflow: hidden;
}

.panel-left {
    width: 240px;
    background: rgba(5, 5, 15, 0.8);
    border-right: 1px solid #2a2a3a;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #444;
    transition: all 0.3s ease;
}

.status-dot.active {
    background: #8b5cf6;
    box-shadow: 0 0 12px #8b5cf6;
}

.status-text {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.headless-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: rgba(15, 15, 26, 0.6);
    border: 1px solid #2a2a3a;
    border-radius: 6px;
}

.headless-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.headless-value {
    font-size: 12px;
    font-weight: 600;
    color: #8b5cf6;
}

.scraper-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.scraper-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: rgba(15, 15, 26, 0.4);
    border: 1px solid transparent;
}

.scraper-item:hover {
    background: rgba(26, 26, 42, 0.6);
}

.scraper-item.active {
    background: rgba(26, 26, 42, 0.8);
    border-color: #8b5cf6;
}

.scraper-name {
    font-size: 13px;
    font-weight: 500;
    color: #d0d0d0;
}

.scraper-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #444;
    transition: all 0.3s ease;
}

.scraper-item.active .scraper-status {
    background: #8b5cf6;
    box-shadow: 0 0 8px #8b5cf6;
}

.panel-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    overflow: hidden;
}

.console {
    flex: 1;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #2a2a3a;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

.console-header {
    padding: 12px 16px;
    border-bottom: 1px solid #2a2a3a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 20, 0.8);
}

.console-header span {
    font-size: 11px;
    font-weight: 600;
    color: #8b5cf6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-clear {
    background: transparent;
    border: 1px solid #2a2a3a;
    color: #666;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-clear:hover {
    background: rgba(26, 26, 42, 0.6);
    border-color: #3a3a4a;
    color: #8b5cf6;
}

.log-container {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.6;
    color: #d0d0d0;
    min-height: 0;
}

.log-entry {
    margin-bottom: 2px;
    padding: 4px 0;
    animation: fadeIn 0.2s ease;
    word-wrap: break-word;
}

.log-entry.system {
    color: #8b5cf6;
}

.log-entry.message {
    color: #d0d0d0;
}

.log-entry.error {
    color: #ef4444;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-2px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.log-container::-webkit-scrollbar {
    width: 6px;
}

.log-container::-webkit-scrollbar-track {
    background: transparent;
}

.log-container::-webkit-scrollbar-thumb {
    background: #2a2a3a;
    border-radius: 3px;
}

.log-container::-webkit-scrollbar-thumb:hover {
    background: #3a3a4a;
}

.controls {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.headless-inline-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.bot-status-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bot-status-pill {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    border: 1px solid #2a2a3a;
    background: rgba(15, 15, 26, 0.6);
    color: #aaa;
}

.bot-status-on {
    border-color: rgba(34, 197, 94, 0.45);
    color: #22c55e;
    background: rgba(34, 197, 94, 0.08);
}

.bot-status-off {
    border-color: rgba(148, 163, 184, 0.45);
    color: #94a3b8;
}

.public-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.public-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.public-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.public-site-icon {
    width: 20px;
    height: 20px;
    border-radius: 6px;
}

.public-logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.top-user {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.login-pill {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(139, 92, 246, 0.85);
    background: radial-gradient(circle at 0% 0%, rgba(168, 85, 247, 0.4), transparent 55%), rgba(17, 24, 39, 0.96);
    color: #e5e0ff;
    font-size: 12px;
    letter-spacing: 0.2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9), 0 0 18px rgba(88, 28, 135, 0.6);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.login-pill:hover {
    transform: translateY(-1px);
    border-color: #c4b5fd;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 1), 0 0 24px rgba(129, 140, 248, 0.85);
}

.login-pill-logged {
    cursor: pointer;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9);
}

.login-pill-logged:hover {
    transform: none;
    border-color: rgba(139, 92, 246, 0.85);
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9);
}

.login-pill-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #a5b4fc;
}

.login-pill-value {
    font-weight: 600;
}

.profile-pill {
    position: relative;
}

.profile-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    min-width: 220px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(10, 10, 20, 0.98);
    border: 1px solid #2a2a3a;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.7);
    z-index: 2100;
    opacity: 0;
    transform: translateY(-4px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.profile-dropdown.profile-dropdown-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.profile-dropdown-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
    margin-bottom: 6px;
}

.profile-dropdown-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.profile-dropdown-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
}

.profile-dropdown-icon {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    flex-shrink: 0;
}

.profile-dropdown-site {
    color: #e5e7eb;
}

.profile-dropdown-username {
    color: #9ca3af;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

.profile-dropdown-empty {
    font-size: 12px;
    color: #6b7280;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.profile-avatar-wrap {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at 30% 0%, #4b5563, #020617);
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
}

.profile-avatar {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #e5e7eb;
}

.profile-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
    display: block;
}

.profile-header-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.profile-header-id {
    font-size: 13px;
    font-weight: 500;
    color: #e5e7eb;
}

.profile-dropdown-divider {
    height: 1px;
    background: #1f2937;
    margin: 6px 0 8px;
}

.profile-avatar-small {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid rgba(148, 163, 184, 0.7);
    cursor: pointer;
}

.login-pill-logged {
    cursor: pointer;
}

.public-nav {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.public-nav a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.15s ease;
}

.public-nav a:hover {
    color: #fff;
}

.public-main {
    flex: 1;
    padding: 0 40px 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-section {
    width: 100%;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 720px;
    text-align: center;
    padding: 16px;
}

.hero-content h1 {
    font-size: 32px;
    margin-bottom: 16px;
}

.hero-content p {
    color: #aaa;
    margin-bottom: 24px;
}

.hero-cta {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.hero-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    opacity: 0;
}

.hero-cta:hover::after {
    opacity: 1;
    animation: heroSparkle 0.7s ease-out;
}

@keyframes heroSparkle {
    from {
        transform: translateX(0) skewX(-20deg);
    }
    to {
        transform: translateX(260%) skewX(-20deg);
    }
}

.sites-section {
    width: 100%;
    padding-top: 160px;
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
}

.contact-section {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 120px;
    display: flex;
    justify-content: center;
}

.contact-inner {
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-header {
    width: 100%;
    text-align: center;
    font-size: 20px;
    margin-bottom: 24px;
}

.contact-info {
    width: 100%;
    max-width: 560px;
    padding: 24px;
    border-radius: 12px;
    background: rgba(10, 10, 20, 0.95);
    border: 1px solid #2a2a3a;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.12);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(20, 20, 30, 0.5);
    transition: background 0.2s ease;
}

.contact-item:hover {
    background: rgba(30, 30, 40, 0.7);
}

.contact-label {
    font-size: 14px;
    color: #888;
    min-width: 60px;
}

.contact-value {
    font-size: 14px;
    color: #8b5cf6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-value:hover {
    color: #c4b5fd;
}

.sites-inner {
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sites-section h2 {
    font-size: 20px;
    margin-bottom: 4px;
}

.sites-header {
    width: 100%;
    text-align: center;
    margin-bottom: 18px;
}

.sites-category {
    font-size: 14px;
    color: #888;
    margin-bottom: 16px;
}

.category-box {
    width: 100%;
    max-width: 560px;
    position: relative;
    padding: 20px 16px 16px;
    border-radius: 12px;
    background: rgba(10, 10, 20, 0.95);
    border: 1px solid #2a2a3a;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.12);
}

.category-title {
    position: absolute;
    top: 0;
    left: 16px;
    transform: translateY(-50%);
    padding: 6px 10px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8b5cf6;
    background: #0a0a14;
    border: 1px solid #2a2a3a;
    border-radius: 999px;
}

.site-button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 10px;
    border: 1px solid #2a2a3a;
    background: rgba(0, 0, 0, 0.55);
    color: #e0e0e0;
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.site-button:hover {
    transform: translateY(-1px);
    border-color: #8b5cf6;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.75);
}

.site-button-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.site-button:hover .site-button-icon {
    transform: translateX(1px) scale(1.08);
    box-shadow: 0 0 18px rgba(139, 92, 246, 0.45);
}

.site-button-text {
    font-size: 14px;
    font-weight: 600;
}

.gamblit-page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.gamblit-layout-outer {
    display: flex;
    padding: 16px 40px 80px;
    gap: 24px;
}

.tracker-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 4px;
    position: relative;
}

.earn-btn-container {
    width: 100%;
    margin-top: 12px;
}

.earn-btn-container .earn-btn {
    display: flex !important;
}

.earn-btn {
    width: 100%;
    padding: 11.2px 16px;
    font-size: 15px;
    border-radius: 8px;
    box-shadow: 0 10px 32px rgba(139, 92, 246, 0.18);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 1px solid rgba(139, 92, 246, 0.6);
    background: radial-gradient(circle at 0% 0%, rgba(168, 85, 247, 0.3), transparent 55%), rgba(17, 24, 39, 0.95);
    color: #e5d9ff;
}

.gamblit-menu-list .earn-btn {
    display: none;
}

.earn-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    opacity: 0;
}

.earn-btn:hover::after {
    opacity: 1;
    animation: heroSparkle 0.7s ease-out;
}

.earn-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.gamblit-header {
    width: 100%;
    border-bottom: 1px solid #1f2933;
    padding: 12px 40px;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    width: 100%;
}

.top-bar-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.top-bar-center {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    padding-left: 28px;
}

.top-bar-right {
    flex: 1;
}

.gamblit-modes {
    width: 180px;
    align-self: flex-start;
    padding: 16px 14px;
    border-radius: 10px;
    background: rgba(5, 5, 15, 0.85);
    border: 1px solid #2a2a3a;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 220px;
    overflow-y: auto;
}

.gamblit-modes-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.gamblit-modes-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mode-item {
    width: 100%;
    padding: 6px 8px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: rgba(15, 15, 26, 0.6);
    color: #d0d0d0;
    font-size: 12px;
    text-align: left;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mode-item:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.mode-item:hover {
    background: rgba(26, 26, 42, 0.8);
}

.mode-item-active {
    border-color: #8b5cf6;
    background: rgba(26, 26, 42, 0.95);
}

.mode-item-inactive {
    border-color: transparent;
    background: rgba(15, 15, 26, 0.6);
    color: #d0d0d0;
}

.mode-item-inactive:hover {
    background: rgba(26, 26, 42, 0.8);
}

.mode-item-primary {
    background: transparent;
    border-color: transparent;
    color: transparent;
    background-image: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 700;
}

.mode-item-primary:hover {
    background: rgba(15, 15, 26, 0.85);
}

.gamblit-menu {
    width: 180px;
    align-self: flex-start;
    padding: 16px 14px;
    border-radius: 10px;
    background: rgba(5, 5, 15, 0.85);
    border: 1px solid #2a2a3a;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gamblit-menu-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 4px;
}

.gamblit-menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    color: #d0d0d0;
    background: rgba(15, 15, 26, 0.5);
    border: 1px solid transparent;
    transition: all 0.15s ease;
}

.gamblit-menu-item:hover {
    background: rgba(26, 26, 42, 0.7);
}

.gamblit-menu-item.active {
    border-color: #8b5cf6;
    background: rgba(26, 26, 42, 0.9);
}

.gamblit-menu-icon {
    width: 16px;
    height: 16px;
    border-radius: 6px;
}

.gamblit-center {
    flex: 1;
    max-width: 1300px;
    margin: 40px auto 80px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.earn-btn {
    position: relative;
    width: 100%;
    max-width: 560px;
    padding: 11.2px 16px;
    margin-top: 16px;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.6);
    background: radial-gradient(circle at 0% 0%, rgba(168, 85, 247, 0.3), transparent 55%), rgba(17, 24, 39, 0.95);
    color: #e5d9ff;
    font-size: 15px;
    letter-spacing: 0.3px;
    cursor: pointer;
    box-shadow: 0 10px 32px rgba(139, 92, 246, 0.18);
    transition: all 0.2s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.earn-btn:hover {
    border-color: #a855f7;
}

.about-modal-body {
    padding: 20px 0;
    line-height: 1.6;
    color: #e5e7eb;
}

.earn-modal-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
}

.earn-modal-text {
    color: #bbb;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 12px;
}

.earn-rate {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid #2a2a3a;
    background: rgba(0, 0, 0, 0.35);
    color: #d0d0d0;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 12px;
    margin-bottom: 14px;
}

.earn-watch-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.earn-warning {
    color: #ef4444;
    font-size: 12px;
    margin-top: 10px;
}

.ad-box {
    border: 1px solid #2a2a3a;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 13px;
    margin: 10px 0 12px;
}

.ad-progress {
    height: 10px;
    border-radius: 999px;
    border: 1px solid #2a2a3a;
    background: rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.ad-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(168, 85, 247, 0.9), rgba(192, 132, 252, 0.9));
    transition: width 0.1s linear;
}

.ad-timer {
    margin-top: 10px;
    color: #d0d0d0;
    font-size: 12px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

.ad-paused {
    margin-top: 8px;
    color: #fbbf24;
    font-size: 12px;
}

.notification {
    border: 1px solid #2a2a3a;
    border-radius: 10px;
    background: rgba(10, 10, 20, 0.95);
    color: #e0e0e0;
    padding: 10px 12px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.notification.success {
    border-color: rgba(34, 197, 94, 0.55);
    color: #bbf7d0;
    background: rgba(34, 197, 94, 0.08);
}

.notification.error {
    border-color: rgba(239, 68, 68, 0.45);
    color: #fecaca;
    background: rgba(239, 68, 68, 0.06);
}

.notification-container {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 4000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.worker-banner {
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.35);
}

.worker-banner-title {
    font-weight: 700;
    margin-bottom: 6px;
    color: #ef4444;
}

.worker-banner-text {
    color: #ddd;
    margin-bottom: 8px;
    font-size: 13px;
}

.worker-banner-list {
    margin: 0;
    padding-left: 18px;
    color: #bbb;
    font-size: 13px;
}

.worker-banner code {
    color: #fff;
}

.tracker-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
}

.tracker-panels {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.panel {
    background: rgba(10, 10, 20, 0.95);
    border: 1px solid #2a2a3a;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.panel-narrow,
.panel-wide {
    width: 585px;
    height: 400px;
}

.panel-header {
    padding: 12px 14px;
    border-bottom: 1px solid #2a2a3a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(10, 10, 20, 0.8);
    font-size: 11px;
    font-weight: 600;
    color: #8b5cf6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.panel-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.settings-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid #2a2a3a;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.35);
    color: #aaa;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.settings-btn:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.settings-btn svg {
    width: 16px;
    height: 16px;
}

.settings-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    min-width: 280px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(10, 10, 20, 0.98);
    border: 1px solid #2a2a3a;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.7);
    z-index: 2100;
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.settings-dropdown.settings-dropdown-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.settings-dropdown-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.settings-label {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.settings-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #2a2a3a;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: #e0e0e0;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.settings-select:hover {
    border-color: #8b5cf6;
}

.settings-select:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.settings-switch-group {
    display: flex;
    gap: 8px;
    padding: 4px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #2a2a3a;
}

.settings-switch-option {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.settings-switch-option:hover {
    color: #e0e0e0;
}

.settings-switch-option.settings-switch-active {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.15);
}

.settings-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.settings-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

.settings-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.settings-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(42, 42, 58, 0.8);
    border: 1px solid #2a2a3a;
    transition: 0.3s;
    border-radius: 24px;
}

.settings-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: #aaa;
    transition: 0.3s;
    border-radius: 50%;
}

.settings-toggle input:checked + .settings-toggle-slider {
    background-color: rgba(139, 92, 246, 0.3);
    border-color: #8b5cf6;
}

.settings-toggle input:checked + .settings-toggle-slider:before {
    transform: translateX(20px);
    background-color: #8b5cf6;
}

.settings-modal-content {
    position: relative;
    max-width: 420px;
}

.settings-modal-blurred {
    filter: blur(4px);
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}

.settings-coming-soon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 10;
    pointer-events: none;
}

.lock-icon {
    width: 48px;
    height: 48px;
    color: #8b5cf6;
    opacity: 0.8;
}

.coming-soon-text {
    font-size: 16px;
    font-weight: 600;
    color: #8b5cf6;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


.status-pill {
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid #2a2a3a;
    color: #aaa;
    background: rgba(0,0,0,0.35);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
}

.status-pill-on {
    border-color: rgba(34, 197, 94, 0.45);
    color: #22c55e;
    background: rgba(34, 197, 94, 0.08);
}

.status-pill-off {
    border-color: rgba(239, 68, 68, 0.35);
    color: #ef4444;
    background: rgba(239, 68, 68, 0.06);
}

.log-container-small {
    height: 100%;
    max-height: 400px;
    overflow-y: auto;
    padding-bottom: 16px;
}

.gamblit-intro {
    text-align: center;
}

.gamblit-page-title {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.gamblit-page-subtitle {
    font-size: 14px;
    color: #aaa;
    max-width: 640px;
    margin: 0 auto;
}

.top-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 40px;
}

.tracker-actions {
    display: flex;
    justify-content: center;
    padding-top: 8px;
    gap: 12px;
}

.btn-verify {
    padding: 14px 34px;
    font-size: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 32px rgba(139, 92, 246, 0.18);
    position: relative;
    overflow: hidden;
}

.btn-verify::after {
    content: '';
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    opacity: 0;
}

.btn-verify:hover::after {
    opacity: 1;
    animation: heroSparkle 0.7s ease-out;
}

.btn-verify:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.balance-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(10, 10, 20, 0.95);
    border: 1px solid #2a2a3a;
    margin: 0 auto 5px 0;
    max-width: 220px;
}

@media (max-width: 900px) {
  .gamblit-layout-outer {
      flex-direction: column;
      padding: 16px 16px 60px;
  }

  .gamblit-modes {
      width: 100%;
      max-height: none;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
  }

  .gamblit-modes-list {
      flex-direction: row;
      overflow-x: auto;
  }

  .gamblit-menu {
      width: 100%;
      margin-top: 8px;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
  }

  .tracker-panels {
      flex-direction: column;
      align-items: center;
  }

  .panel-narrow,
  .panel-wide {
      width: 100%;
      max-width: 585px;
  }
}

@media (max-width: 600px) {
  .public-header {
      padding: 16px 16px;
  }

  .public-main {
      padding: 0 16px 120px;
  }

  .gamblit-layout-outer {
      padding: 12px 12px 48px;
  }

  .gamblit-center {
      margin: 24px auto 60px;
  }

  .tracker-actions {
      flex-direction: column;
  }

  .btn-verify {
      width: 100%;
      justify-content: center;
  }

  .balance-box {
      max-width: 100%;
  }
}

.balance-icon {
    width: 20px;
    height: 20px;
    border-radius: 6px;
}

.balance-amount {
    font-size: 14px;
    font-weight: 600;
}

.about-site {
    margin-top: 16px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-toggle {
    background: transparent;
    border: 1px solid #2a2a3a;
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 12px;
    color: #aaa;
    cursor: pointer;
    transition: all 0.15s ease;
}

.about-toggle:hover {
    border-color: #8b5cf6;
    color: #e0e0e0;
}

.about-content {
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #2a2a3a;
    background: rgba(10, 10, 20, 0.9);
    font-size: 13px;
    color: #bbb;
    animation: aboutExpand 0.22s ease-out;
    transform-origin: top center;
}

.about-link-label {
    font-size: 13px;
}

.about-link {
    color: #8b5cf6;
    text-decoration: none;
    border-bottom: 1px dashed rgba(139, 92, 246, 0.6);
    padding-bottom: 1px;
}

.about-link:hover {
    color: #c4b5fd;
    border-bottom-color: #c4b5fd;
}

@keyframes aboutExpand {
    from {
        opacity: 0;
        transform: scaleY(0.8);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

.notification-container {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 3000;
}

.notification {
    min-width: 220px;
    max-width: 320px;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(10, 10, 20, 0.96);
    border: 1px solid #2a2a3a;
    font-size: 13px;
    animation: fadeIn 0.2s ease;
}

.verification-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.verification-row {
    display: flex;
    gap: 8px;
}

.verification-row input {
    flex: 1;
    padding: 10px 12px;
    background: #0a0a0a;
    border-radius: 6px;
    border: 1px solid #2a2a3a;
    color: #e0e0e0;
    font-size: 14px;
}

.verification-row input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.verification-info {
    font-size: 14px;
}

.verification-countdown {
    font-size: 13px;
    color: #aaa;
}

.gamblit-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.5fr) minmax(0, 1.5fr);
    gap: 16px;
}

.gamblit-chat {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    border: 1px solid #2a2a3a;
    min-height: 260px;
}

.gamblit-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.verification-status-panel {
    padding: 16px;
    background: rgba(10, 10, 20, 0.95);
    border-radius: 8px;
    border: 1px solid #2a2a3a;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal.hidden {
    display: none;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: rgba(10, 10, 20, 0.98);
    border-radius: 12px;
    border: 1px solid #2a2a3a;
    padding: 24px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    z-index: 1;
    animation: modalPop 0.22s ease-out;
}

body.loading-active {
    overflow: hidden;
}

body.loading-active .public-shell,
body.loading-active .gamblit-page {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.public-shell,
.gamblit-page {
    transition: opacity 0.3s ease;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4000;
}

.loading-overlay.hidden {
    display: none !important;
}

.auth-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.auth-loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.auth-loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.auth-loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

.auth-spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #8b5cf6;
    border-radius: 50%;
    animation: authSpin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.auth-spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
    border-top-color: #8b5cf6;
    border-width: 3px;
}

.auth-spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: #a855f7;
    border-width: 2.5px;
    width: 70px;
    height: 70px;
    top: 5px;
    left: 5px;
}

.auth-spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: #c084fc;
    border-width: 2px;
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
}

.auth-spinner-ring:nth-child(4) {
    animation-delay: 0s;
    border-top-color: #d8b4fe;
    border-width: 1.5px;
    width: 50px;
    height: 50px;
    top: 15px;
    left: 15px;
}

@keyframes authSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.auth-loading-text {
    color: #e5d9ff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: authPulse 2s ease-in-out infinite;
}

@keyframes authPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 3px solid rgba(148, 163, 184, 0.4);
    border-top-color: #8b5cf6;
    animation: spinAnim 0.8s linear infinite;
}

@keyframes spinAnim {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-title {
    font-size: 18px;
    margin-bottom: 16px;
}

.modal-actions {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.auth-modal {
    max-width: 440px;
    padding: 28px 26px 22px;
}

.auth-modal-header {
    margin-bottom: 14px;
}

.auth-modal-title {
    font-size: 20px;
    font-weight: 700;
    background-image: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.4px;
}

.auth-modal-subtitle {
    margin-top: 4px;
    font-size: 13px;
    color: #9ca3af;
}

.auth-tabs {
    display: inline-flex;
    padding: 4px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid #1f2937;
    margin-bottom: 16px;
    gap: 2px;
}

.auth-tab {
    border: none;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    color: #9ca3af;
    background: transparent;
    cursor: pointer;
    transition: all 0.15s ease;
}

.auth-tab-active {
    background: radial-gradient(circle at 0% 0%, rgba(168, 85, 247, 0.35), transparent 55%),
                rgba(31, 41, 55, 0.95);
    color: #e5e7eb;
    box-shadow: 0 0 0 1px rgba(55, 65, 81, 0.9);
}

.auth-view {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.auth-field-group label {
    font-size: 12px;
    color: #9ca3af;
}

.auth-field-group input {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #1f2937;
    background: #020617;
    color: #e5e7eb;
    font-size: 13px;
    transition: all 0.15s ease;
}

.auth-field-group input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.25);
}

.auth-actions-row {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.auth-error {
    margin-top: 10px;
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid transparent;
    color: #fecaca;
    background: rgba(239, 68, 68, 0.08);
    display: none;
}

.auth-error.show {
    display: block;
}

.auth-error.success {
    color: #bbf7d0;
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.5);
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background-image: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    color: white;
}

.btn-primary:hover {
    background: #7c3aed;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn-danger {
    background: #ef4444;
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-secondary {
    background: rgba(26, 26, 42, 0.6);
    color: #e0e0e0;
    border: 1px solid #2a2a3a;
}

.btn-secondary:hover {
    background: rgba(42, 42, 58, 0.8);
    border-color: #3a3a4a;
}

.btn-info {
    background: rgba(26, 26, 42, 0.6);
    color: #e0e0e0;
    border: 1px solid #2a2a3a;
}

.btn-info:hover {
    background: rgba(42, 42, 58, 0.8);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.hidden {
    display: none !important;
}
