/* ===== AXIOM CUSTOM STYLES ===== */

/* Переключение вкладок с видео */
.features-tabs {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.feature-tab {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-tab:hover::before {
    left: 100%;
}

.feature-tab:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.feature-tab.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: #6366f1;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.feature-video-container {
    display: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: fadeIn 0.5s ease;
}

.feature-video-container.active {
    display: block;
}

.feature-video-container video {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== AXIOM ALLOCATION WIDGET (DESKTOP) ===== */
.axiom-widget {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
    display: none;
}

@media (min-width: 769px) {
    .axiom-widget {
        display: block;
    }
}

.axiom-widget-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: 2px solid rgba(99, 102, 241, 0.5);
    border-radius: 50px;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.6),
                0 0 40px rgba(99, 102, 241, 0.4),
                inset 0 1px 2px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: widget-glow 3s ease-in-out infinite;
}

.axiom-widget-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 70%
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Дополнительная анимация пульсации для кнопки */
.axiom-widget-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.8);
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.8);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(99, 102, 241, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    }
}

@keyframes widget-glow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(99, 102, 241, 0.6),
                    0 0 40px rgba(99, 102, 241, 0.4),
                    inset 0 1px 2px rgba(255, 255, 255, 0.3);
        border-color: rgba(99, 102, 241, 0.5);
    }
    50% {
        box-shadow: 0 8px 40px rgba(99, 102, 241, 0.8),
                    0 0 60px rgba(99, 102, 241, 0.6),
                    inset 0 1px 2px rgba(255, 255, 255, 0.4);
        border-color: rgba(139, 92, 246, 0.8);
    }
}

.axiom-widget-btn:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 48px rgba(99, 102, 241, 0.8),
                0 0 80px rgba(99, 102, 241, 0.6),
                inset 0 1px 2px rgba(255, 255, 255, 0.5);
    border-color: rgba(139, 92, 246, 1);
}

.axiom-widget-btn .widget-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    animation: icon-pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

@keyframes icon-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.axiom-widget-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 16px);
    transform: translateY(30px);
    width: 440px;
    max-width: calc(100vw - 60px);
    background: rgba(10, 11, 13, 0.98);
    border: 2px solid rgba(99, 102, 241, 0.4);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9),
                0 0 40px rgba(99, 102, 241, 0.4),
                0 8px 32px rgba(99, 102, 241, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10000;
}

.axiom-widget-panel.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.widget-panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
}

.widget-panel-header .panel-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.widget-panel-header h3 {
    flex: 1;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.panel-close {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
    color: #FFFFFF;
}

.panel-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.widget-panel-content {
    color: rgba(255, 255, 255, 0.9);
}

.widget-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.4);
    border-radius: 8px;
    color: #8b5cf6;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.widget-badge svg {
    width: 18px;
    height: 18px;
    color: #8b5cf6;
    flex-shrink: 0;
}

.widget-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.widget-eligibility {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.widget-eligibility h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #8b5cf6;
    margin: 0 0 12px 0;
}

.widget-eligibility h4 svg {
    width: 20px;
    height: 20px;
    color: #8b5cf6;
    flex-shrink: 0;
}

.widget-eligibility ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-eligibility li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.widget-eligibility li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #8b5cf6;
    font-size: 20px;
}

.widget-cta {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(153, 69, 255, 0.1) 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.widget-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.widget-highlight svg {
    color: #8b5cf6;
    flex-shrink: 0;
}

.widget-cta-title {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 4px 0;
}

.widget-cta-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.widget-download-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.widget-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.widget-footer {
    margin-top: 16px;
    text-align: center;
}

.widget-footer p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.widget-footer svg {
    width: 14px;
    height: 14px;
}

/* ===== AXIOM ALLOCATION MODAL ===== */
.axiom-allocation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.axiom-allocation-modal.active {
    display: flex;
}

.axiom-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.axiom-modal-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    background: linear-gradient(135deg, #1a1b2e 0%, #16213e 100%);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
    animation: modalSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.axiom-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #FFFFFF;
}

.axiom-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.axiom-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.axiom-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    color: #8b5cf6;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.axiom-modal-title {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 12px 0;
}

.axiom-modal-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.axiom-eligibility-list {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.axiom-eligibility-list h4 {
    font-size: 18px;
    font-weight: 700;
    color: #8b5cf6;
    margin: 0 0 16px 0;
}

.axiom-eligibility-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.axiom-eligibility-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.axiom-eligibility-list li:last-child {
    border-bottom: none;
}

.axiom-eligibility-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-size: 20px;
    font-weight: 700;
}

.axiom-check-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    border: none;
    border-radius: 16px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.axiom-check-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.axiom-check-btn:hover::before {
    left: 100%;
}

.axiom-check-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.6);
}

/* ===== MOBILE REWARD MODAL ===== */
.mobile-reward-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.mobile-reward-modal.active {
    display: flex;
}

.reward-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.reward-modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(135deg, #1a1b2e 0%, #16213e 100%);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
    animation: modalSlideUp 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* КРИТИЧЕСКИ ВАЖНО: Скрываем неактивные шаги */
.reward-step {
    display: none;
}

.reward-step.active {
    display: block;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reward-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #FFFFFF;
    z-index: 10;
}

.reward-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Scanning Animation */
.reward-scanning {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.reward-scan-icon {
    margin: 0 auto 24px;
    animation: pulse 2s infinite;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.15);
    }
}

