/* ========================================
   NORAVAT MARKET ROI PLATFORM STYLES
   Color Theme: White, Gold (#FFD700), Dark Blue
   ======================================== */

/* Fonts */
.font-orbitron { font-family: 'Orbitron', sans-serif; }
.font-rajdhani { font-family: 'Rajdhani', sans-serif; }

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
}

/* Tailwind-like Utility Classes */
.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-slate-900 {
    --tw-gradient-from: #0f172a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15, 23, 42, 0));
}

.via-blue-900 {
    --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0));
}

.to-slate-900 {
    --tw-gradient-to: #0f172a;
}

.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.overflow-hidden {
    overflow: hidden;
}

.pointer-events-none {
    pointer-events: none;
}

.relative {
    position: relative;
}

.z-50, .z-10 {
    z-index: 50;
}

.border-b {
    border-bottom-width: 1px;
}

.border-blue-500\/20 {
    border-color: rgba(59, 130, 246, 0.2);
}

.bg-slate-900\/80 {
    background-color: rgba(15, 23, 42, 0.8);
}

.backdrop-blur-xl {
    backdrop-filter: blur(24px);
}

.max-w-7xl {
    max-width: 80rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.h-20 {
    height: 5rem;
}

.space-x-3 > * + * {
    margin-left: 0.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.font-bold {
    font-weight: 700;
}

.text-transparent {
    color: transparent;
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-blue-400 {
    --tw-gradient-from: #60a5fa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0));
}

.via-white {
    --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.to-yellow-400 {
    --tw-gradient-to: #fbbf24;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-blue-300\/70 {
    color: rgba(147, 197, 253, 0.7);
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.text-center {
    text-align: center;
}

.mt-20, .mt-2 {
    margin-top: 5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-blue-300\/50 {
    color: rgba(147, 197, 253, 0.5);
}

/* ========================================
   ANIMATED BACKGROUND
   ======================================== */

.crypto-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 15s ease-in-out infinite;
}

.floating-particles::before {
    background: radial-gradient(circle, #3B82F6 0%, transparent 70%);
    top: 20%;
    left: 10%;
}

.floating-particles::after {
    background: radial-gradient(circle, #FFD700 0%, transparent 70%);
    bottom: 20%;
    right: 10%;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.1); }
}

/* ========================================
   CRYPTO LOGO
   ======================================== */

.crypto-logo {
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)); }
}

/* ========================================
   CONNECT WALLET BUTTON
   ======================================== */

.connect-wallet-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.connect-wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4), 0 0 30px rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
}

.connect-wallet-btn svg {
    transition: transform 0.3s ease;
}

.connect-wallet-btn:hover svg {
    transform: scale(1.1) rotate(5deg);
}

/* ========================================
   ROI HERO SECTION
   ======================================== */

.roi-hero {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid #60A5FA;
    border-radius: 2rem;
    color: #60A5FA;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.roi-title {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #60A5FA 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(148, 163, 184, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: #FFD700;
    font-weight: 700;
}

/* ========================================
   ROI STATS BANNER
   ======================================== */

.roi-stats-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1.5rem;
    backdrop-filter: blur(20px);
}

.banner-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.banner-stat:hover {
    transform: translateY(-3px);
    border-color: #FFD700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.banner-stat .stat-icon {
    font-size: 2rem;
}

.banner-stat .stat-info {
    flex: 1;
}

.banner-stat .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 0.25rem;
}

.banner-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.8);
    font-weight: 500;
}

/* ========================================
   ACTION TABS SECTION
   ======================================== */

.action-tabs-section {
    margin-bottom: 3rem;
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0.5rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    backdrop-filter: blur(20px);
}

.tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    color: rgba(148, 163, 184, 0.8);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: #FFFFFF;
    background: rgba(59, 130, 246, 0.1);
}

.tab-btn.active {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-color: rgba(59, 130, 246, 0.5);
    color: #FFFFFF;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.5);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   CONTENT GRID
   ======================================== */

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ACTION CARDS (STAKE CARD)
   ======================================== */

.action-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1.5rem;
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.action-card:hover {
    border-color: #60A5FA;
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(255, 215, 0, 0.05));
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(255, 215, 0, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 0.75rem;
    color: #FFD700;
}

.card-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Orbitron', sans-serif;
}

