/**
 * MATRIX GOLD MINER - Main Stylesheet
 * Dark & Gold Theme - Modern Crypto Style
 */

/* ==================== CSS VARIABLES ==================== */
:root {
    --primary-gold: #D4AF37;
    --primary-gold-light: #F4D03F;
    --primary-gold-dark: #B8860B;
    --secondary-gold: #FFD700;
    --accent-orange: #FF9500;
    
    --bg-primary: #0A0A0A;
    --bg-secondary: #111111;
    --bg-tertiary: #1A1A1A;
    --bg-card: #141414;
    --bg-hover: #1F1F1F;
    
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #666666;
    
    --border-color: #2A2A2A;
    --border-gold: rgba(212, 175, 55, 0.3);
    
    --success: #00C853;
    --warning: #FFD600;
    --danger: #FF1744;
    --info: #00B0FF;
    
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    --gradient-dark: linear-gradient(180deg, #111111 0%, #0A0A0A 100%);
    --gradient-card: linear-gradient(145deg, #141414 0%, #1A1A1A 100%);
    
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.6);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0 20px;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--bg-primary);
    font-weight: bold;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 500;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    padding: 10px 16px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 1002;
    padding: 80px 20px 20px;
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-gold);
    background: var(--bg-hover);
    padding-left: 25px;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-close:hover {
    background: var(--danger);
    border-color: var(--danger);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--bg-primary);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-warning {
    background: var(--warning);
    color: var(--bg-primary);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ==================== FORMS ==================== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
    padding-right: 45px;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.input-group {
    display: flex;
    gap: 10px;
}

.input-group .form-input {
    flex: 1;
}

/* ==================== CARDS ==================== */
.card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
}

.card:hover {
    border-color: var(--border-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-gold);
}

/* ==================== STATS CARDS ==================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    min-width: 0;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-gold);
}

.stat-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-3px);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.stat-change {
    font-size: 0.85rem;
    color: var(--success);
}

.stat-change.negative {
    color: var(--danger);
}
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
/* ==================== TABLES (Mobile Friendly) ==================== */
.table-container {
    overflow-x: auto; /* keeps table scrollable on small screens */
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    width: 100%; /* make container full width */
    margin-bottom: 20px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 0; /* remove fixed min-width to allow shrinking */
}

.data-table th,
.data-table td {
    padding: 12px 10px; /* smaller padding for mobile */
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem; /* smaller font for mobile */
}

.data-table th {
    background: var(--bg-tertiary);
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.data-table tr:hover {
    background: var(--bg-hover);
}

.data-table td {
    color: var(--text-secondary);
    word-break: break-word; /* ensure long text wraps */
}

/* ==================== MOBILE RESPONSIVE TABLE ==================== */
@media (max-width: 768px) {
    .data-table th,
    .data-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
    
    .data-table {
        display: block; /* allow horizontal scroll */
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
    }

    .table-container {
        padding: 0 5px; /* small padding around table */
    }
}
.status-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-pending {
    background: rgba(255, 214, 0, 0.1);
    color: var(--warning);
}

.status-pending::before {
    background: var(--warning);
}

.status-approved,
.status-completed {
    background: rgba(0, 200, 83, 0.1);
    color: var(--success);
}

.status-approved::before,
.status-completed::before {
    background: var(--success);
}

.status-rejected {
    background: rgba(255, 23, 68, 0.1);
    color: var(--danger);
}

.status-rejected::before {
    background: var(--danger);
}

/* ==================== PROGRESS BAR ==================== */
.progress-container {
    margin: 20px 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.progress-bar {
    height: 10px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: var(--radius-xl);
    transition: width 0.5s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ==================== MINING ANIMATION ==================== */
.mining-container {
    position: relative;
    padding: 40px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    overflow: hidden;
}

.mining-animation {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
}

.mining-ring {
    position: absolute;
    border: 3px solid transparent;
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

.mining-ring:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
}

.mining-ring:nth-child(2) {
    width: 160px;
    height: 160px;
    top: 20px;
    left: 20px;
    animation-direction: reverse;
    animation-duration: 1.5s;
}

.mining-ring:nth-child(3) {
    width: 120px;
    height: 120px;
    top: 40px;
    left: 40px;
    animation-duration: 1s;
}

.mining-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--primary-gold);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mining-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.mining-stat {
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
}

.mining-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.mining-stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* ==================== ROBOT CARDS ==================== */
.robot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.robot-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.robot-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.robot-image {
    width: 100%;
    height: 200px;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.robot-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 100%);
}

.robot-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
}

.robot-content {
    padding: 25px;
}

.robot-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.robot-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.robot-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.robot-spec {
    padding: 12px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
}

.robot-spec-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.robot-spec-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-gold);
}

.robot-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 20px;
}

.robot-price span {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ==================== WALLET ADDRESSES ==================== */  
.wallet-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 15px;
    transition: var(--transition);
    width: 100%;
}

.wallet-card:hover {
    border-color: var(--border-gold);
}

.wallet-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.wallet-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.wallet-info h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.wallet-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.wallet-address {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-tertiary);
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    overflow-x: auto; /* allow horizontal scroll for small screens */
}

