/* GuriFx Public Styles */

/* CSS Variables for Theme Colors */
:root {
    --gurifx-primary: #B8860B; /* Dark Goldenrod */
    --gurifx-primary-dark: #996B07;
    --gurifx-primary-light: #DAA520;
    --gurifx-secondary: #8B4513; /* Saddle Brown */
    --gurifx-secondary-dark: #654321;
    --gurifx-secondary-light: #A0522D;
    --gurifx-dark: #1a1a1a;
    --gurifx-dark-light: #2d2d2d;
    --gurifx-dark-lighter: #404040;
    --gurifx-white: #ffffff;
    --gurifx-gray-100: #f8f9fa;
    --gurifx-gray-200: #e9ecef;
    --gurifx-gray-300: #dee2e6;
    --gurifx-gray-400: #ced4da;
    --gurifx-gray-500: #adb5bd;
    --gurifx-gray-600: #6c757d;
    --gurifx-gray-700: #495057;
    --gurifx-gray-800: #343a40;
    --gurifx-gray-900: #212529;
    --gurifx-success: #28a745;
    --gurifx-danger: #dc3545;
    --gurifx-warning: #ffc107;
    --gurifx-info: #17a2b8;
    --gurifx-border-radius: 8px;
    --gurifx-border-radius-lg: 12px;
    --gurifx-transition: all 0.3s ease;
    --gurifx-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --gurifx-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--gurifx-gray-800);
    background-color: var(--gurifx-gray-100);
}

/* Authentication Pages */
.gurifx-auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    background: linear-gradient(135deg, var(--gurifx-dark) 0%, var(--gurifx-secondary) 100%);
    overflow: hidden;
}

.gurifx-auth-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gurifx-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.1);
    animation: float 6s ease-in-out infinite;
}

.gurifx-bg-shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.gurifx-bg-shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.gurifx-bg-shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.gurifx-auth-card {
    background: var(--gurifx-white);
    border-radius: var(--gurifx-border-radius-lg);
    box-shadow: var(--gurifx-shadow-lg);
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.gurifx-auth-header {
    text-align: center;
    padding: 40px 40px 20px;
    background: linear-gradient(135deg, var(--gurifx-primary) 0%, var(--gurifx-primary-dark) 100%);
    color: var(--gurifx-white);
}

.gurifx-auth-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.gurifx-auth-header h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gurifx-auth-header p {
    opacity: 0.9;
    font-size: 14px;
}

.gurifx-auth-form-container {
    padding: 40px;
}

.gurifx-auth-footer {
    text-align: center;
    padding: 20px;
    background: var(--gurifx-gray-100);
    color: var(--gurifx-gray-600);
    font-size: 12px;
}

/* Form Styles */
.gurifx-auth-form {
    width: 100%;
}

.gurifx-form-group {
    margin-bottom: 24px;
}

.gurifx-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gurifx-gray-700);
    font-size: 14px;
}

.gurifx-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.gurifx-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.gurifx-input-wrapper i {
    position: absolute;
    left: 12px;
    color: var(--gurifx-gray-400);
    z-index: 2;
}

.gurifx-input-wrapper input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 2px solid var(--gurifx-gray-200);
    border-radius: var(--gurifx-border-radius);
    font-size: 14px;
    transition: var(--gurifx-transition);
    background: var(--gurifx-white);
}

.gurifx-input-wrapper input:focus {
    outline: none;
    border-color: var(--gurifx-primary);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.gurifx-password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--gurifx-gray-400);
    cursor: pointer;
    padding: 4px;
    z-index: 2;
    transition: var(--gurifx-transition);
}

.gurifx-password-toggle:hover {
    color: var(--gurifx-primary);
}

.gurifx-password-match {
    position: absolute;
    right: 12px;
    color: var(--gurifx-success);
    z-index: 2;
}

.gurifx-help-text {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--gurifx-gray-500);
}

/* Password Strength Meter */
.gurifx-password-strength {
    margin-top: 8px;
}

.gurifx-strength-meter {
    height: 4px;
    background: var(--gurifx-gray-200);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 4px;
}

.gurifx-strength-fill {
    height: 100%;
    width: 0%;
    transition: var(--gurifx-transition);
    border-radius: 2px;
}

.gurifx-strength-text {
    font-size: 12px;
    color: var(--gurifx-gray-500);
}

/* Checkbox Styles */
.gurifx-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
}

.gurifx-checkbox input[type="checkbox"] {
    display: none;
}

.gurifx-checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--gurifx-gray-300);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--gurifx-transition);
    flex-shrink: 0;
    margin-top: 1px;
}

.gurifx-checkbox input[type="checkbox"]:checked + .gurifx-checkmark {
    background: var(--gurifx-primary);
    border-color: var(--gurifx-primary);
}

