/* MineX - AI Trading Platform Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #000000 !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000 !important;
    color: #FFFFFF !important;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Remove empty space at bottom of pages */
html {
    margin: 0;
    padding: 0;
}

.main {
    min-height: auto !important;
}

section, div {
    box-sizing: border-box;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(247, 167, 7, 0.2) !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(247, 167, 7, 0.5);
}

.logo i {
    font-size: 32px;
    color: var(--text-accent);
    filter: drop-shadow(0 0 10px rgba(247, 167, 7, 0.8));
}

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

.balance {
    background: var(--primary-gradient);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    color: white;
    box-shadow: 0 4px 15px rgba(247, 167, 7, 0.3);
    border: 1px solid rgba(247, 167, 7, 0.5);
}

.user-menu {
    position: relative;
}

.user-btn {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--text-accent);
    padding: 10px 18px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.user-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--text-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 200px;
    display: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.user-menu:hover .user-dropdown {
    display: block;
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.user-dropdown a:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--text-accent);
}

.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Buttons */
.btn {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    position: relative;
    overflow: hidden;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(247, 167, 7, 0.3);
    border: 1px solid rgba(247, 167, 7, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 167, 7, 0.4);
    background: linear-gradient(135deg, #FFB800 0%, #FF8C00 50%, #FF6B00 100%);
}

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

.btn-outline:hover {
    background: var(--text-accent);
    color: white;
    box-shadow: 0 8px 25px rgba(163, 80, 163, 0.3);
}

.btn-large {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Main Content */
.main {
    margin-top: 70px;
    background-color: #000000 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Hero Section */
.hero {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(10, 10, 10, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-accent) 0%, #ffffff 50%, var(--text-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(0, 212, 255, 0.8), 0 0 40px rgba(0, 212, 255, 0.3);
    }
}

.hero-content p {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    font-weight: 300;
}

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

/* Features Section */
.features {
    padding: 100px 0;
    background: #0a0a0a;
}

.features h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 80px;
    background: linear-gradient(135deg, var(--text-accent) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(247, 167, 7, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-hover);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: var(--text-accent);
    box-shadow: 0 25px 50px rgba(247, 167, 7, 0.2);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: white;
    box-shadow: 0 10px 30px rgba(247, 167, 7, 0.3);
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text-accent);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

/* Bots Section */
.bots-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 212, 255, 0.05) 100%);
    position: relative;
}

.bots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.bots-section h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 80px;
    background: linear-gradient(135deg, var(--text-accent) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.bots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.bot-card {
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--text-accent) 0%, var(--text-accent) 50%, var(--text-accent) 100%);
}

.bot-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bot-card:hover::after {
    opacity: 1;
}

.bot-card:hover {
    transform: translateY(-15px);
    border-color: var(--text-accent);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.2);
}

.bot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.bot-header h3 {
    font-size: 28px;
    color: var(--text-accent);
    font-weight: 800;
}

.bot-price {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--text-accent) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bot-features {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.feature i {
    color: var(--text-accent);
    width: 20px;
    font-size: 16px;
}

/* Auth Styles */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #0a0a0a;
    position: relative;
}

.auth-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.auth-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 50px;
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

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

.auth-header h1 {
    font-size: 36px;
    background: linear-gradient(135deg, var(--text-accent) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 800;
}

.auth-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    color: var(--text-accent);
    font-weight: 600;
    font-size: 14px;
}