.wallet-address code {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem; /* smaller font for mobile */
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-btn {
    padding: 6px 12px; /* slightly smaller for mobile */
    background: var(--primary-gold);
    color: var(--bg-primary);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0; /* ensure button doesn't shrink too much */
}

.copy-btn:hover {
    background: var(--primary-gold-light);
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .wallet-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .wallet-icon.btc {  
    background: rgba(247, 147, 26, 0.1);  
    color: #F7931A;  
    }  
    
    .wallet-icon.usdt {  
    background: rgba(38, 161, 123, 0.1);  
    color: #26A17B;  
    }
    
    .wallet-icon.eth {  
    background: rgba(98, 126, 234, 0.1);  
    color: #627EEA;  
    }  

    .wallet-icon.bsc {  
    background: rgba(240, 185, 11, 0.1);  
    color: #F0B90B;  
    }  

    .wallet-info h4 {
        font-size: 1rem;
    }

    .wallet-info span {
        font-size: 0.8rem;
    }

    .wallet-address {
        padding: 10px 12px;
        gap: 8px;
    }

    .wallet-address code {
        font-size: 0.8rem;
    }

    .copy-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

/* ==================== ALERTS ==================== */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.alert-error {
    background: rgba(255, 23, 68, 0.1);
    border: 1px solid var(--danger);
    color: var(--danger);
}

.alert-warning {
    background: rgba(255, 214, 0, 0.1);
    border: 1px solid var(--warning);
    color: var(--warning);
}

.alert-info {
    background: rgba(0, 176, 255, 0.1);
    border: 1px solid var(--info);
    color: var(--info);
}

/* ==================== PAGINATION ==================== */  
.pagination {  
    display: flex;  
    justify-content: center;  
    align-items: center;  
    gap: 8px;  
    margin-top: 30px;  
}  
  
.page-btn {  
    min-width: 40px;  
    height: 40px;  
    display: flex;  
    align-items: center;  
    justify-content: center;  
    background: var(--bg-tertiary);  
    border: 1px solid var(--border-color);  
    border-radius: var(--radius-sm);  
    color: var(--text-secondary);  
    font-size: 0.95rem;  
    cursor: pointer;  
    transition: var(--transition);  
}  
  
.page-btn:hover,  
.page-btn.active {  
    background: var(--primary-gold);  
    border-color: var(--primary-gold);  
    color: var(--bg-primary);  
}  
  
.page-btn:disabled {  
    opacity: 0.5;  
    cursor: not-allowed;  
}  

/* ==================== MODAL ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: var(--transition);
}

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

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 600;
}

.modal-close {
    width: 35px;
    height: 35px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--danger);
    border-color: var(--danger);
    color: white;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    display: flex;
    gap: 10px;
    padding: 20px 25px;
    border-top: 1px solid var(--border-color);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    color: var(--primary-gold);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    color: var(--primary-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ==================== FEATURES ==================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-8px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    color: var(--primary-gold);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==================== STATS SECTION ==================== */  
.stats-section {  
    background: var(--bg-secondary);  
    padding: 60px 20px;  
}  
  
.stats-container {  
    max-width: 1200px;  
    margin: 0 auto;  
    display: grid;  
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));  
    gap: 40px;  
    text-align: center;  
}  
  
.stat-item h3 {  
    font-size: 2.5rem;  
    font-weight: 700;  
    color: var(--primary-gold);  
    margin-bottom: 10px;  
}  
  
.stat-item p {  
    color: var(--text-secondary);  
    text-transform: uppercase;  
    letter-spacing: 2px;  
    font-size: 0.9rem;  
}  
  
/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

/* ==================== DASHBOARD LAYOUT ==================== */
.dashboard {
    padding-top: 90px;
    min-height: 100vh;
    background: var(--bg-primary);
}

.dashboard-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 20px;
    margin-bottom: 30px;
}