.reward-scan-icon circle {
    stroke: #8b5cf6;
    stroke-dasharray: 188;
    stroke-dashoffset: 0;
    animation: scan-rotate 2s linear infinite, scan-dash 1.5s ease-in-out infinite;
    transform-origin: center;
}

@keyframes scan-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes scan-dash {
    0% {
        stroke-dashoffset: 188;
    }
    50% {
        stroke-dashoffset: 47;
    }
    100% {
        stroke-dashoffset: 188;
    }
}

/* Success state for scan icon */
.reward-scan-icon.scan-success {
    animation: success-pop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.8));
}

@keyframes success-pop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.reward-scan-icon.scan-success .success-circle {
    stroke: #8b5cf6;
    stroke-dasharray: 188;
    stroke-dashoffset: 0;
    animation: draw-circle 0.6s ease-out forwards;
}

.reward-scan-icon.scan-success .success-check {
    stroke: #8b5cf6;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: draw-check 0.4s 0.3s ease-out forwards;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes draw-circle {
    from {
        stroke-dashoffset: 188;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes draw-check {
    to {
        stroke-dashoffset: 0;
    }
}

/* Добавляем линии сканирования */
.reward-scanning::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: scan-ring 2s ease-out infinite;
}

@keyframes scan-ring {
    0% {
        width: 100px;
        height: 100px;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.reward-scan-title {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 12px 0;
}

.reward-scan-status {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 24px 0;
}

.reward-scan-progress {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.reward-scan-fill {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6 0%, #6366f1 50%, #8b5cf6 100%);
    background-size: 200% 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
    animation: progress-shimmer 1.5s linear infinite;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

@keyframes progress-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Reward Content */
.reward-content {
    padding: 20px 0;
}

.reward-header {
    text-align: center;
    margin-bottom: 24px;
}

.reward-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    color: #8b5cf6;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.reward-title {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 8px 0;
}

.reward-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.reward-amount {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.reward-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
}

.reward-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reward-tokens {
    font-size: 32px;
    font-weight: 700;
    color: #8b5cf6;
    margin: 0 0 8px 0;
}

.reward-usd {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.reward-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 12px;
    color: #FF6B6B;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.countdown {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 700;
}

.reward-claim-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    border: none;
    border-radius: 16px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.reward-claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.6);
}

.reward-note {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ===== FIXED REWARD BUTTON (MOBILE) ===== */
.fixed-reward-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
    display: none;
}

.fixed-reward-btn.show {
    display: block;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.fixed-reward-btn button {
    padding: 16px 32px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.6);
    transition: all 0.3s ease;
}

.fixed-reward-btn button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.8);
}

@media (min-width: 769px) {
    .fixed-reward-btn {
        display: none !important;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .axiom-modal-content {
        padding: 32px 20px;
    }
    
    .axiom-modal-title {
        font-size: 24px;
    }
    
    .reward-modal-content {
        padding: 24px 16px;
    }
    
    .reward-title {
        font-size: 24px;
    }
    
    .reward-tokens {
        font-size: 28px;
    }
}

/* ===== SIGN UP / WALLET CONNECT MODAL ===== */
.signup-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.signup-modal.active {
    opacity: 1;
    pointer-events: all;
}

.signup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.signup-content {
    position: relative;
    width: 90%;
    max-width: 312px;
    background: #18181A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.30),
                0 8px 8px 0 rgba(0, 0, 0, 0.45);
    z-index: 50;
    animation: signup-slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes signup-slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.signup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    gap: 16px;
}

.signup-spacer {
    width: 24px;
}

.signup-title {
    flex: 1;
    text-align: center;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    color: #9ca3af;
    margin: 0;
}

.signup-close {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: #9ca3af;
    transition: all 0.15s ease;
    flex-shrink: 0;
}

.signup-close:hover {
    background: rgba(255, 255, 255, 0.05);
}

.signup-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 16px 16px;
}

.signup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 32px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 9999px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.125s ease;
    position: relative;
}

.signup-btn:hover:not(.signup-btn-disabled) {
    background: rgba(255, 255, 255, 0.15);
    filter: brightness(1.1);
}

.signup-btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.signup-btn-phantom {
    background: #6366f1;
    color: #ffffff;
}

.signup-btn-phantom:hover {
    background: #7c7ff5;
}

.maintenance-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.signup-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signup-login {
    text-align: center;
    font-size: 12px;
    line-height: 16px;
    color: #6b7280;
    margin: 0;
}

.signup-login-btn {
    background: none;
    border: none;
    color: #6366f1;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    padding: 0;
    transition: filter 0.15s ease;
}

.signup-login-btn:hover {
    filter: brightness(1.1);
}

.signup-terms {
    text-align: center;
    font-size: 12px;
    line-height: 16px;
    color: #6b7280;
    margin: 0;
}

.signup-link {
    color: #6366f1;
    text-decoration: none;
    cursor: default;
}