.card-body {
    padding: 2rem;
}

/* ========================================
   ROI CALCULATOR
   ======================================== */

.roi-calculator {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.roi-calculator h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #60A5FA;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.calculator-input-group {
    margin-bottom: 1.5rem;
}

.calculator-input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.9);
    margin-bottom: 0.5rem;
}

.calc-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.calc-input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.calc-input::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 0.5rem;
}

.calc-result-row span {
    font-size: 0.9rem;
    color: rgba(148, 163, 184, 0.8);
}

.calc-result-row strong {
    font-size: 1rem;
    font-weight: 700;
    color: #FFD700;
}

.profit-highlight {
    color: #10B981 !important;
}

/* ========================================
   INPUT GROUPS
   ======================================== */

.input-group {
    margin-bottom: 1.5rem;
}

.input-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.9);
    margin-bottom: 0.75rem;
}

.token-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.token-input-wrapper:focus-within {
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.token-input {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    outline: none;
}

.token-input::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

.token-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(38, 161, 123, 0.1);
    border-left: 1px solid rgba(38, 161, 123, 0.3);
}

.token-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usdt-icon {
    background: #26A17B;
    color: white;
}

.token-symbol {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
}

.balance-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: rgba(148, 163, 184, 0.7);
}

.max-btn {
    padding: 0.375rem 0.75rem;
    background: transparent;
    border: 1px solid #FFD700;
    border-radius: 0.375rem;
    color: #FFD700;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.max-btn:hover {
    background: rgba(255, 215, 0, 0.15);
}

/* ========================================
   STAKE INFO BOX
   ======================================== */

.stake-info-box {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row span {
    font-size: 0.9rem;
    color: rgba(148, 163, 184, 0.8);
}

.info-row strong {
    font-size: 1rem;
    font-weight: 700;
    color: #FFD700;
}

/* ========================================
   ACTION BUTTONS
   ======================================== */

.action-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 1px solid rgba(255, 215, 0, 0.5);
    border-radius: 0.75rem;
    color: #0F172A;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
}

.action-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ========================================
   INFO SIDEBAR
   ======================================== */

.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.info-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.info-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    color: #0F172A;
    font-size: 0.875rem;
    font-weight: 900;
    flex-shrink: 0;
}

.info-step p {
    font-size: 0.9rem;
    color: rgba(148, 163, 184, 0.9);
    line-height: 1.6;
}

.info-step span {
    color: #FFD700;
    font-weight: 700;
}

.info-card.warning {
    background: rgba(251, 191, 36, 0.05);
    border-color: rgba(251, 191, 36, 0.3);
}

.info-card.warning svg {
    margin-bottom: 0.75rem;
    color: #FBD700;
}

.info-card.warning p {
    font-size: 0.9rem;
    color: rgba(148, 163, 184, 0.9);
    margin-bottom: 0.5rem;
}

.example-box {
    padding: 1rem;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 0.5rem;
}

.example-box p {
    font-size: 0.9rem;
    color: rgba(148, 163, 184, 0.9);
    margin-bottom: 0.5rem;
}

/* ========================================
   USER STATS GRID
   ======================================== */

.user-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.75rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(148, 163, 184, 0.8);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Orbitron', sans-serif;
}

.stat-value.success {
    color: #10B981;
}

/* ========================================
   QUICK ACTIONS
   ======================================== */

.quick-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quick-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 1px solid rgba(255, 215, 0, 0.5);
    border-radius: 0.75rem;
    color: #0F172A;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.quick-action-btn.secondary {
    background: rgba(15, 23, 42, 0.8);
    border-color: #60A5FA;
    color: #60A5FA;
}

.quick-action-btn.secondary:hover {
    border-color: #FFD700;
    color: #FFD700;
}

/* ========================================
   STAKES SECTION
   ======================================== */

.stakes-section {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
}

.stakes-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
}

#stakesListContainer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ========================================
   STAKE ITEM CARDS
   ======================================== */

.stake-item {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1.25rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.stake-item:hover {
    border-color: #FFD700;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
}

.stake-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stake-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Orbitron', sans-serif;
}