.gurifx-checkbox input[type="checkbox"]:checked + .gurifx-checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gurifx-white);
    font-size: 10px;
}

.gurifx-checkbox a {
    color: var(--gurifx-primary);
    text-decoration: none;
}

.gurifx-checkbox a:hover {
    text-decoration: underline;
}

/* Button Styles */
.gurifx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: var(--gurifx-border-radius);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--gurifx-transition);
    gap: 8px;
    min-height: 44px;
}

.gurifx-btn-primary {
    background: linear-gradient(135deg, var(--gurifx-primary) 0%, var(--gurifx-primary-dark) 100%);
    color: var(--gurifx-white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.gurifx-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.gurifx-btn-primary:hover {
    background: linear-gradient(135deg, var(--gurifx-primary-dark) 0%, var(--gurifx-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

.gurifx-btn-primary:hover::before {
    left: 100%;
}

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

.gurifx-btn-secondary:hover {
    background: var(--gurifx-primary);
    color: var(--gurifx-white);
}

.gurifx-btn-full {
    width: 100%;
}

.gurifx-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.gurifx-btn-loading {
    display: none;
}

.gurifx-btn.loading .gurifx-btn-text {
    display: none;
}

.gurifx-btn.loading .gurifx-btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Auth Divider */
.gurifx-auth-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.gurifx-auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gurifx-gray-200);
}

.gurifx-auth-divider span {
    background: var(--gurifx-white);
    padding: 0 16px;
    color: var(--gurifx-gray-500);
    font-size: 14px;
}

.gurifx-forgot-link {
    color: var(--gurifx-primary);
    text-decoration: none;
    font-size: 14px;
}

.gurifx-forgot-link:hover {
    text-decoration: underline;
}

/* G-Portal Styles */
.gurifx-portal {
    display: flex;
    min-height: 100vh;
    background: var(--gurifx-gray-100);
}

/* Mobile Menu Toggle Button */
.gurifx-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gurifx-gray-700);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--gurifx-border-radius);
    transition: var(--gurifx-transition);
}

.gurifx-mobile-menu-toggle:hover {
    background: var(--gurifx-gray-100);
    color: var(--gurifx-primary);
}

/* Sidebar */
.gurifx-sidebar {
    width: 280px;
    background: linear-gradient(180deg, var(--gurifx-dark) 0%, var(--gurifx-secondary-dark) 100%);
    color: var(--gurifx-white);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    transition: var(--gurifx-transition);
}

.gurifx-logo {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gurifx-logo img {
    max-width: 140px;
    height: auto;
}

.gurifx-nav ul {
    list-style: none;
    padding: 20px 0;
}

.gurifx-nav li {
    margin-bottom: 8px;
}

.gurifx-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--gurifx-transition);
    border-left: 3px solid transparent;
}

.gurifx-nav-link:hover,
.gurifx-nav-link.active {
    background: rgba(184, 134, 11, 0.1);
    color: var(--gurifx-primary-light);
    border-left-color: var(--gurifx-primary);
}

.gurifx-nav-link i {
    width: 20px;
    text-align: center;
}

.gurifx-sidebar-footer {
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gurifx-logout-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px;
    background: rgba(220, 53, 69, 0.1);
    color: #ff6b6b;
    text-decoration: none;
    border-radius: var(--gurifx-border-radius);
    transition: var(--gurifx-transition);
}

.gurifx-logout-btn:hover {
    background: rgba(220, 53, 69, 0.2);
}

/* Main Content */
.gurifx-main {
    flex: 1;
    margin-left: 280px;
    padding: 0;
    background: var(--gurifx-gray-100);
}

.gurifx-header {
    background: var(--gurifx-white);
    padding: 24px 30px;
    border-bottom: 1px solid var(--gurifx-gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.gurifx-header h1 {
    font-size: 24px;
    font-weight: 600;
    color: var(--gurifx-gray-800);
    margin: 0;
}

.gurifx-user-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gurifx-balance {
    font-weight: 600;
    font-size: 16px;
    color: var(--gurifx-primary);
}

/* Tab Content */
.gurifx-tab-content {
    display: none;
    padding: 30px;
}

.gurifx-tab-content.active {
    display: block;
}

/* Stats Grid */
.gurifx-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.gurifx-stat-card {
    background: linear-gradient(135deg, var(--gurifx-white) 0%, rgba(184, 134, 11, 0.02) 100%);
    border-radius: var(--gurifx-border-radius);
    padding: 24px;
    box-shadow: var(--gurifx-shadow);
    border: 1px solid var(--gurifx-gray-200);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--gurifx-transition);
    position: relative;
    overflow: hidden;
}

.gurifx-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.1), transparent);
    transition: left 0.5s ease;
}