.form-control {
    padding: 15px 20px;
    border: 1px solid rgba(247, 167, 7, 0.3);
    border-radius: 12px;
    background: var(--bg-card);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-control:focus {
    outline: none;
    border-color: var(--text-accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.error-message {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
}

.auth-footer a {
    color: var(--text-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-footer a:hover {
    text-decoration: underline;
    color: var(--text-accent);
}

/* Messages */
.messages {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 2000;
}

.message {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(247, 167, 7, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-width: 320px;
    animation: slideInRight 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.message-success {
    border-color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
}

.message-error {
    border-color: #f44336;
    background: rgba(244, 67, 54, 0.1);
}

.message-warning {
    border-color: #ff9800;
    background: rgba(255, 152, 0, 0.1);
}

.message-info {
    border-color: #2196f3;
    background: rgba(33, 150, 243, 0.1);
}

.close-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Language Switcher */
.language-switcher {
    margin: 0 15px;
}

.language-switcher select {
    background: var(--bg-secondary, #1a1a1a);
    border: 1px solid var(--text-accent, #F7A707);
    color: var(--text-primary, #ffffff);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-switcher select:hover {
    background: var(--bg-tertiary, #2a2a2a);
    border-color: var(--text-accent, #F7A707);
    box-shadow: 0 0 10px rgba(247, 167, 7, 0.3);
}

.language-switcher select:focus {
    outline: none;
    border-color: var(--text-accent, #F7A707);
    box-shadow: 0 0 0 2px rgba(247, 167, 7, 0.2);
}

.language-switcher option {
    background: var(--bg-secondary, #1a1a1a);
    color: var(--text-primary, #ffffff);
    padding: 8px;
}

/* Footer */
/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23F7A707" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(247, 167, 7, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 167, 7, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(247, 167, 7, 0.5);
    box-shadow: 0 20px 40px rgba(247, 167, 7, 0.2);
}

.testimonial-content {
    margin-bottom: 25px;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.stars i {
    color: #F7A707;
    font-size: 16px;
    text-shadow: 0 0 10px rgba(247, 167, 7, 0.5);
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 60px;
    color: rgba(247, 167, 7, 0.3);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(247, 167, 7, 0.5);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F7A707, #E09706);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0 0 5px 0;
}

.author-info span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.author-stats {
    margin-top: 5px;
}

.author-stats span {
    background: rgba(247, 167, 7, 0.2);
    color: #F7A707;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Success Stories */
.success-stories {
    margin-top: 60px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.story-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(247, 167, 7, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 167, 7, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.story-card:hover::before {
    opacity: 1;
}

.story-card:hover {
    transform: translateY(-10px);
    border-color: rgba(247, 167, 7, 0.5);
    box-shadow: 0 20px 40px rgba(247, 167, 7, 0.2);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.story-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.story-roi {
    background: linear-gradient(135deg, #F7A707, #E09706);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.story-content p {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.story-content p strong {
    color: #F7A707;
    font-weight: 600;
}

.story-timeline {
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(247, 167, 7, 0.2);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.timeline-profit {
    color: #00D4FF;
    font-weight: 600;
    font-size: 14px;
}

/* Trust & Security Section */
.trust-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.8));
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="security" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23F7A707" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23security)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(247, 167, 7, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 167, 7, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-card:hover {
    transform: translateY(-10px);
    border-color: rgba(247, 167, 7, 0.5);
    box-shadow: 0 20px 40px rgba(247, 167, 7, 0.2);
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F7A707, #E09706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(247, 167, 7, 0.3);
}

.trust-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0 0 15px 0;
}

.trust-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 12px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 0, 0.1);
    color: #00FF00;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

/* Certificates Section */
.certificates-section,
.audit-section {
    margin-bottom: 40px;
}

.certificates-card,
.audit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(247, 167, 7, 0.2);
    border-radius: 20px;
    padding: 30px;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.certificate-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(247, 167, 7, 0.1);
    transition: all 0.3s ease;
}

.certificate-item:hover {
    border-color: rgba(247, 167, 7, 0.3);
    transform: translateX(5px);
}

.certificate-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F7A707, #E09706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.certificate-info {
    flex: 1;
}

.certificate-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0 0 5px 0;
}

.certificate-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 10px 0;
}

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

.certificate-status.valid {
    background: rgba(0, 255, 0, 0.1);
    color: #00FF00;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

/* Audit Reports */
.audit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.audit-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(247, 167, 7, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.audit-item:hover {
    border-color: rgba(247, 167, 7, 0.3);
    transform: translateY(-5px);
}

.audit-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.audit-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.audit-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 8px;
}

.audit-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 15px;
}

.audit-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.score-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.score-value {
    font-size: 16px;
    font-weight: 700;
    color: #00FF00;
}

.audit-btn {
    background: linear-gradient(135deg, #F7A707, #E09706);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.audit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 167, 7, 0.3);
}

/* Two-Factor Authentication Styles */
.twofa-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(247, 167, 7, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-top: 20px;
}

.twofa-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(247, 167, 7, 0.2);
}

.twofa-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0 0 8px 0;
}

.twofa-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.status-badge.enabled {
    background: rgba(0, 255, 0, 0.1);
    color: #00FF00;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.status-badge.disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.setup-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(247, 167, 7, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F7A707, #E09706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0 0 8px 0;
}

.step-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 15px 0;
}

.app-links {
    display: flex;
    gap: 10px;
}

.app-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(247, 167, 7, 0.3);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.app-link:hover {
    background: rgba(247, 167, 7, 0.2);
    border-color: #F7A707;
}

.qr-code-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.qr-code {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(247, 167, 7, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.qr-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.qr-placeholder i {
    font-size: 48px;
    margin-bottom: 10px;
    display: block;
}

.qr-display {
    padding: 15px;
    text-align: center;
}

.qr-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.qr-url {
    font-size: 10px;
    color: #00D4FF;
    word-break: break-all;
    margin-bottom: 15px;
}

.qr-manual {
    border-top: 1px solid rgba(247, 167, 7, 0.2);
    padding-top: 15px;
}

.qr-manual p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 8px 0;
}

.secret-key {
    font-size: 12px;
    color: #F7A707;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: monospace;
}

.verification-form {
    display: flex;
    gap: 15px;
    align-items: center;
}

.code-input {
    width: 120px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(247, 167, 7, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    text-align: center;
    letter-spacing: 2px;
    font-family: monospace;
}

.code-input:focus {
    outline: none;
    border-color: #F7A707;
    box-shadow: 0 0 10px rgba(247, 167, 7, 0.3);
}

.verify-btn {
    background: linear-gradient(135deg, #F7A707, #E09706);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.verify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 167, 7, 0.3);
}

.setup-actions {
    text-align: center;
}

.twofa-manage {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.twofa-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.action-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(247, 167, 7, 0.1);
}

.action-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0 0 5px 0;
}

.action-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.twofa-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(247, 167, 7, 0.1);
}

.twofa-info .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.twofa-info .info-item i {
    color: #F7A707;
    width: 16px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(247, 167, 7, 0.3);
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(247, 167, 7, 0.2);
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 30px;
}

.warning-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 10px;
    margin-bottom: 12px;
}

.warning-box i {
    color: #FFA500;
    font-size: 18px;
    margin-top: 2px;
}

.warning-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.backup-codes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.backup-code-item {
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(247, 167, 7, 0.2);
    border-radius: 8px;
    text-align: center;
    font-family: monospace;
    font-size: 14px;
    font-weight: 600;
    color: #00D4FF;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Responsive Design for Trust Section */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-card {
        padding: 25px;
    }
    
    .trust-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .certificate-item {
        padding: 15px;
        gap: 15px;
    }
    
    .audit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .audit-item {
        padding: 20px;
    }
    
    .audit-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    /* 2FA Responsive */
    .twofa-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .verification-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .action-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .app-links {
        justify-content: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .backup-codes {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

/* Live Statistics Section */
.live-stats-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    position: relative;
    overflow: hidden;
}

.stats-update-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.stats-update-indicator i {
    color: #00FF00;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.last-update {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.live-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(247, 167, 7, 0.1);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 167, 7, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(247, 167, 7, 0.5);
    box-shadow: 0 15px 30px rgba(247, 167, 7, 0.2);
}

.stat-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #F7A707, #E09706);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(247, 167, 7, 0.3);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #00D4FF;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.stat-change {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
}

.stat-change.positive {
    color: #00FF00;
}

.stat-change.negative {
    color: #FF4444;
}

.stat-change.neutral {
    color: #FFA500;
}

/* Mining Activity Chart */
.mining-activity {
    margin-bottom: 40px;
}

.activity-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(247, 167, 7, 0.2);
    border-radius: 20px;
    padding: 30px;
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.activity-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.activity-controls {
    display: flex;
    gap: 10px;
}

.timeframe-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(247, 167, 7, 0.3);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.timeframe-btn:hover,
.timeframe-btn.active {
    background: rgba(247, 167, 7, 0.2);
    border-color: #F7A707;
    color: white;
}

.activity-chart {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

/* Top Miners */
.top-miners-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(247, 167, 7, 0.2);
    border-radius: 20px;
    padding: 30px;
}

.top-miners-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0 0 25px 0;
}

.miners-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.miner-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(247, 167, 7, 0.1);
    transition: all 0.3s ease;
}

.miner-item:hover {
    border-color: rgba(247, 167, 7, 0.3);
    transform: translateX(5px);
}

.miner-rank {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #F7A707, #E09706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.miner-info {
    flex: 1;
}

.miner-name {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 3px;
}

.miner-profit {
    font-size: 14px;
    color: #00D4FF;
    font-weight: 600;
}

.miner-roi {
    font-size: 14px;
    font-weight: 600;
    color: #00FF00;
    background: rgba(0, 255, 0, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

/* Responsive Design for Live Stats */
@media (max-width: 768px) {
    .live-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 20px;
        gap: 15px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .activity-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .activity-controls {
        justify-content: center;
    }
    
    .miner-item {
        gap: 15px;
        padding: 12px;
    }
    
    .miner-rank {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* Calculator Section */
.calculator-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    position: relative;
    overflow: hidden;
}

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

.calculator-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(247, 167, 7, 0.2);
    border-radius: 25px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.calculator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 167, 7, 0.05), rgba(0, 212, 255, 0.05));
    pointer-events: none;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.input-group label {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

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

.currency {
    position: absolute;
    left: 15px;
    color: #F7A707;
    font-weight: 600;
    font-size: 18px;
    z-index: 2;
}

.input-wrapper input,
.input-group select {
    width: 100%;
    padding: 15px 20px;
    padding-left: 35px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(247, 167, 7, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-wrapper input:focus,
.input-group select:focus {
    outline: none;
    border-color: #F7A707;
    box-shadow: 0 0 20px rgba(247, 167, 7, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.input-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    transform: scale(1.2);
}

.input-group label:has(input[type="checkbox"]) {
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.results-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.calculate-btn {
    background: linear-gradient(135deg, #F7A707, #E09706);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 167, 7, 0.3);
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 167, 7, 0.4);
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.result-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(247, 167, 7, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.result-item:hover {
    border-color: rgba(247, 167, 7, 0.5);
    transform: translateY(-2px);
}

.result-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.result-value {
    font-size: 24px;
    font-weight: 700;
    color: #00D4FF;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.profit-chart {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(247, 167, 7, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.breakdown-section {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(247, 167, 7, 0.2);
    border-radius: 15px;
    padding: 20px;
}

.breakdown-section h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.breakdown-timeline {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #F7A707;
}

.breakdown-period {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.breakdown-amount {
    color: #00D4FF;
    font-weight: 600;
    font-size: 14px;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card,
    .story-card {
        padding: 20px;
    }
    
    .story-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    /* Calculator responsive */
    .calculator-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .results-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
}

.footer {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(247, 167, 7, 0.2);
    padding: 50px 0;
    margin-top: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--text-accent);
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-content p {
        font-size: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features h2,
    .bots-section h2 {
        font-size: 36px;
    }
    
    .features-grid,
    .bots-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .messages {
        right: 10px;
        left: 10px;
    }
    
    .message {
        min-width: auto;
    }
    
    .auth-card {
        padding: 40px 30px;
    }
}

/* Programming Style Typography */
.hero-title {
    font-family: var(--font-mono);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(247, 167, 7, 0.5);
}

.section-title {
    font-family: var(--font-mono);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dashboard-title {
    font-family: var(--font-mono);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-accent);
    text-shadow: 0 0 15px rgba(247, 167, 7, 0.4);
}

.stat-value {
    font-family: var(--font-mono);
    font-weight: 600;
    letter-spacing: 1px;
}

.miner-name {
    font-family: var(--font-mono);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.transaction-title {
    font-family: var(--font-mono);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.bot-header h3 {
    font-family: var(--font-mono);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bot-price {
    font-family: var(--font-mono);
    font-weight: 700;
    letter-spacing: 1px;
}

.feature-card h3 {
    font-family: var(--font-mono);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.trust-card h3 {
    font-family: var(--font-mono);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.testimonial-author h4 {
    font-family: var(--font-mono);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.story-header h4 {
    font-family: var(--font-mono);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Code-like elements */
.code-element {
    font-family: var(--font-mono);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(247, 167, 7, 0.3);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    color: var(--text-accent);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.status-badge {
    font-family: var(--font-mono);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* Loading and Render Effects */
.typing-effect {
    overflow: hidden;
    border-right: 2px solid var(--text-accent);
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--text-accent); }
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

.code-glow {
    text-shadow: 
        0 0 5px rgba(247, 167, 7, 0.5),
        0 0 10px rgba(247, 167, 7, 0.3),
        0 0 15px rgba(247, 167, 7, 0.2);
    animation: code-pulse 2s ease-in-out infinite alternate;
}

@keyframes code-pulse {
    from {
        text-shadow: 
            0 0 5px rgba(247, 167, 7, 0.5),
            0 0 10px rgba(247, 167, 7, 0.3),
            0 0 15px rgba(247, 167, 7, 0.2);
    }
    to {
        text-shadow: 
            0 0 10px rgba(247, 167, 7, 0.8),
            0 0 20px rgba(247, 167, 7, 0.6),
            0 0 30px rgba(247, 167, 7, 0.4);
    }
}

.terminal-cursor::after {
    content: '|';
    animation: cursor-blink 1s infinite;
    color: var(--text-accent);
}

@keyframes cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.render-effect {
    opacity: 0;
    transform: translateY(20px);
    animation: render-fade 0.8s ease-out forwards;
}

@keyframes render-fade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Matrix-like effect for special elements */
.matrix-text {
    font-family: var(--font-mono);
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
    animation: matrix-flicker 0.1s infinite linear;
}

@keyframes matrix-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Font Awesome Fallback Icons */
.fa-home::before { content: "🏠"; }
.fa-server::before { content: "🖥️"; }
.fa-shopping-cart::before { content: "🛒"; }
.fa-users::before { content: "👥"; }
.fa-user::before { content: "👤"; }
.fa-chart-line::before { content: "📈"; }
.fa-wallet::before { content: "💼"; }
.fa-coins::before { content: "💰"; }
.fa-microchip::before { content: "🔧"; }
.fa-money-bill-wave::before { content: "💸"; }
.fa-bolt::before { content: "⚡"; }
.fa-history::before { content: "🕒"; }
.fa-plus-circle::before { content: "➕"; }
.fa-minus-circle::before { content: "➖"; }
.fa-exchange-alt::before { content: "🔄"; }
.fa-circle::before { content: "●"; }
.fa-check::before { content: "✓"; }
.fa-times::before { content: "✕"; }
.fa-arrow-left::before { content: "←"; }
.fa-arrow-right::before { content: "→"; }
.fa-bars::before { content: "☰"; }
.fa-times::before { content: "✕"; }

/* Loading styles removed */




/* Simplified animations - most removed for better performance */

/* Basic animations only */

/* Complex animations removed for better performance */

/* Basic fadeIn animation only */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* All complex animations removed for performance */

/* Responsive styles start here */

@keyframes cyberScan {
    0% {
        background: linear-gradient(90deg, transparent 0%, rgba(247, 167, 7, 0.3) 50%, transparent 100%);
        transform: translateX(-100%);
    }
    100% {
        background: linear-gradient(90deg, transparent 0%, rgba(247, 167, 7, 0.3) 50%, transparent 100%);
        transform: translateX(100%);
    }
}

@keyframes dataStream {
    0% {
        transform: translateY(0) scaleX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100px) scaleX(1);
        opacity: 0;
    }
}

/* Advanced Hover Effects */
@keyframes magneticPull {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(2deg);
    }
    100% {
        transform: scale(1.05) rotate(-2deg);
    }
}

@keyframes energyWave {
    0% {
        clip-path: circle(0% at 50% 50%);
    }
    100% {
        clip-path: circle(100% at 50% 50%);
    }
}

@keyframes glitchEffect {
    0%, 100% {
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
    10% {
        transform: translate(-2px, 2px);
        filter: hue-rotate(90deg);
    }
    20% {
        transform: translate(2px, -2px);
        filter: hue-rotate(180deg);
    }
    30% {
        transform: translate(-2px, -2px);
        filter: hue-rotate(270deg);
    }
    40% {
        transform: translate(2px, 2px);
        filter: hue-rotate(360deg);
    }
}

/* 3D Transform Effects */
@keyframes flip3D {
    0% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

@keyframes tilt3D {
    0%, 100% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
    }
    50% {
        transform: perspective(1000px) rotateX(0deg) rotateY(10deg);
    }
    75% {
        transform: perspective(1000px) rotateX(-5deg) rotateY(5deg);
    }
}

/* 🔥 ULTRA ADVANCED ANIMATIONS 🔥 */

@keyframes cyberPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(247, 167, 7, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(247, 167, 7, 0);
        transform: scale(1.05);
    }
}

@keyframes neuralNetwork {
    0% {
        background-position: 0% 0%;
        filter: hue-rotate(0deg);
    }
    25% {
        background-position: 100% 0%;
        filter: hue-rotate(90deg);
    }
    50% {
        background-position: 100% 100%;
        filter: hue-rotate(180deg);
    }
    75% {
        background-position: 0% 100%;
        filter: hue-rotate(270deg);
    }
    100% {
        background-position: 0% 0%;
        filter: hue-rotate(360deg);
    }
}

@keyframes quantumEntanglement {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: translateX(10px) translateY(-5px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateX(0) translateY(-10px) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: translateX(-10px) translateY(-5px) rotate(270deg);
        opacity: 0.8;
    }
}

@keyframes holographicShift {
    0%, 100% {
        background: linear-gradient(45deg, #F7A707, #FF8C00, #F7A707);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    25% {
        background: linear-gradient(45deg, #FF8C00, #FF6B00, #FF8C00);
        clip-path: polygon(10% 0, 90% 0, 90% 100%, 10% 100%);
    }
    50% {
        background: linear-gradient(45deg, #FF6B00, #F7A707, #FF6B00);
        clip-path: polygon(20% 0, 80% 0, 80% 100%, 20% 100%);
    }
    75% {
        background: linear-gradient(45deg, #F7A707, #FF8C00, #F7A707);
        clip-path: polygon(10% 0, 90% 0, 90% 100%, 10% 100%);
    }
}

@keyframes dataFlow {
    0% {
        transform: translateX(-100%) scaleX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) scaleX(1);
        opacity: 0;
    }
}

@keyframes cyberResonance {
    0%, 100% {
        filter: brightness(1) contrast(1) saturate(1);
        transform: scale(1);
    }
    50% {
        filter: brightness(1.2) contrast(1.1) saturate(1.3);
        transform: scale(1.02);
    }
}

@keyframes neuralPulse {
    0%, 100% {
        box-shadow: inset 0 0 20px rgba(247, 167, 7, 0.3);
        border-color: rgba(247, 167, 7, 0.5);
    }
    50% {
        box-shadow: inset 0 0 40px rgba(247, 167, 7, 0.6);
        border-color: rgba(247, 167, 7, 0.8);
    }
}

@keyframes quantumTunnel {
    0% {
        transform: perspective(500px) rotateX(0deg) translateZ(0px);
        opacity: 1;
    }
    50% {
        transform: perspective(500px) rotateX(90deg) translateZ(-100px);
        opacity: 0.5;
    }
    100% {
        transform: perspective(500px) rotateX(180deg) translateZ(0px);
        opacity: 1;
    }
}

@keyframes cyberMorph {
    0%, 100% {
        border-radius: 8px;
        background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
        transform: skew(0deg);
    }
    25% {
        border-radius: 50% 8px 8px 50%;
        background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
        transform: skew(2deg);
    }
    50% {
        border-radius: 8px 50% 50% 8px;
        background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
        transform: skew(-2deg);
    }
    75% {
        border-radius: 50% 8px 8px 50%;
        background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
        transform: skew(1deg);
    }
}

@keyframes holographicRain {
    0% {
        transform: translateY(-100vh) rotateX(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotateX(360deg);
        opacity: 0;
    }
}

@keyframes cyberWaves {
    0% {
        transform: scaleX(0) scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scaleX(1) scaleY(1);
        opacity: 0.5;
    }
    100% {
        transform: scaleX(1) scaleY(0);
        opacity: 0;
    }
}

@keyframes neuralConnection {
    0%, 100% {
        stroke-dasharray: 0 100;
        stroke-opacity: 0;
    }
    50% {
        stroke-dasharray: 50 50;
        stroke-opacity: 1;
    }
}

@keyframes quantumLeap {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotateY(0deg);
        filter: blur(0px);
    }
    25% {
        transform: translate3d(20px, -10px, 50px) rotateY(90deg);
        filter: blur(1px);
    }
    50% {
        transform: translate3d(0, -20px, 100px) rotateY(180deg);
        filter: blur(2px);
    }
    75% {
        transform: translate3d(-20px, -10px, 50px) rotateY(270deg);
        filter: blur(1px);
    }
}

@keyframes cyberSync {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: hue-rotate(0deg) brightness(1);
    }
    33% {
        transform: scale(1.1) rotate(120deg);
        filter: hue-rotate(120deg) brightness(1.1);
    }
    66% {
        transform: scale(0.9) rotate(240deg);
        filter: hue-rotate(240deg) brightness(0.9);
    }
}

/* 🎯 MEGA MODERN ANIMATION CLASSES 🎯 */

/* Cyber Effects */
.cyber-glow {
    animation: cyberGlow 2s ease-in-out infinite;
}

.neon-text {
    animation: neonPulse 3s ease-in-out infinite;
}

.hologram-effect {
    animation: hologramFlicker 4s ease-in-out infinite;
    position: relative;
}

.hologram-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(247, 167, 7, 0.1) 50%, transparent 70%);
    animation: cyberScan 3s linear infinite;
    pointer-events: none;
}

/* 3D Effects */
.quantum-float {
    animation: quantumFloat 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.tilt-3d {
    animation: tilt3D 8s ease-in-out infinite;
    transform-style: preserve-3d;
}

.flip-3d {
    animation: flip3D 4s ease-in-out infinite;
    transform-style: preserve-3d;
}

/* Morphing Effects */
.liquid-morph {
    animation: liquidFlow 8s ease-in-out infinite;
}

.morphing-glow {
    animation: morphingGlow 4s ease-in-out infinite;
}

/* Advanced Hover Effects */
.magnetic-hover {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.magnetic-hover:hover {
    animation: magneticPull 0.6s ease-in-out;
    transform: scale(1.05);
}

.energy-wave {
    position: relative;
    overflow: hidden;
}

.energy-wave::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #F7A707, #FF8C00);
    animation: energyWave 2s ease-out;
    opacity: 0.1;
}

.glitch-text {
    animation: glitchEffect 5s ease-in-out infinite;
}

/* Particle effects removed */

/* Data Stream Effects */
.data-stream {
    position: relative;
    overflow: hidden;
}

.data-stream::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #F7A707, transparent);
    animation: dataStream 3s linear infinite;
    transform: translateX(-50%);
}

/* Matrix Rain Effect */
.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.matrix-rain::before,
.matrix-rain::after {
    content: '01';
    position: absolute;
    color: #F7A707;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    opacity: 0.3;
    animation: matrixRain 10s linear infinite;
}

.matrix-rain::before {
    left: 10%;
    animation-delay: 0s;
}

.matrix-rain::after {
    left: 80%;
    animation-delay: 5s;
}

/* Performance Optimized Animations */
.gpu-accelerated {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.smooth-transition {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Interactive Elements */
.interactive-glow {
    position: relative;
    transition: all 0.3s ease;
}

.interactive-glow:hover {
    box-shadow: 0 0 20px rgba(247, 167, 7, 0.5);
    transform: translateY(-2px);
}

.interactive-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #F7A707, #FF8C00, #F7A707);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.interactive-glow:hover::before {
    opacity: 0.3;
    animation: morphingGlow 2s ease-in-out infinite;
}

/* Cyber Button Effects */
.cyber-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    border: 1px solid #F7A707;
    color: #F7A707;
    transition: all 0.3s ease;
}

.cyber-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(247, 167, 7, 0.2), transparent);
    transition: left 0.5s ease;
}

.cyber-button:hover::before {
    left: 100%;
}

.cyber-button:hover {
    box-shadow: 0 0 20px rgba(247, 167, 7, 0.5);
    transform: translateY(-2px);
}

/* 🔥 ULTRA ADVANCED ANIMATION CLASSES 🔥 */

/* Quantum Effects */
.quantum-pulse {
    animation: cyberPulse 2s ease-in-out infinite;
}

.neural-network {
    background: linear-gradient(45deg, #F7A707, #FF8C00, #FF6B00, #F7A707);
    background-size: 400% 400%;
    animation: neuralNetwork 8s ease-in-out infinite;
}

.quantum-entanglement {
    animation: quantumEntanglement 6s ease-in-out infinite;
}

.holographic-shift {
    animation: holographicShift 4s ease-in-out infinite;
}

.data-flow {
    position: relative;
    overflow: hidden;
}

.data-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(247, 167, 7, 0.3), transparent);
    animation: dataFlow 3s linear infinite;
}

.cyber-resonance {
    animation: cyberResonance 3s ease-in-out infinite;
}

.neural-pulse {
    animation: neuralPulse 2s ease-in-out infinite;
}

.quantum-tunnel {
    animation: quantumTunnel 5s ease-in-out infinite;
}

.cyber-morph {
    animation: cyberMorph 6s ease-in-out infinite;
}

.holographic-rain {
    position: relative;
    overflow: hidden;
}

.holographic-rain::before {
    content: '01010101';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: #F7A707;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    opacity: 0.3;
    animation: holographicRain 8s linear infinite;
}

.cyber-waves {
    position: relative;
    overflow: hidden;
}

.cyber-waves::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid #F7A707;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: cyberWaves 2s ease-out infinite;
}

.neural-connection {
    position: relative;
}

.neural-connection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, #F7A707, #FF8C00) 1;
    animation: neuralConnection 3s ease-in-out infinite;
}

.quantum-leap {
    animation: quantumLeap 4s ease-in-out infinite;
}

.cyber-sync {
    animation: cyberSync 3s ease-in-out infinite;
}

/* Ultra Advanced Hover Effects */
.quantum-hover {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.quantum-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(247, 167, 7, 0.2), transparent);
    transition: left 0.5s ease;
}

.quantum-hover:hover::before {
    left: 100%;
}

.quantum-hover:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(247, 167, 7, 0.3);
}

/* Neural Interface Effects */
.neural-interface {
    background: linear-gradient(135deg, rgba(247, 167, 7, 0.1), rgba(255, 140, 0, 0.1));
    border: 1px solid rgba(247, 167, 7, 0.3);
    position: relative;
}

.neural-interface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(247, 167, 7, 0.1) 50%, transparent 70%);
    animation: cyberScan 4s linear infinite;
    pointer-events: none;
}

/* Cyber Grid Effects */
.cyber-grid {
    background-image: 
        linear-gradient(rgba(247, 167, 7, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(247, 167, 7, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: neuralPulse 3s ease-in-out infinite;
}

/* Quantum Field Effects */
.quantum-field {
    position: relative;
}

.quantum-field::before,
.quantum-field::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(45deg, #F7A707, #FF8C00);
    opacity: 0;
    animation: quantumEntanglement 6s ease-in-out infinite;
}

.quantum-field::before {
    animation-delay: 0s;
}

.quantum-field::after {
    animation-delay: 3s;
}

/* Ultra Performance Optimizations */
.ultra-optimized {
    will-change: transform, opacity, filter;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.gpu-turbo {
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
}

/* Cyberpunk Text Effects */
.cyberpunk-text {
    background: linear-gradient(45deg, #F7A707, #FF8C00, #FF6B00, #F7A707);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: neuralNetwork 4s ease-in-out infinite;
}

.neon-border {
    border: 2px solid transparent;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a) padding-box,
                linear-gradient(45deg, #F7A707, #FF8C00, #F7A707) border-box;
    animation: cyberSync 3s ease-in-out infinite;
}

/* Ultra Mobile Optimizations */
@media (max-width: 768px) {
    .quantum-pulse,
    .neural-network,
    .quantum-entanglement,
    .holographic-shift,
    .quantum-tunnel,
    .cyber-morph,
    .quantum-leap,
    .cyber-sync {
        animation-duration: 6s;
    }
    
    .holographic-rain::before,
    .cyber-waves::after {
        display: none;
    }
    
    .neural-interface::before {
        animation-duration: 6s;
    }
}

/* Settings Styles */
.settings-section {
    padding: 1rem 0;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-item label {
    font-weight: 500;
    color: var(--text-secondary);
}

.language-switcher select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    min-width: 150px;
}

.language-switcher select:focus {
    outline: none;
    border-color: var(--text-accent);
    box-shadow: 0 0 0 2px rgba(247, 167, 7, 0.2);
}

/* Dashboard Styles */
.dashboard-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 50px;
}

.dashboard-header h1 {
    font-size: 48px;
    background: linear-gradient(135deg, var(--text-accent) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 800;
}

.dashboard-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.quick-actions {
    margin-bottom: 60px;
}

.quick-actions h2 {
    font-size: 32px;
    color: var(--text-accent);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.action-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.action-card:hover {
    transform: translateY(-5px);
    border-color: var(--text-accent);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
    color: var(--text-accent);
}

.action-card i {
    font-size: 32px;
    color: var(--text-accent);
}

.action-card span {
    font-size: 16px;
    font-weight: 600;
}

.active-bots, .recent-transactions {
    margin-bottom: 60px;
}

.active-bots h2, .recent-transactions h2 {
    font-size: 32px;
    color: var(--text-accent);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.bots-list, .transactions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bot-item, .transaction-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bot-info h3 {
    color: var(--text-accent);
    margin-bottom: 5px;
    font-weight: 700;
}

.bot-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.transaction-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.transaction-type {
    color: var(--text-accent);
    font-weight: 600;
}

.transaction-amount {
    color: white;
    font-weight: 700;
}

.transaction-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Profile Styles */
.profile-container {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.profile-header {
    text-align: center;
    margin-bottom: 50px;
}

.profile-header h1 {
    font-size: 48px;
    background: linear-gradient(135deg, var(--text-accent) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 800;
}

.profile-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.profile-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.profile-card h2 {
    font-size: 28px;
    color: var(--text-accent);
    margin-bottom: 30px;
    font-weight: 700;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.info-item span {
    color: white;
    font-weight: 500;
}

.referral-code {
    background: rgba(0, 212, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    font-family: monospace;
    font-weight: 600;
    color: var(--text-accent);
}

.copy-btn {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--text-accent);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--text-accent);
}

/* Referrals Styles */
.referrals-container {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.referrals-header {
    text-align: center;
    margin-bottom: 50px;
}

.referrals-header h1 {
    font-size: 48px;
    background: linear-gradient(135deg, var(--text-accent) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 800;
}

.referrals-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.referral-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.referral-code-section, .referral-link-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
}

.referral-code-section h2, .referral-link-section h2 {
    font-size: 28px;
    color: var(--text-accent);
    margin-bottom: 12px;
    font-weight: 700;
}

.referral-code-container, .referral-link-container {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.referral-code {
    background: rgba(0, 212, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    font-family: monospace;
    font-weight: 700;
    color: var(--text-accent);
    font-size: 18px;
    flex: 1;
}

.referral-link-input {
    background: rgba(0, 212, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--text-accent);
    font-size: 16px;
    flex: 1;
    outline: none;
}

.referral-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.referrals-list-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
}

.referrals-list-section h2 {
    font-size: 28px;
    color: var(--text-accent);
    margin-bottom: 30px;
    font-weight: 700;
}

.referrals-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.referral-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.referral-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--text-accent) 0%, var(--text-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.referral-info {
    flex: 1;
}

.referral-name {
    color: var(--text-accent);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.referral-email {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 5px;
}

.referral-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.no-referrals {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    margin-bottom: 30px;
}

.no-referrals i {
    font-size: 64px;
    color: rgba(0, 212, 255, 0.5);
    margin-bottom: 12px;
}

.no-referrals h3 {
    font-size: 24px;
    color: var(--text-accent);
    margin-bottom: 10px;
}

.no-referrals p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.referral-rules {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.referral-rules h2 {
    font-size: 28px;
    color: var(--text-accent);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.rules-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.rule-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--text-accent) 0%, var(--text-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.rule-content h3 {
    color: var(--text-accent);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.rule-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

/* Bots Styles */
.bots-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bots-header {
    text-align: center;
    margin-bottom: 50px;
}

.bots-header h1 {
    font-size: 48px;
    background: linear-gradient(135deg, var(--text-accent) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 800;
}

.bots-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.available-bots, .active-bots, .payment-methods {
    margin-bottom: 60px;
}

.available-bots h2, .active-bots h2, .payment-methods h2 {
    font-size: 32px;
    color: var(--text-accent);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.bots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bot-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.bot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--text-accent) 0%, var(--text-accent) 50%, var(--text-accent) 100%);
}

.bot-card:hover {
    transform: translateY(-10px);
    border-color: var(--text-accent);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.2);
}

.bot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.bot-header h3 {
    font-size: 24px;
    color: var(--text-accent);
    font-weight: 700;
}

.bot-price {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-accent) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bot-features {
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.feature i {
    color: var(--text-accent);
    width: 20px;
    font-size: 16px;
}

.btn {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
}

.active-bots-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bot-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bot-info h3 {
    color: var(--text-accent);
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.bot-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    font-size: 14px;
}

.bot-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.stat-value {
    color: var(--text-accent);
    font-weight: 700;
    font-size: 16px;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.active {
    background: rgba(0, 212, 170, 0.2);
    color: var(--text-success);
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.payment-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    border-color: var(--text-accent);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.payment-card i {
    font-size: 40px;
    color: var(--text-accent);
    margin-bottom: 15px;
}

.payment-card h3 {
    color: var(--text-accent);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.payment-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Trading Styles */
.trading-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.trading-header {
    text-align: center;
    margin-bottom: 50px;
}

.trading-header h1 {
    font-size: 48px;
    background: linear-gradient(135deg, var(--text-accent) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 800;
}

.trading-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.trading-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.quick-actions, .active-bots, .available-bots-preview {
    margin-bottom: 50px;
}

.quick-actions h2, .active-bots h2, .available-bots-preview h2 {
    font-size: 32px;
    color: var(--text-accent);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.action-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.action-card:hover {
    transform: translateY(-5px);
    border-color: var(--text-accent);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
    color: var(--text-accent);
}

.action-card i {
    font-size: 32px;
    color: var(--text-accent);
}

.action-card span {
    font-size: 16px;
    font-weight: 600;
}

.bots-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bot-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bot-info h3 {
    color: var(--text-accent);
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.bot-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    font-size: 14px;
}

.bot-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.stat-value {
    color: var(--text-accent);
    font-weight: 700;
    font-size: 16px;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.active {
    background: rgba(0, 212, 170, 0.2);
    color: var(--text-success);
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.no-bots {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
}

.no-bots i {
    font-size: 64px;
    color: rgba(0, 212, 255, 0.5);
    margin-bottom: 12px;
}

.no-bots h3 {
    font-size: 24px;
    color: var(--text-accent);
    margin-bottom: 10px;
}

.no-bots p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 30px;
}

.bots-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.bot-preview-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.bot-preview-card:hover {
    transform: translateY(-5px);
    border-color: var(--text-accent);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.bot-preview-card h3 {
    color: var(--text-accent);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.bot-price {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.bot-return {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 12px;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(0, 212, 255, 0.5);
    color: var(--text-accent);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--text-accent);
    color: white;
}

/* Withdrawal Styles */
.withdrawal-container {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.withdrawal-header {
    text-align: center;
    margin-bottom: 50px;
}

.withdrawal-header h1 {
    font-size: 48px;
    background: linear-gradient(135deg, var(--text-accent) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 800;
}

.withdrawal-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.withdrawal-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.withdrawal-form {
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--text-accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.3);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
}

.pending-withdrawals {
    margin-top: 40px;
}

.pending-withdrawals h3 {
    font-size: 24px;
    color: var(--text-accent);
    margin-bottom: 12px;
    font-weight: 700;
}

.withdrawals-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.withdrawal-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.withdrawal-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.amount {
    color: var(--text-accent);
    font-weight: 700;
    font-size: 18px;
}

.method {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-approved {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-rejected {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.withdrawal-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .dashboard-container,
    .profile-container,
    .referrals-container,
    .bots-container,
    .trading-container,
    .withdrawal-container {
        padding: 20px 15px;
    }
    
    .dashboard-header h1,
    .profile-header h1,
    .referrals-header h1,
    .bots-header h1,
    .trading-header h1,
    .withdrawal-header h1 {
        font-size: 36px;
    }
    
    .stats-grid,
    .referral-stats,
    .trading-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bot-item,
    .transaction-item,
    .referral-item,
    .withdrawal-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .bot-stats {
        align-items: flex-start;
    }
    
    .bots-grid,
    .bots-preview-grid,
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .referral-code-container,
    .referral-link-container {
        flex-direction: column;
    }
    
    .referral-code,
    .referral-link-input {
        width: 100%;
    }
    
    .rules-list {
        grid-template-columns: 1fr;
    }
    
    .rule-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid rgba(247, 167, 7, 0.3);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text-danger);
}

.modal-body {
    padding: 2rem;
}

.modal-body .form-group {
    margin-bottom: 1.5rem;
}

.modal-body .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.modal-body .form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modal-body .form-control:focus {
    outline: none;
    border-color: var(--text-accent);
    box-shadow: 0 0 0 3px rgba(247, 167, 7, 0.2);
}

.modal-body .form-control::placeholder {
    color: var(--text-muted);
}

.modal-body textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.modal-body .btn-full {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 1rem;
}

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

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

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
}