.stake-status {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.stake-status.active {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid #10B981;
    color: #10B981;
}

.stake-status.completed {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid #60A5FA;
    color: #60A5FA;
}

.stake-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stake-detail {
    padding: 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.75rem;
}

.stake-detail-label {
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.7);
    margin-bottom: 0.5rem;
}

.stake-detail-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFD700;
    font-family: 'Orbitron', sans-serif;
}

.stake-progress {
    margin-bottom: 1.5rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.progress-label {
    font-size: 0.9rem;
    color: rgba(148, 163, 184, 0.8);
}

.progress-percentage {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFD700;
}

.progress-bar-container {
    width: 100%;
    height: 0.75rem;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 0.5rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #60A5FA, #FFD700);
    border-radius: 0.5rem;
    transition: width 0.3s ease;
}

.stake-actions {
    display: flex;
    gap: 1rem;
}

.stake-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stake-action-btn.claim {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border: 1px solid rgba(16, 185, 129, 0.5);
    color: #FFFFFF;
}

.stake-action-btn.claim:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.stake-action-btn.withdraw {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid #60A5FA;
    color: #60A5FA;
}

.stake-action-btn.withdraw:hover {
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.stake-action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========================================
   EMPTY STATE
   ======================================== */

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.empty-state svg {
    color: rgba(148, 163, 184, 0.3);
    margin-bottom: 1.5rem;
}

.empty-state p {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.8);
    margin-bottom: 1.5rem;
}

.empty-action-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 1px solid rgba(255, 215, 0, 0.5);
    border-radius: 0.75rem;
    color: #0F172A;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.empty-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .roi-stats-banner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .roi-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .roi-stats-banner {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .banner-stat {
        padding: 1.25rem;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .user-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions {
        flex-direction: column;
    }
    
    .stake-details-grid {
        grid-template-columns: 1fr;
    }
    
    .stake-actions {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .connect-wallet-btn span {
        display: none;
    }
    
    .roi-title {
        font-size: 1.75rem;
    }
    
    .card-header h2 {
        font-size: 1.25rem;
    }
    
    .token-input {
        font-size: 1rem;
    }
}

/* ========================================
   LOADING SPINNER
   ======================================== */

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #FFD700;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-gold {
    color: #FFD700;
}

.text-blue {
    color: #60A5FA;
}

.text-green {
    color: #10B981;
}

.border-gold {
    border-color: #FFD700;
}

.border-blue {
    border-color: #60A5FA;
}

.bg-gold-glow {
    background: rgba(255, 215, 0, 0.1);
}

.bg-blue-glow {
    background: rgba(59, 130, 246, 0.1);
}

/* ========================================
   NAVIGATION LINKS & MOBILE MENU
   ======================================== */

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    color: rgba(148, 163, 184, 0.8);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    color: #FFFFFF;
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-color: rgba(255, 215, 0, 0.5);
    color: #FFD700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.nav-link.active svg {
    color: #FFD700;
}

.nav-link svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nav-link:hover svg {
    transform: scale(1.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.5rem;
    color: rgba(148, 163, 184, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #60A5FA;
    color: #FFFFFF;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    margin-top: 1rem;
}

.mobile-menu.show {
    display: flex;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.75rem;
    color: rgba(148, 163, 184, 0.9);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #60A5FA;
    color: #FFFFFF;
    transform: translateX(5px);
}

.mobile-menu-link.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-color: rgba(255, 215, 0, 0.5);
    color: #FFD700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.mobile-menu-link.active svg {
    color: #FFD700;
}

.mobile-menu-link svg {
    flex-shrink: 0;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .connect-wallet-btn {
        margin-right: 1rem;
    }
}

@media (max-width: 768px) {
    .connect-wallet-btn span {
        display: none;
    }
    
    .connect-wallet-btn {
        padding: 0.75rem;
        margin-right: 0.5rem;
    }
}

@media (max-width: 640px) {
    nav .flex {
        position: relative;
    }
    
    .mobile-menu-link {
        font-size: 0.95rem;
        padding: 0.875rem 1rem;
    }
}