.gurifx-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gurifx-shadow-lg);
    border-color: var(--gurifx-primary-light);
}

.gurifx-stat-card:hover::before {
    left: 100%;
}

.gurifx-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gurifx-primary) 0%, var(--gurifx-primary-light) 100%);
    color: var(--gurifx-white);
    font-size: 24px;
}

.gurifx-stat-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--gurifx-gray-800);
}

.gurifx-stat-content p {
    margin: 0;
    color: var(--gurifx-gray-600);
    font-size: 14px;
}

/* Cards */
.gurifx-card {
    background: var(--gurifx-white);
    border-radius: var(--gurifx-border-radius);
    box-shadow: var(--gurifx-shadow);
    border: 1px solid var(--gurifx-gray-200);
    margin-bottom: 30px;
    overflow: hidden;
    transition: var(--gurifx-transition);
}

.gurifx-card:hover {
    border-color: var(--gurifx-primary-light);
    box-shadow: var(--gurifx-shadow-lg);
}

/* Enhanced Withdrawal Form Styling */
.gurifx-modal {
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gurifx-modal-content {
    background: var(--gurifx-white);
    border-radius: var(--gurifx-border-radius-lg);
    box-shadow: var(--gurifx-shadow-xl);
    border: 1px solid var(--gurifx-gray-200);
    position: relative;
    overflow: hidden;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gurifx-modal-header {
    background: linear-gradient(135deg, var(--gurifx-primary) 0%, var(--gurifx-primary-dark) 100%);
    color: var(--gurifx-white);
    padding: 24px 30px;
    border-radius: var(--gurifx-border-radius-lg) var(--gurifx-border-radius-lg) 0 0;
    border-bottom: 1px solid var(--gurifx-gray-200);
}

.gurifx-modal-body {
    padding: 30px;
}

.gurifx-form-group {
    margin-bottom: 24px;
}

.gurifx-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gurifx-gray-700);
    font-size: 14px;
}

.gurifx-form-group input,
.gurifx-form-group select,
.gurifx-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gurifx-gray-200);
    border-radius: var(--gurifx-border-radius);
    font-size: 14px;
    transition: var(--gurifx-transition);
    background: var(--gurifx-white);
}

.gurifx-form-group input:focus,
.gurifx-form-group select:focus,
.gurifx-form-group textarea:focus {
    outline: none;
    border-color: var(--gurifx-primary);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.gurifx-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.gurifx-form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gurifx-gray-200);
}

/* Attractive Design Elements */
.gurifx-portal {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Pattern */
.gurifx-portal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.03) 10%, transparent 10%);
    background-size: 20px 20px;
    animation: movePattern 60s linear infinite;
}

@keyframes movePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

/* Enhanced Balance Display */
.gurifx-balance {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--gurifx-primary) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Floating Animation for Icons */
.gurifx-stat-icon {
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Gradient Text Effect */
.gurifx-level-progress h3,
.gurifx-current-level h3 {
    background: linear-gradient(135deg, var(--gurifx-primary) 0%, var(--gurifx-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Progress Bar */
.gurifx-progress-bar {
    position: relative;
    background: var(--gurifx-gray-200);
    border-radius: 20px;
    height: 10px;
    overflow: hidden;
    margin-top: 15px;
}

.gurifx-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gurifx-primary) 0%, var(--gurifx-primary-light) 100%);
    border-radius: 20px;
    transition: width 1s ease-in-out;
    position: relative;
}

.gurifx-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%); }
}

/* Enhanced Withdrawal Request Button */
#request-withdrawal-btn {
    background: linear-gradient(135deg, var(--gurifx-primary) 0%, var(--gurifx-primary-dark) 100%);
    color: var(--gurifx-white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--gurifx-border-radius);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

#request-withdrawal-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

#request-withdrawal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

#request-withdrawal-btn:hover::before {
    left: 100%;
}

/* Enhanced Input Focus States */
.gurifx-form-group input:focus,
.gurifx-form-group select:focus,
.gurifx-form-group textarea:focus {
    border-color: var(--gurifx-primary);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1), 0 0 15px rgba(184, 134, 11, 0.2);
    transform: translateY(-1px);
}