.dashboard-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.dashboard-subtitle {
    color: var(--text-secondary);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.sidebar {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 90px;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-item {
    margin-bottom: 5px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
}

.sidebar-link i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.main-content {
    min-height: 500px;
}

/* ==================== AUTH PAGES ==================== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        var(--bg-primary);
}

.auth-container {
    width: 100%;
    max-width: 480px;
}

.auth-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.auth-header {
    text-align: center;
    margin-bottom: 35px;
}

.auth-header .logo {
    justify-content: center;
    margin-bottom: 25px;
}

.auth-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--text-secondary);
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--primary-gold);
    font-weight: 600;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        display: none;
    }
    
    .sidebar.mobile-visible {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-actions .btn {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .mining-stats {
        grid-template-columns: 1fr;
    }
    
    .robot-specs {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .input-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 50px 15px;
    }
    
    .auth-card {
        padding: 25px;
    }
    
    .card {
        padding: 20px;
    }
    
    .mobile-menu {
        width: 100%;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* ==================== LOADING ==================== */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ==================== UTILITY CLASSES ==================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.hidden { display: none !important; }
.visible { display: block !important; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }

.w-full { width: 100%; }
.h-full { height: 100%; }

/* ==================== MOBILE DEPOSIT RESPONSIVE ==================== */
@media (max-width: 768px) {

    /* Stack sidebar and main content */
    .dashboard-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .sidebar {
        width: 100%; 
        order: 1; /* Sidebar above main content if needed */
    }

    .main-content {
        width: 100%;
        order: 2;
    }

    /* Sidebar links bigger and clickable */
    .sidebar-link {
        padding: 10px 15px;
        font-size: 0.95rem;
    }

    /* Wallet cards full width */
    .wallet-card {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .wallet-header {
        gap: 10px;
    }

    .wallet-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .wallet-info h4 {
        font-size: 1rem;
    }

    .wallet-info span {
        font-size: 0.75rem;
    }

    .wallet-address {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .copy-btn {
        width: 100%;
        padding: 8px 10px;
        font-size: 0.8rem;
    }

    /* Deposit form full width inputs */
    .form-group {
        width: 100%;
    }

    .form-input, .form-select, .btn-block {
        width: 100%;
        font-size: 0.9rem;
    }

    /* Card padding smaller */
    .card {
        padding: 15px;
    }

    /* Table responsiveness */
    .table-container {
        overflow-x: auto;
    }

    table.data-table th, table.data-table td {
        font-size: 0.8rem;
        padding: 8px;
    }

    /* Dashboard header font sizes */
    .dashboard-title {
        font-size: 1.5rem;
    }

    .dashboard-subtitle {
        font-size: 0.9rem;
    }

    /* Mobile menu fixes */
    .menu-toggle {
        display: block;
    }
}

#gold-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #0b0b0f;
}

body {
    position: relative;
}

.navbar,
.hero,
.video-container,
.stats-section,
.section,
.footer,
.mobile-menu,
.mobile-menu-overlay {
    position: relative;
    z-index: 1;
}
/* Main content stays above canvas */
nav,
section,
footer,
.video-container,
.stats-section,
.hero,
.mobile-menu,
.mobile-menu-overlay {
    position: relative;
}

/* Strong mobile layering */
.navbar {
    position: relative;
    z-index: 1000;
}

.menu-toggle {
    position: relative;
    z-index: 10001;
    display: flex;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    z-index: 9999;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.auth-card {
    background: rgba(0, 0, 0, 0.75); /* semi-transparent dark background */
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5); /* optional: subtle shadow */
    color: #fff; /* ensure text is visible */
    position: relative;
    z-index: 1; /* stays above particles */
}
.auth-card {
    border: 2px solid rgba(255, 215, 0, 0.5); /* semi-transparent gold border */
}

.robot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.robot-card {
    background: #111; /* dark black */
    border: 1px solid #b8860b;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
}

.robot-card:hover {
    transform: translateY(-5px);
}

.robot-image {
    background: #222;
    padding: 20px;
    text-align: center;
    color: #b8860b;
    position: relative;
    font-size: 3rem;
}

.robot-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #b8860b;
    color: #111;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
}

.robot-content {
    padding: 15px;
    color: #fff;
}

.robot-specs {
    margin: 10px 0;
}

.robot-spec {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.robot-price {
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 10px;
}

.btn-block {
    display: block;
    width: 100%;
}
/* Make dashboard cards pop more with gold */
.card {
    background-color: #1a1a1a; /* dark background */
    border: 2px solid #b8860b; /* bright gold border */
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(155, 100, 0, 0.5); /* subtle gold glow */
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(155, 100, 0, 0.8); /* stronger glow on hover */
}
.card h3, .card .dashboard-title {
    color: #b8860b; /* gold */
    font-weight: 700; /* bold */
}
.card {
    background-color: #1a1a1a; /* solid dark background */
    border: 2px solid #b8860b;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(155, 100, 0, 0.5);
    position: relative; /* ensures card content stays above particles */
    z-index: 1; /* bring it above the particles */
}
.stats-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px !important;
    margin-bottom: 30px;
    width: 100%;
}

.stats-grid .stat-card {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
}

.premium-username {
    color: #b8860b; /* dark gold */
    font-weight: 600;
    font-size: 1.05rem;
    text-shadow: 0 0 4px #ffd700;
}
.loading-text {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-style: italic;
    color: #aaa;
}

.loading-text span.dot {
    width: 5px;
    height: 5px;
    background-color: #aaa;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1s infinite;
}

.loading-text span.dot:nth-child(2) { animation-delay: 0.2s; }
.loading-text span.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes blink {
    0%, 80%, 100% { opacity: 0; }
    40% { opacity: 1; }
}
.video-card:hover {
    box-shadow: 0 0 25px 6px gold, 0 8px 20px rgba(0,0,0,0.3);
}
<style>
    /* Only affects elements inside #homepage */
    #homepage .slide-in-left {
        transform: translateX(-120px);
        opacity: 0;
        transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    }

    #homepage .slide-in-right {
        transform: translateX(120px);
        opacity: 0;
        transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    }

    #homepage .slide-in-up {
        transform: translateY(120px);
        opacity: 0;
        transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    }

    #homepage .visible {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