/* Enhanced Card Designs */
.gurifx-card {
    position: relative;
    background: var(--gurifx-white);
    border-radius: var(--gurifx-border-radius-lg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.gurifx-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gurifx-primary) 0%, var(--gurifx-primary-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.gurifx-card:hover::before {
    transform: scaleX(1);
}

.gurifx-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

/* Animated Stats Numbers */
.gurifx-stat-value {
    position: relative;
    display: inline-block;
}

.gurifx-stat-value::after {
    content: attr(data-currency);
    position: absolute;
    top: -5px;
    right: -15px;
    font-size: 12px;
    color: var(--gurifx-primary);
    animation: pulse 2s ease-in-out infinite;
}

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

/* Enhanced Account Status Badge */
.gurifx-account-item {
    position: relative;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.gurifx-account-item:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.1);
}

.gurifx-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.gurifx-status-badge.active {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.gurifx-status-badge.pending {
    background: linear-gradient(135deg, #ffc107 0%, #ffb700 100%);
    color: #000;
}

/* Enhanced VIP Tools Card */
.gurifx-tool-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gurifx-tool-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.gurifx-tool-card:hover::after {
    transform: scale(2);
}

.gurifx-tool-card:hover {
    border-color: var(--gurifx-primary);
    transform: translateY(-2px);
}

/* Animated Welcome Message */
.gurifx-welcome {
    background: linear-gradient(135deg, var(--gurifx-primary) 0%, var(--gurifx-primary-dark) 100%);
    color: white;
    padding: 30px;
    border-radius: var(--gurifx-border-radius-lg);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.gurifx-welcome h2 {
    margin: 0;
    font-size: 28px;
    animation: slideInLeft 0.6s ease;
}

.gurifx-welcome p {
    margin: 10px 0 0;
    opacity: 0.9;
    animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Glowing Effect for Important Elements */
.gurifx-glow {
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(184, 134, 11, 0.3); }
    to { box-shadow: 0 0 30px rgba(184, 134, 11, 0.5); }
}

/* Hide WordPress Admin Bar on G-Portal Pages */
body.page-template-g-portal #wpadminbar,
body.page-template-g-portal-login #wpadminbar,
body.page-template-g-portal-register #wpadminbar,
body.page-template-g-portal-forgot-password #wpadminbar {
    display: none !important;
}

/* Adjust body margin when admin bar is hidden */
body.page-template-g-portal,
body.page-template-g-portal-login,
body.page-template-g-portal-register,
body.page-template-g-portal-forgot-password {
    margin-top: 0 !important;
}

.gurifx-card-header {
    padding: 24px 30px;
    border-bottom: 1px solid var(--gurifx-gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gurifx-card-header h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--gurifx-gray-800);
}

.gurifx-card > h2 {
    padding: 24px 30px 0;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--gurifx-gray-800);
}

/* Tables */
.gurifx-table-container {
    overflow-x: auto;
    padding: 0 30px 30px;
}

.gurifx-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.gurifx-table th,
.gurifx-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--gurifx-gray-200);
}

.gurifx-table th {
    background: var(--gurifx-gray-50);
    font-weight: 600;
    color: var(--gurifx-gray-700);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gurifx-table tbody tr:hover {
    background: var(--gurifx-gray-50);
}

.gurifx-no-data {
    text-align: center;
    color: var(--gurifx-gray-500);
    font-style: italic;
    padding: 40px;
}

/* Status Badges */
.gurifx-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gurifx-status-pending {
    background: rgba(255, 193, 7, 0.1);
    color: #856404;
}

.gurifx-status-active {
    background: rgba(40, 167, 69, 0.1);
    color: #155724;
}

.gurifx-status-approved {
    background: rgba(40, 167, 69, 0.1);
    color: #155724;
}

.gurifx-status-rejected {
    background: rgba(220, 53, 69, 0.1);
    color: #721c24;
}

.gurifx-status-processed {
    background: rgba(23, 162, 184, 0.1);
    color: #0c5460;
}

/* Level Badges */
.gurifx-level {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gurifx-level-silver {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
    color: var(--gurifx-white);
}

.gurifx-level-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--gurifx-white);
}

.gurifx-level-platinum {
    background: linear-gradient(135deg, #E5E4E2 0%, #C0C0C0 100%);
    color: var(--gurifx-gray-800);
}

.gurifx-level-diamond {
    background: linear-gradient(135deg, #B9F2FF 0%, #87CEEB 100%);
    color: var(--gurifx-gray-800);
}

.gurifx-level-vip {
    background: linear-gradient(135deg, var(--gurifx-primary) 0%, var(--gurifx-primary-light) 100%);
    color: var(--gurifx-white);
}

/* Trading Accounts */
.gurifx-accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    padding: 30px;
}

.gurifx-account-card {
    background: var(--gurifx-white);
    border: 1px solid var(--gurifx-gray-200);
    border-radius: var(--gurifx-border-radius);
    padding: 24px;
    transition: var(--gurifx-transition);
}

.gurifx-account-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--gurifx-shadow);
}

.gurifx-account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.gurifx-account-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--gurifx-gray-800);
}

.gurifx-account-details p {
    margin: 8px 0;
    color: var(--gurifx-gray-600);
    font-size: 14px;
}

.gurifx-account-details strong {
    color: var(--gurifx-gray-700);
}

/* Brokers Grid */
.gurifx-brokers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding: 30px;
}

.gurifx-broker-card {
    background: var(--gurifx-white);
    border: 1px solid var(--gurifx-gray-200);
    border-radius: var(--gurifx-border-radius);
    padding: 24px;
    text-align: center;
    transition: var(--gurifx-transition);
}

.gurifx-broker-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--gurifx-shadow);
}

.gurifx-broker-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: var(--gurifx-border-radius);
    margin-bottom: 16px;
}

.gurifx-broker-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--gurifx-gray-800);
}

.gurifx-rebate-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--gurifx-primary);
    margin-bottom: 12px;
}

.gurifx-broker-instructions {
    font-size: 14px;
    color: var(--gurifx-gray-600);
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Tools Categories */
.gurifx-tools-category {
    margin-bottom: 40px;
}

.gurifx-category-title {
    color: var(--gurifx-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid var(--gurifx-primary);
    padding-bottom: 8px;
}

.gurifx-category-title i {
    font-size: 24px;
}

/* Tools Grid */
.gurifx-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    padding: 30px;
}

.gurifx-tool-card {
    background: var(--gurifx-white);
    border: 1px solid var(--gurifx-gray-200);
    border-radius: var(--gurifx-border-radius);
    overflow: hidden;
    transition: var(--gurifx-transition);
}

.gurifx-tool-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--gurifx-shadow);
}

.gurifx-tool-card.gurifx-tool-locked {
    opacity: 0.6;
    position: relative;
}

.gurifx-tool-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.gurifx-tool-content {
    padding: 20px;
}

.gurifx-tool-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--gurifx-gray-800);
}

.gurifx-tool-type {
    font-size: 12px;
    color: var(--gurifx-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.gurifx-tool-description {
    font-size: 14px;
    color: var(--gurifx-gray-600);
    line-height: 1.4;
    margin-bottom: 12px;
}

.gurifx-tool-author,
.gurifx-tool-duration {
    font-size: 12px;
    color: var(--gurifx-gray-500);
    margin-bottom: 8px;
}

.gurifx-tool-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 12px;
}

.gurifx-tool-level {
    color: var(--gurifx-gray-600);
}

.gurifx-tool-value {
    color: var(--gurifx-primary);
    font-weight: 600;
}

.gurifx-tool-locked-notice {
    text-align: center;
    color: var(--gurifx-gray-500);
    background: var(--gurifx-gray-100);
    padding: 12px;
    border-radius: var(--gurifx-border-radius);
    margin-top: 12px;
}

.gurifx-tool-locked-notice i {
    margin-bottom: 8px;
    font-size: 20px;
}

/* Trading Signals - Simple Clean Design */
.gurifx-signals-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gurifx-signal-card {
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 15px;
}

.gurifx-signal-card:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.gurifx-signal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #EEEEEE;
}

.gurifx-signal-header h3 {
    margin: 0;
    font-size: 1.1em;
    color: #000000;
    font-weight: 600;
}

.gurifx-signal-type {
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 0.75em;
    font-weight: 500;
    text-transform: uppercase;
}

.gurifx-signal-buy {
    background: #E8F5E9;
    color: #2E7D32;
}

.gurifx-signal-sell {
    background: #FFEBEE;
    color: #C62828;
}

.gurifx-signal-details {
    padding: 0;
}

.gurifx-signal-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.gurifx-signal-info-item {
    flex: 1;
    padding: 10px;
    background: #F8F8F8;
    border-radius: 3px;
    margin-right: 10px;
}

.gurifx-signal-info-item:last-child {
    margin-right: 0;
}

.gurifx-signal-label {
    color: #666666;
    font-weight: 400;
    font-size: 0.8em;
    margin-bottom: 2px;
    display: block;
}

.gurifx-signal-value {
    color: #000000;
    font-weight: 600;
    font-size: 1em;
    display: block;
}

.gurifx-signal-description {
    background: #F9F9F9;
    padding: 15px;
    border-radius: 4px;
    margin: 15px 0;
    border: 1px solid #E5E5E5;
}

.gurifx-signal-description p {
    margin: 0;
    color: #444444;
    line-height: 1.5;
    font-size: 0.9em;
}

.gurifx-signal-image {
    margin: 15px 0;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #DDDDDD;
}

.gurifx-signal-image img {
    width: 100%;
    height: auto;
    display: block;
}

.gurifx-signal-image:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.gurifx-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gurifx-signal-image:hover .gurifx-image-overlay {
    opacity: 1;
}

.gurifx-image-overlay i {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 10px;
    animation: bounce 1s infinite;
}

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