</style>

#mining-feed {
    display: flex;
    flex-direction: column;
}

.mining-item {
    color: #00e676;
    font-size: 12px;
    padding: 4px 0;
    border-bottom: 1px solid rgba(0,255,0,0.1);
    animation: fadeIn 0.4s ease;
    font-family: monospace;
}

#mining-feed-container {
    position: relative;
}

/* subtle glow effect */
#mining-feed-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to top, #0a0a0a, transparent);
}

/* Mining Chart Container */
#miningChartContainer {
  width: 100%;           /* full width of parent */
  max-width: 400px;      /* optional max width */
  height: 200px;         /* fixed height for chart */
  margin: 20px auto;     /* center container */
  padding: 5px;
  background-color: #1a1a1a; /* dark background for contrast */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  overflow: hidden;
  position: relative;
}

/* Mining Chart Canvas */
#miningChart {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Optional: tooltip styling */
.chartjs-tooltip {
  background-color: rgba(218, 165, 32, 0.9); /* gold tooltip */
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, -100%);
  white-space: nowrap;
  transition: opacity 0.2s ease;
  opacity: 0;
}

/* Optional: hide legend if not needed */
#miningChart + .chart-legend {
  display: none;
}


/* Header layout */
.logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: black; /* header stays black */
    padding: 12px 20px;
}

/* Add globe icon and arrow in goldrod */
.goog-te-gadget-simple::before {
    content: '🌐';
    font-size: 18px;
    color: goldrod; /* gold icon */
}

.goog-te-gadget-simple::after {
    content: ' ▼';
    font-size: 12px;
    color: goldrod; /* gold arrow */
}

/* Custom dropdown fully goldrod */
.custom-translate {
    background: goldrod !important; /* gold background */
    color: black !important;        /* text inside dropdown */
    border: 2px solid goldrod !important; /* gold border */
    padding: 5px 8px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 12px;
    position: relative;
    min-width: 150px;
}

/* Arrow for custom dropdown */
.custom-translate::after {
    content: "▼";
    float: right;
    margin-left: 8px;
    color: black;  /* text arrow color */
    font-size: 12px;
}

/* Dropdown menu fully goldrod */
.custom-translate-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: goldrod;         /* gold background */
    border: 2px solid goldrod;   /* gold border */
    border-radius: 6px;
    max-height: 200px;
    overflow-y: scroll;
    z-index: 1000;
    width: 100%;
}

.custom-translate-menu div {
    padding: 6px 8px;
    color: black;          /* text inside dropdown items */
    cursor: pointer;
}

.custom-translate-menu div:hover {
    background: black;     /* hover background */
    color: goldrod;        /* hover text */
}

/* MODAL STYLES */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
}

.modal-content {
  background: black;
  color: goldrod;
  margin: 10% auto;
  padding: 20px;
  border: 2px solid goldrod;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
}

.modal-body {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 15px;
}

.modal-content h2, .modal-content h3 {
  color: goldrod;
}

.modal-content ul li {
  margin-bottom: 5px;
  color: goldrod;
}

.modal-content button {
  background: goldrod;
  color: black;
  border: none;
  padding: 10px;
  width: 100%;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
}

.modal-content button:hover {
  background: black;
  color: goldrod;
  border: 1px solid goldrod;
}

/* Checkbox link hover */
.link:hover {
  color: #FFD700;
}

<style>
/* MODAL STYLES */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
}

.modal-content {
  background: black;
  color: goldrod;
  margin: 10% auto;
  padding: 20px;
  border: 2px solid goldrod;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
}

.modal-body {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 15px;
}

.modal-content h2, .modal-content h3 {
  color: goldrod;
}

.modal-content ul li {
  margin-bottom: 5px;
  color: goldrod;
}

.modal-content button {
  background: goldrod;
  color: black;
  border: none;
  padding: 10px;
  width: 100%;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
}

.modal-content button:hover {
  background: black;
  color: goldrod;
  border: 1px solid goldrod;
}

/* Checkbox link hover */
.link:hover {
  color: #FFD700;
}
</style>

<style>
.faq-section {
  background: black;
  padding: 50px 20px;
}

.faq-title {
  color: white;
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
}