.gurifx-image-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 1.1em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Image Zoom Modal */
.gurifx-zoom-modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.gurifx-zoom-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    max-width: 90%;
    max-height: 90%;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.gurifx-zoom-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: var(--gurifx-white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: var(--gurifx-transition);
}

.gurifx-zoom-close:hover {
    color: var(--gurifx-primary);
}

#gurifx-zoomed-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--gurifx-border-radius);
    box-shadow: var(--gurifx-shadow-xl);
}

.gurifx-zoom-caption {
    margin-top: 15px;
    color: var(--gurifx-white);
    font-size: 16px;
    font-weight: 500;
}

.gurifx-signal-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gurifx-signal-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    display: flex;
    align-items: center;
}

.gurifx-signal-date::before {
    content: '🕐';
    margin-right: 8px;
}

/* Empty State Enhanced */
.gurifx-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.05) 0%, transparent 100%);
    border-radius: 12px;
    border: 2px dashed rgba(184, 134, 11, 0.3);
}

.gurifx-empty-state i {
    font-size: 4em;
    color: rgba(184, 134, 11, 0.5);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

/* Signal Archive Styles - Enhanced */
.gurifx-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 3px solid rgba(184, 134, 11, 0.3);
    position: relative;
}

.gurifx-card-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #B8860B 0%, transparent 100%);
}

.gurifx-card-header h2 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gurifx-archive-info {
    color: #666666;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #F5F5F5;
    border-radius: 4px;
}

.gurifx-archived-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
}

.gurifx-archived-signal-card {
    flex: 0 0 calc(50% - 10px);
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.gurifx-archived-signal-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #B8860B, transparent, #B8860B);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.gurifx-archived-signal-card:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.gurifx-archived-signal-card:hover::before {
    opacity: 0.3;
}

.gurifx-archived-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #EEEEEE;
}

.gurifx-archived-header h4 {
    margin: 0;
    font-size: 1em;
    color: #333333;
    font-weight: 600;
}

.gurifx-archived-status {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75em;
    font-weight: 500;
    text-transform: uppercase;
}

.gurifx-archived-details {
    padding: 12px 16px;
}

.gurifx-archived-footer {
    padding: 8px 16px;
    border-top: 1px solid #E5E7EB;
    text-align: center;
    background: #F9FAFB;
}

.gurifx-profit {
    color: #2E7D32;
    font-weight: 600;
}

.gurifx-loss {
    color: #C62828;
    font-weight: 600;
}

/* Profile */
.gurifx-profile-info {
    padding: 30px;
}

.gurifx-profile-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--gurifx-gray-200);
}

.gurifx-profile-row:last-child {
    border-bottom: none;
}

.gurifx-profile-row label {
    font-weight: 500;
    color: var(--gurifx-gray-600);
    margin: 0;
}

.gurifx-profile-row span {
    font-weight: 600;
    color: var(--gurifx-gray-800);
}

/* Level Progress */
.gurifx-level-progress {
    padding: 30px;
}

.gurifx-current-level,
.gurifx-next-level {
    background: var(--gurifx-gray-50);
    padding: 20px;
    border-radius: var(--gurifx-border-radius);
    margin-bottom: 20px;
}

.gurifx-current-level h3,
.gurifx-next-level h3 {
    margin: 0 0 12px 0;
    color: var(--gurifx-gray-800);
}

.gurifx-current-level p,
.gurifx-next-level p {
    margin: 4px 0;
    color: var(--gurifx-gray-600);
}

.gurifx-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--gurifx-gray-200);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 12px;
}

.gurifx-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gurifx-primary) 0%, var(--gurifx-primary-light) 100%);
    transition: width 0.3s ease;
}

.gurifx-max-level {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--gurifx-primary) 0%, var(--gurifx-primary-light) 100%);
    color: var(--gurifx-white);
    border-radius: var(--gurifx-border-radius);
}

.gurifx-max-level h3 {
    margin: 0 0 12px 0;
    font-size: 24px;
}

/* Empty States */
.gurifx-empty-state {
    text-align: center;
    padding: 60px 30px;
    color: var(--gurifx-gray-500);
}

.gurifx-empty-state i {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.gurifx-empty-state h3 {
    font-size: 20px;
    margin: 0 0 12px 0;
    color: var(--gurifx-gray-600);
}

.gurifx-empty-state p {
    margin: 0 0 24px 0;
}

/* Notices */
.gurifx-notice {
    padding: 20px;
    border-radius: var(--gurifx-border-radius);
    margin-bottom: 24px;
    display: flex;
    gap: 16px;
}

.gurifx-notice-info {
    background: rgba(23, 162, 184, 0.1);
    border: 1px solid rgba(23, 162, 184, 0.2);
    color: #0c5460;
}

.gurifx-notice-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    color: #856404;
}

.gurifx-notice-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #155724;
}

.gurifx-notice-error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #721c24;
}

.gurifx-notice i {
    font-size: 20px;
    margin-top: 2px;
}

.gurifx-notice h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
}

.gurifx-notice p {
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.gurifx-notice p:last-child {
    margin-bottom: 0;
}

/* Modal Styles */
.gurifx-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.gurifx-modal-content {
    background-color: var(--gurifx-white);
    margin: 5% auto;
    border-radius: var(--gurifx-border-radius-lg);
    box-shadow: var(--gurifx-shadow-lg);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.gurifx-modal-header {
    padding: 24px 30px;
    border-bottom: 1px solid var(--gurifx-gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gurifx-modal-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--gurifx-gray-800);
}

.gurifx-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gurifx-gray-400);
    transition: var(--gurifx-transition);
    padding: 4px;
}

.gurifx-modal-close:hover {
    color: var(--gurifx-gray-600);
}

.gurifx-modal-body {
    padding: 30px;
}

.gurifx-form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
}

/* Alert System */
#gurifx-alert-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
}

.gurifx-alert {
    background: var(--gurifx-white);
    border-radius: var(--gurifx-border-radius);
    box-shadow: var(--gurifx-shadow-lg);
    padding: 16px 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: alertSlideIn 0.3s ease;
    border-left: 4px solid;
}

@keyframes alertSlideIn {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}

.gurifx-alert-success {
    border-left-color: var(--gurifx-success);
    color: #155724;
}

.gurifx-alert-error {
    border-left-color: var(--gurifx-danger);
    color: #721c24;
}

.gurifx-alert-warning {
    border-left-color: var(--gurifx-warning);
    color: #856404;
}

.gurifx-alert-info {
    border-left-color: var(--gurifx-info);
    color: #0c5460;
}

.gurifx-alert-icon {
    font-size: 18px;
    margin-top: 1px;
}

.gurifx-alert-content {
    flex: 1;
}

.gurifx-alert-title {
    font-weight: 600;
    margin: 0 0 4px 0;
    font-size: 14px;
}

.gurifx-alert-message {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.gurifx-alert-close {
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.6;
    font-size: 16px;
    padding: 0;
}

.gurifx-alert-close:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gurifx-mobile-menu-toggle {
        display: block;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        background: var(--gurifx-white);
        border: 1px solid var(--gurifx-gray-200);
        border-radius: var(--gurifx-border-radius);
        box-shadow: var(--gurifx-shadow);
        z-index: 101;
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .gurifx-mobile-menu-toggle:hover {
        background: var(--gurifx-gray-50);
        transform: translateY(-50%) scale(1.05);
    }
    
    .gurifx-mobile-menu-toggle i {
        font-size: 18px;
        color: var(--gurifx-gray-700);
    }
    
    .gurifx-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 280px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: var(--gurifx-shadow-lg);
        z-index: 100;
    }
    
    .gurifx-sidebar.open {
        transform: translateX(0);
    }
    
    .gurifx-sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    body.sidebar-open .gurifx-sidebar-overlay {
        opacity: 1;
        visibility: visible;
    }
    
    body.sidebar-open .gurifx-mobile-menu-toggle {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-50%) scale(0.8);
    }
    
    .gurifx-main {
        margin-left: 0;
    }
    
    .gurifx-header {
        padding-left: 70px;
        position: relative;
    }
}