/* FAQ BOX */
.faq-item {
  border: 2px solid #B8860B;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Question */
.faq-question {
  width: 100%;
  background: black;
  color: white;
  border: none;
  padding: 16px;
  text-align: left;
  font-size: 15px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Icon */
.faq-question .icon {
  color: #B8860B;
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: black;
}

.faq-answer p {
  padding: 15px;
  color: white;
  margin: 0;
  line-height: 1.5;
}

/* ACTIVE STATE */
.faq-item.active {
  border-color: #DAA520;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .icon {
  transform: rotate(45deg); /* turns + into × */
}
</style>

<style>
.crypto-news-wrapper {
  background: black;
  padding: 50px 20px;
}

.news-title {
  color: white;
  text-align: center;
  margin-bottom: 25px;
}

/* GRID */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

/* CARD */
.news-card {
  border: 2px solid #8B7500;
  border-radius: 10px;
  overflow: hidden;
  background: black;
  transition: 0.3s;
}

.news-card:hover {
  border-color: #DAA520;
  transform: translateY(-5px);
}

/* IMAGE */
.news-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* CONTENT */
.news-content {
  padding: 10px;
}

.news-content h4 {
  color: white;
  font-size: 14px;
  margin-bottom: 8px;
}

.news-content a {
  color: #B8860B;
  font-size: 12px;
  text-decoration: none;
}
</style>

<style>
.crypto-news-wrapper {
  background: black;
  padding: 50px 20px;
  text-align: center;
}

/* Title */
.news-title {
  color: white;
  margin-bottom: 25px;
}

/* Box */
.news-box {
  border: 2px solid #8B7500;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  max-width: 900px;
  margin: auto;
}

/* GOLD GLOW EFFECT */
.news-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: 0 0 20px #B8860B;
  pointer-events: none;
}

/* IFRAME CLEAN */
.news-box iframe {
  width: 100%;
  height: 500px;
  border: none;
  filter: contrast(1.1) brightness(0.95);
}

/* REMOVE "EMBEDDED LOOK" */
.news-box iframe {
  background: black;
}

/* MOBILE */
@media (max-width: 768px) {
  .news-box iframe {
    height: 400px;
  }
}
</style>

<style>
.btc-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 2px solid #B8860B; /* goldrod border */
  border-radius: 8px;
  background: black;
  color: #FFD700; /* goldrod text */
  font-weight: bold;
  font-size: 16px;
}

/* FLASH EFFECT */
.flash {
  animation: flash 0.3s;
}

@keyframes flash {
  0% { background: #B8860B; }
  100% { background: transparent; }
}
</style>

<style>
.green-amount {
  color: #00FF00; /* bright green */
  font-weight: bold;
  font-size: 18px;
  margin-top: 5px;
}
</style>

<style>
/* Modal background */
.modal {
  display: none; 
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(2px);
  animation: fadeIn 0.4s;
}

/* Modal content */
.modal-content {
  background: #1a1a00 url('https://i.imgur.com/5ZV3z5J.png') repeat; /* dark gold net pattern */
  margin: 8% auto;
  padding: 20px;
  border: 2px solid goldrod;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  color: #FFD700;
  text-align: center;
  font-weight: bold;
  transform: scale(0);
  animation: scaleUp 0.5s forwards;
  box-shadow: 0 0 30px goldrod;
}

/* Header robot */
.robot-head {
  font-size: 3rem;
  margin-bottom: 10px;
}

/* Profit text */
.robot-profit {
  font-size: 3rem;
  font-weight: 900;
  color: #00FF00; /* bright green */
  margin: 20px 0;
}

/* Coin & flower info */
.robot-info {
  font-size: 1rem;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* Premium details */
.premium-details {
  text-align: left;
  margin-top: 15px;
  font-size: 1rem;
  line-height: 1.5;
  list-style: none;
  padding: 0;
}

/* Close button */
.modal-footer button {
  background: goldrod;
  color: black;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 15px;
}

.modal-footer button:hover {
  background: darkgoldenrod;
  color: white;
}

/* Animations */
@keyframes scaleUp {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
</style>
<style>
/* Modal Overlay */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s;
}

/* Modal Content */
.modal-content {
  background: linear-gradient(145deg, #1a1400 0%, #2b1f00 100%);
  border: 3px solid #B8860B; /* goldrod border */
  border-radius: 25px;
  width: 500px;
  max-width: 90%;
  margin: 80px auto;
  padding: 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 40px rgba(184, 134, 11, 0.6);
}

/* Header */
.modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.modal-header h2 {
  color: #FFD700;
  font-size: 32px;
  font-weight: 900;
  text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700;
  margin: 0;
}

.robot-head {
  font-size: 70px;
  animation: bounce 1s infinite alternate;
}

/* Body */
.modal-body .robot-profit {
  color: #00FF88;
  font-weight: 900;
  font-size: 48px;
  text-shadow: 0 0 12px #00FF88, 0 0 25px #00FF88;
  margin-bottom: 15px;
  animation: pulse 0.8s infinite alternate;
}

.robot-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: white;
  margin-bottom: 20px;
}

.coin-flower {
  font-size: 34px;
  animation: float 3s ease-in-out infinite alternate;
}

/* Premium Details */
.premium-details {
  list-style: none;
  padding: 0;
  color: #FFD700;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  max-width: 450px;
  margin: 0 auto 20px;
}

.premium-details li {
  margin-bottom: 8px;
}

/* Footer */
.modal-footer button {
  background: #B8860B;
  border: none;
  border-radius: 8px;
  color: black;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 25px;
  cursor: pointer;
  box-shadow: 0 0 10px #FFD700;
}

.modal-footer button:hover {
  background: #FFD700;
}

/* Animations */
@keyframes bounce {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); text-shadow: 0 0 8px #00FF88; }
  50% { transform: scale(1.2); text-shadow: 0 0 18px #00FF88, 0 0 30px #00FF88; }
  100% { transform: scale(1); text-shadow: 0 0 8px #00FF88; }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
</style>

/* ===== PREMIUM ROBOT CARD ===== */
.premium-card {
  background: #0d0d0d;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(184, 134, 11, 0.08) 0px,
    rgba(184, 134, 11, 0.08) 1px,
    transparent 1px,
    transparent 12px
  );
  border: 2px solid #B8860B;
  border-radius: 16px;
  padding: 30px;
  max-width: 520px;
  margin: 25px auto;
  box-shadow: 0 0 25px rgba(184, 134, 11, 0.4);
  transition: 0.3s ease;
}

/* Hover effect */
.premium-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 35px rgba(184, 134, 11, 0.7);
}

/* ===== HEADER ===== */
.robot-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.robot-head {
  font-size: 3rem;
  filter: drop-shadow(0 0 10px gold);
}

.robot-header h2,
.robot-header h3 {
  color: #B8860B;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

/* ===== PROFIT TEXT ===== */
.robot-profit {
  font-size: 3.2rem;
  font-weight: 900;
  color: #32CD32;
  text-align: center;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(50, 205, 50, 0.6);
  letter-spacing: 1px;
}

/* ===== INFO TEXT ===== */
.robot-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
  font-size: 1.05rem;
  color: #ddd;
  text-align: center;
}

.coin-flower {
  font-size: 1.5rem;
  animation: floatCoins 2s infinite ease-in-out;
}

/* floating animation */
@keyframes floatCoins {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}

/* ===== DETAILS LIST ===== */
.premium-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-details li {
  padding: 8px 0;
  font-size: 1rem;
  color: #eee;
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.premium-details li:last-child {
  border-bottom: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .premium-card {
    padding: 20px;
  }

  .robot-profit {
    font-size: 2.5rem;
  }

  .robot-head {
    font-size: 2.5rem;
  }
}

.referral-card {
    padding: 25px;
    text-align: center;
    background: #000;
    border: 1px solid #b8860b;
    border-radius: 15px;
}

.referral-card input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #b8860b;
    background: black;
    color: white;
    text-align: center;
}

.ref-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.ref-label {
    color: #aaa;
    font-size: 0.9rem;
}

#ref-count, #ref-earnings {
    color: #b8860b;
    font-size: 1.8rem;
    font-weight: bold;
}

.ref-quote {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #ccc;
    font-style: italic;
}


.premium-balance {
    background: radial-gradient(circle at top, #1a1a1a, #000);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.2);
}

/* ICON / IMAGE CIRCLE */
.balance-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #d4af37;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #111;
}

.balance-avatar i {
    font-size: 32px;
    color: #d4af37;
}

/* uploaded image */
.balance-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* upload input hidden */
.upload-input {
    display: none;
}

/* BUTTONS */
.balance-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.balance-actions button {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.balance-actions button:first-child {
    background: #d4af37;
    color: #000;
}

.balance-actions button:last-child {
    background: #222;
    color: #d4af37;
    border: 1px solid #d4af37;
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
    .balance-actions {
        flex-direction: column;
    }
}

.withdraw-message {
    display: flex;
    align-items: center;
    gap: 10px;

    background: linear-gradient(145deg, #111, #000);
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 10px;

    padding: 12px;
    margin-bottom: 15px;

    color: #d4af37;
    font-size: 14px;

    box-shadow: 0 0 10px rgba(212,175,55,0.15);
}

.withdraw-message i {
    color: #d4af37;
}

.robot-head {
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-robot {
    background: linear-gradient(145deg, #000, #111);
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 20px;
    padding: 25px;
    text-align: center;

    box-shadow: 0 0 20px rgba(212,175,55,0.2);
    animation: goldGlow 2s infinite;
}

/* HEADER */
.robot-header h3 {
    color: #d4af37;
    font-size: 22px;
    margin-top: 10px;
}

/* PROFIT */
.robot-profit {
    font-size: 34px;
    font-weight: bold;
    color: #00ff88;
    margin: 15px 0;
    transition: 0.2s;
}

/* INFO */
.robot-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ccc;
    font-size: 14px;
    margin-bottom: 15px;
}

/* DETAILS */
.premium-details {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.premium-details li {
    padding: 6px 0;
    color: #eee;
}

/* FLOAT EFFECT */
.robot-head,
.treasure-box {
    animation: float 3s ease-in-out infinite;
}

/* GLOW */
@keyframes goldGlow {
    0% { box-shadow: 0 0 10px #d4af37; }
    50% { box-shadow: 0 0 30px #d4af37; }
    100% { box-shadow: 0 0 10px #d4af37; }
}

/* FLOAT */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* PREMIUM FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.premium-details {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* FEATURE ITEM */
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 15px;
    border-radius: 10px;

    background: linear-gradient(145deg, #0a0a0a, #111);
    border: 1px solid rgba(212,175,55,0.2);

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #eee;

    transition: 0.3s ease;
}

/* ICON */
.feature-icon {
    font-size: 18px;
}

/* TEXT */
.feature-text {
    font-weight: 500;
}

/* HOVER EFFECT 🔥 */
.feature-item:hover {
    transform: translateX(5px);
    border-color: rgba(212,175,55,0.6);
    box-shadow: 0 0 12px rgba(212,175,55,0.2);
}

/* MOBILE IMPROVEMENT */
@media (max-width: 600px) {
    .feature-item {
        font-size: 13px;
        padding: 10px;
    }
}

.premium-robot {
    position: relative;
    overflow: hidden;

    background: linear-gradient(145deg, #000, #0a0a0a);
    border-radius: 20px;
}

/* GOLD LINES */
.premium-robot::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;

    background-image: 
        linear-gradient(rgba(212,175,55,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,0.08) 1px, transparent 1px);

    background-size: 40px 40px;

    transform: rotate(25deg);
    animation: moveGrid 20s linear infinite;

    z-index: 0;
}

/* KEEP CONTENT ABOVE */
.premium-robot * {
    position: relative;
    z-index: 2;
}

/* ANIMATION */
@keyframes moveGrid {
    0% { transform: translateY(0) rotate(25deg); }
    100% { transform: translateY(60px) rotate(25deg); }
}

.premium-robot::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;

    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 60%);

    animation: rotateGlow 12s linear infinite;

    z-index: 1;
}

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

.premium-robot {
    box-shadow:
        0 0 15px rgba(212,175,55,0.2),
        0 0 40px rgba(212,175,55,0.1) inset;
}

.gold-particles {
    position: absolute;
    width: 100%;
    height: 200%;
    top: 0;
    left: 0;

    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* EACH PARTICLE */
.gold-particles span {
    position: absolute;
    display: block;

    width: 6px;
    height: 9px;

    background: radial-gradient(circle, #d4af37, transparent);
    border-radius: 50%;

    animation: floatParticle linear infinite;
}

/* RANDOM POSITIONS */
.gold-particles span:nth-child(1) { left: 10%; animation-duration: 12s; }
.gold-particles span:nth-child(2) { left: 25%; animation-duration: 15s; }
.gold-particles span:nth-child(3) { left: 40%; animation-duration: 10s; }
.gold-particles span:nth-child(4) { left: 60%; animation-duration: 18s; }
.gold-particles span:nth-child(5) { left: 75%; animation-duration: 14s; }
.gold-particles span:nth-child(6) { left: 90%; animation-duration: 16s; }

/* FLOAT UP */
@keyframes floatParticle {
    0% {
        bottom: -10px;
        opacity: 0;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(30px);
    }
}

/* RIGHT SIDE */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}


/* RED DOT */
.notif-dot {
    position: absolute;
    top: 0;
    right: 0;

    width: 8px;
    height: 8px;
    background: red;
    border-radius: 50%;

    display: none;
}

/* PANEL */
.notif-panel {
    position: absolute;
    top: 100px;
    right: 20px;

    width: 250px;
    background: #0a0a0a;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 10px;

    padding: 15px;

    display: none;
    z-index: 999;
}

.notif-panel h4 {
    color: #d4af37;
    margin-bottom: 10px;
}

.notif-panel p {
    color: #ccc;
    font-size: 13px;
}

/* ROBOT ICON */
.robot-icon {
    animation: float 3s ease-in-out infinite;
}

/* FLOAT */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}
.bell-wrap {
    position: relative;
    display: inline-block;
}

.bell-pulse {
    position: absolute;
    top: 0;
    right: 0;

    width: 8px;
    height: 8px;
    background: red;
    border-radius: 50%;

    box-shadow: 0 0 10px red;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.robot-talk {
    margin-top: 10px;
    padding: 10px 12px;

    background: rgba(0, 255, 100, 0.08);
    border: 1px solid rgba(0, 255, 100, 0.25);
    border-radius: 10px;

    color: #00ff66;   /* 💚 GREEN TEXT */
    font-size: 13px;
    font-style: italic;

    min-height: 35px;
    text-shadow: 0 0 8px rgba(0,255,100,0.4);
}

/* blinking cursor */
#robot-typing::after {
    content: "|";
    animation: blink 0.8s infinite;
    color: #00ff66;
}

@keyframes blink {
    50% { opacity: 0; }
}

.premium-header {
    position: relative;
    background: linear-gradient(145deg, #050505, #000);
    border-bottom: 1px solid rgba(212,175,55,0.2);
    overflow: hidden;
    padding: 15px 10px;
}

/* GLOW */
.header-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.15), transparent);
    top: -100px;
    left: -100px;
    filter: blur(20px);
}

/* PARTICLES (light effect) */
.header-particles::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#d4af37 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
}

/* LAYOUT */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* TEXT */
.dashboard-title {
    color: #d4af37;
    font-size: 20px;
    margin: 0;
}

.dashboard-subtitle {
    color: #fff;
    font-size: 13px;
    margin: 4px 0;
}

.dashboard-subtext {
    color: #888;
    font-size: 12px;
}

.premium-username {
    color: #d4af37;

    font-weight: 700;

    text-shadow:
        0 0 6px rgba(212,175,55,0.6),
        0 0 12px rgba(255,215,0,0.3);

    background: linear-gradient(90deg, #d4af37, #ffea8a, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    letter-spacing: 0.5px;
}

/* RIGHT SIDE */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* -------------------- NOTIFICATION BELL -------------------- */
.notif-bell {
    position: relative; /* needed for dot */
    cursor: pointer;
    font-size: 24px;
    display: inline-block;
    margin: 0 10px;
    z-index: 1000;
    color: gold; /* bell color */
} 

/* RED DOT FOR UNREAD */
#notif-dot {
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    border: 1px solid white;
    z-index: 1001;
}

/* -------------------- NOTIFICATION PANEL -------------------- */
#notif-panel {
    display: none; /* hidden by default */
    position: fixed; /* fixed to viewport */
    top: 60px; /* adjust according to header */
    right: 20px;
    width: 320px;
    max-height: 400px;
    overflow-y: auto;
    background: #1a1a1a; /* very dark ash */
    border: 2px solid #B8860B; /* dark gold border */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    z-index: 9999;
    padding: 10px;
    font-family: Arial, sans-serif;
    color: #FFFFFF; /* white text */
}

/* PANEL HEADER */
#notif-panel h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    border-bottom: 1px solid #B8860B; /* dark gold line */
    padding-bottom: 5px;
    color: #FFFFFF;
}

/* INDIVIDUAL NOTIFICATION ITEM */
.notif-item {
    padding: 8px 5px;
    border-bottom: 1px solid #B8860B; /* dark gold line */
    font-size: 14px;
    line-height: 1.3;
    color: #FFFFFF; /* white text */
}

.notif-item small {
    color: #CCCCCC; /* lighter gray for timestamp */
}

/* NO NOTIFICATIONS MESSAGE */
#notif-list p {
    font-size: 14px;
    color: #FFFFFF; /* white text */
    margin: 5px 0;
}

/* OPTIONAL: Scrollbar Styling */
#notif-panel::-webkit-scrollbar {
    width: 6px;
}