@media (max-width: 768px) {
    .gurifx-auth-card {
        max-width: 100%;
        margin: 0 10px;
    }
    
    .gurifx-auth-header,
    .gurifx-auth-form-container {
        padding: 30px 24px;
    }
    
    .gurifx-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .gurifx-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .gurifx-accounts-grid,
    .gurifx-brokers-grid,
    .gurifx-tools-grid,
    .gurifx-signals-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .gurifx-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .gurifx-header h1 {
        font-size: 20px;
    }
    
    .gurifx-user-info {
        flex-direction: column;
        gap: 12px;
    }
    
    .gurifx-tab-content {
        padding: 20px;
    }
    
    .gurifx-table-container {
        padding: 0 20px 20px;
    }
    
    .gurifx-card > h2,
    .gurifx-card-header {
        padding: 20px 20px 0;
    }
    
    .gurifx-profile-info,
    .gurifx-level-progress {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .gurifx-auth-header,
    .gurifx-auth-form-container {
        padding: 24px 20px;
    }
    
    .gurifx-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .gurifx-modal-header,
    .gurifx-modal-body {
        padding: 20px;
    }
    
    .gurifx-profile-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .gurifx-form-actions {
        flex-direction: column;
    }
    
    .gurifx-btn {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .gurifx-sidebar,
    .gurifx-header,
    .gurifx-btn,
    .gurifx-modal {
        display: none !important;
    }
    
    .gurifx-main {
        margin-left: 0;
    }
    
    .gurifx-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --gurifx-primary: #000000;
        --gurifx-secondary: #000000;
        --gurifx-gray-200: #000000;
        --gurifx-gray-300: #000000;
    }
    
    .gurifx-btn-primary {
        background: #000000;
        border: 2px solid #000000;
    }
    
    .gurifx-btn-secondary {
        background: #ffffff;
        color: #000000;
        border: 2px solid #000000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Additional Trading Signals Enhanced Dark Theme Styles */
.gurifx-signal-card .gurifx-signal-footer {
    position: relative;
}

.gurifx-signal-card .gurifx-signal-footer::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #B8860B, transparent);
}

/* Simple signal type - no animations */

/* No animations for simple design */

/* Enhanced Archive Status Badges */
.gurifx-archived-status {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gurifx-archived-status::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.gurifx-archived-signal-card:hover .gurifx-archived-status::after {
    transform: translateX(100%);
}

/* Simple Empty State */
.gurifx-empty-state h3 {
    font-size: 1.3em;
    color: #333333;
    margin-bottom: 10px;
}

.gurifx-empty-state p {
    color: #666666;
    font-size: 1em;
}

/* Signal Value - No hover effects */
.gurifx-signal-value {
    position: relative;
}

/* Archive Card Gradient Border Effect */
@keyframes gradient-border {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gurifx-archived-signal-card::before {
    background-size: 200% 200%;
    animation: gradient-border 3s ease infinite;
}

/* Signal Description Quote Animation */
@keyframes quote-fade {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.gurifx-signal-description::before {
    animation: quote-fade 3s ease-in-out infinite;
}

/* Enhanced Signal Image Hover */
.gurifx-signal-image {
    position: relative;
    background: rgba(0, 0, 0, 0.1);
}

.gurifx-signal-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.gurifx-signal-image:hover::after {
    border-color: #B8860B;
}

/* Archive Result Glow Effect */
.gurifx-result-positive,
.gurifx-result-negative {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
}

/* Fixed colors for Archived Signals */
.gurifx-archived-signal-card .gurifx-signal-row .gurifx-signal-label {
    color: #666666 !important;
}

.gurifx-archived-signal-card .gurifx-signal-row .gurifx-signal-value {
    color: #000000 !important;
}

/* Trading Signals Tab Icon Animation */
.gurifx-tab[data-tab="signals"] i {
    transition: transform 0.3s ease;
}

.gurifx-tab[data-tab="signals"]:hover i {
    transform: scale(1.2) rotate(10deg);
}

.gurifx-tab[data-tab="signals"].active i {
    animation: pulse 2s infinite;
}


/* Emotional Reactions for Trading Signals */
.gurifx-emotion-reaction {
    display: inline-block;
    font-size: 1.4em;
    margin-left: 8px;
    animation: bounce 0.6s ease-in-out infinite alternate;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-5px); }
}

.gurifx-status-tp_hit .gurifx-emotion-reaction {
    animation: celebrate 1s ease-in-out infinite;
}

@keyframes celebrate {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(-5deg); }
    75% { transform: scale(1.2) rotate(5deg); }
}

.gurifx-status-sl_hit .gurifx-emotion-reaction {
    animation: sad 2s ease-in-out infinite;
}

@keyframes sad {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(3px) rotate(-3deg); }
}


/* Simple Active Signal Status */
.gurifx-status-active {
    background: #F0F0F0;
    color: #333333;
    border: 1px solid #CCCCCC;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 0.75em;
}

/* Signal Footer - Modern Style */
.gurifx-signal-footer {
    padding: 15px 20px;
    background: #F9FAFB;
    border-top: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gurifx-signal-date {
    color: #666666;
    font-size: 0.85em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.gurifx-signal-date i {
    color: #999999;
}

/* Archived Details Grid */
.gurifx-archived-details {
    padding: 0;
}

.gurifx-archived-details .gurifx-signal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.gurifx-archived-details .gurifx-signal-row:last-child {
    border-bottom: none;
}

.gurifx-archived-details .gurifx-signal-label {
    color: #666666;
    font-size: 0.8em;
    font-weight: 400;
}

.gurifx-archived-details .gurifx-signal-value {
    color: #000000;
    font-size: 0.9em;
    font-weight: 600;
}

/* Result Colors */
.gurifx-profit {
    color: #10b981 !important;
}

.gurifx-loss {
    color: #ef4444 !important;
}

/* Archived Status Badges */
.gurifx-status-tp_hit {
    background: #E8F5E9;
    color: #2E7D32;
}

.gurifx-status-sl_hit {
    background: #FFEBEE;
    color: #C62828;
}

.gurifx-status-expired {
    background: #F5F5F5;
    color: #757575;
}