#notif-panel::-webkit-scrollbar-thumb {
    background-color: #B8860B; /* dark gold */
    border-radius: 3px;
}

/* -------------------- OPTIONAL: ANIMATED BELL -------------------- */
.notif-bell {
    animation: bell-shake 1.2s infinite;
}

@keyframes bell-shake {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    50% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
}

.install-banner{
    display:none;
    align-items:center;
    justify-content:space-between;
    background:#0f0f0f;
    border:1px solid #b8962e;
    border-radius:10px;
    padding:12px 15px;
    margin:10px;
    box-shadow:0 0 15px rgba(212,175,55,0.25);
}

.install-left{
    display:flex;
    align-items:center;
    gap:12px;
}

.install-logo{
    width:40px;
    height:40px;
    border-radius:8px;
}

.install-title{
    color:#fff;
    font-weight:600;
    font-size:15px;
}

.install-sub{
    color:#b8962e;
    font-size:12px;
}

.install-btn{
    background:linear-gradient(135deg,#d4af37,#b8962e);
    border:none;
    padding:8px 16px;
    border-radius:6px;
    color:#000;
    font-weight:600;
    cursor:pointer;
}
.logo-icon{
width:42px;
height:42px;
border-radius:10px;
object-fit:cover;
margin-right:8px;
}

.logo{
display:flex;
align-items:center;
text-decoration:none;
}

.logo-text{
font-size:25px;
font-weight:650;
letter-spacing:2px;
font-family:'Poppins',sans-serif;
position:relative;

background:linear-gradient(
120deg,
#8f6b00 0%,
#ffd700 25%,
#fff3a0 40%,
#ffd700 55%,
#8f6b00 75%
);

background-size:200% auto;

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

animation:goldShine 4s linear infinite;

text-shadow:
0 1px 1px rgba(0,0,0,0.6),
0 0 8px rgba(255,215,0,0.5),
0 0 14px rgba(255,215,0,0.3);
}

@keyframes goldShine{
to{
background-position:200% center;
}

<style>

/* Translator container */
#google_translate_element{
margin-top:10px;
}

/* Dropdown style */
.goog-te-gadget select{
background: linear-gradient(145deg,#1a1a1a,#000);
color:#FFD700;
border:1px solid #FFD700;
border-radius:8px;
padding:8px 12px;
font-size:14px;
font-weight:600;
outline:none;
cursor:pointer;
box-shadow:0 0 10px rgba(255,215,0,0.4);
}

/* Hover effect */
.goog-te-gadget select:hover{
background:#000;
box-shadow:0 0 15px rgba(255,215,0,0.7);
}

/* Remove Google text */
.goog-logo-link{
display:none !important;
}

.goog-te-gadget{
color:transparent !important;
font-size:0;
}

/* Dropdown arrow color */
.goog-te-gadget select option{
background:#111;
color:#FFD700;
}

/* Mobile fix */
@media(max-width:768px){
.goog-te-gadget select{
width:100%;
font-size:13px;
}
}

</style>
