/* Mobile Affiliate System CSS - Cyberpunk Theme */

/* Cyberpunk Theme Variables */
:root {
    --cyberpunk-primary: #00FFFF;
    --cyberpunk-primary-dark: #00CCCC;
    --cyberpunk-secondary: #FF6B00;
    --cyberpunk-accent: #FF00FF;
    --cyberpunk-bg: #0A0A0A;
    --cyberpunk-card-bg: #1A1A1A;
    --cyberpunk-text: #FFFFFF;
    --cyberpunk-text-secondary: #B0B0B0;
    --cyberpunk-border: #333333;
    --cyberpunk-glow: 0 0 10px rgba(0, 255, 255, 0.5);
    --cyberpunk-glow-secondary: 0 0 10px rgba(255, 107, 0, 0.5);
}

/* Base Styles */
body.cyberpunk-bg {
    background-color: var(--cyberpunk-bg);
    color: var(--cyberpunk-text);
    font-family: 'Inter', sans-serif;
}

/* Header Styles */
.cyberpunk-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--cyberpunk-border);
    padding: 0.5rem;
    z-index: 1002;
}

.mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.5rem;
}

.header-logo {
    height: 35px;
    width: auto;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--cyberpunk-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
    z-index: 1003;
    position: relative;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    background: var(--cyberpunk-card-bg);
    border-left: 1px solid var(--cyberpunk-border);
    padding: 1rem;
    z-index: 1001;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    /* Default state is hidden - script will control display */
    display: none;
}

.mobile-menu.active {
    /* We're not using this class anymore - using direct style manipulation instead */
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 3rem; /* Space for header */
}

.mobile-menu li {
    margin-bottom: 0.5rem;
}

.mobile-menu a {
    color: var(--cyberpunk-text);
    text-decoration: none;
    display: block;
    padding: 0.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(0, 255, 255, 0.1);
    color: var(--cyberpunk-primary);
}

.mobile-menu a i {
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
}

.cyberpunk-social {
    color: var(--cyberpunk-text);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cyberpunk-social:hover {
    color: var(--cyberpunk-primary);
    transform: scale(1.1);
}

/* Hero Section */
.cyberpunk-hero {
    padding: 6rem 1rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.9));
    position: relative;
    overflow: hidden;
}

.cyberpunk-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, var(--cyberpunk-primary) 49%, transparent 51%),
        linear-gradient(-45deg, transparent 48%, var(--cyberpunk-secondary) 49%, transparent 51%);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: 0;
}

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

.cyberpunk-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--cyberpunk-primary);
    text-shadow: var(--cyberpunk-glow);
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--cyberpunk-text);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.join-tagline {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cyberpunk-secondary);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: var(--cyberpunk-glow-secondary);
    margin: 1.5rem 0;
}

.affiliate-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.affiliate-benefits li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.cyberpunk-icon {
    color: var(--cyberpunk-primary);
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* Button Styles */
.cyberpunk-button {
    background: linear-gradient(45deg, var(--cyberpunk-primary), var(--cyberpunk-accent));
    color: var(--cyberpunk-bg);
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.cyberpunk-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.cyberpunk-button.outline {
    background: transparent;
    border: 2px solid var(--cyberpunk-primary);
    color: var(--cyberpunk-primary);
    box-shadow: none;
}

.cyberpunk-button.outline:hover {
    background: rgba(0, 255, 255, 0.1);
}

.cyberpunk-button.compact {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Card Styles */
.cyberpunk-card {
    background: var(--cyberpunk-card-bg);
    border: 1px solid var(--cyberpunk-border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cyberpunk-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Auth Section Styles */
.cyberpunk-auth {
    padding: 2rem 1rem;
    margin-top: 60px;
}

.auth-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--cyberpunk-border);
    position: relative;
    z-index: 1;
}

.auth-tab {
    padding: 1rem 2rem;
    color: var(--cyberpunk-text-secondary);
    cursor: pointer;
    position: relative;
    font-weight: 600;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
}

.auth-tab:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--cyberpunk-primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.auth-tab:hover:before {
    width: 40%;
}

.auth-tab.active:before {
    width: 100%;
}

.auth-tab.active {
    color: var(--cyberpunk-primary);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.auth-form-container {
    max-width: 100%;
    margin: 0 auto;
    background: rgba(20, 20, 30, 0.7);
    border-radius: 10px;
    border: 1px solid var(--cyberpunk-border);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    overflow: hidden;
    position: relative;
}

.auth-form-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--cyberpunk-secondary), var(--cyberpunk-primary), var(--cyberpunk-secondary));
    animation: cyberpunkPulse 2s infinite;
}

.auth-form {
    display: none;
    padding: 2rem;
    transition: all 0.3s ease;
}

.auth-form.active {
    display: block;
    animation: formFadeIn 0.5s forwards;
}

@keyframes formFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.form-group:hover {
    transform: translateX(3px);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--cyberpunk-text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cyberpunk-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(30, 30, 45, 0.8);
    border: 1px solid var(--cyberpunk-border);
    border-radius: 4px;
    color: var(--cyberpunk-text);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 0 0 0 transparent;
}

.cyberpunk-input:hover {
    border-color: #444;
    background: rgba(35, 35, 55, 0.8);
}

.cyberpunk-input:focus {
    border-color: var(--cyberpunk-primary);
    box-shadow: 0 0 0 2px rgba(0, 255, 255, 0.2), 0 0 15px rgba(0, 255, 255, 0.2);
    background: rgba(30, 30, 60, 0.9);
}

.auth-form .cyberpunk-button {
    width: 100%;
    padding: 12px;
    margin-top: 0.5rem;
    background: linear-gradient(90deg, var(--cyberpunk-primary-dark), var(--cyberpunk-primary));
    border: none;
    border-radius: 4px;
    color: var(--cyberpunk-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0); }
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--cyberpunk-text-secondary);
    text-align: center;
}

.form-message.error {
    color: #ff4757;
}

.auth-links {
    margin-top: 1.5rem;
    text-align: center;
}

.cyberpunk-link {
    color: var(--cyberpunk-primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin: 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.cyberpunk-link:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cyberpunk-primary);
    transition: width 0.3s ease;
}

.cyberpunk-link:hover {
    color: var(--cyberpunk-secondary);
    text-shadow: 0 0 5px var(--cyberpunk-primary);
}

.cyberpunk-link:hover:after {
    width: 100%;
}

/* Mobile-specific auth styles */
@media (max-width: 767px) {
    .auth-form-container {
        padding: 0;
    }
    
    .auth-form {
        padding: 1.5rem;
    }
    
    .auth-tabs {
        margin-bottom: 1.5rem;
    }
    
    .auth-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .auth-links {
        margin-top: 1.5rem;
    }
    
    .cyberpunk-link {
        font-size: 0.9rem;
        margin: 0.25rem;
        padding: 0.5rem;
        display: block;
    }
}

/* Main Content Spacing */
main {
    padding-top: 3.5rem; /* Space for fixed header */
}

/* Mobile Dashboard */
@media (max-width: 767px) {
    .cyberpunk-dashboard {
        padding: 1rem;
    }

    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .referral-link-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .share-buttons {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* Mobile Airdrop Section */
@media (max-width: 767px) {
    .cyberpunk-airdrop {
        padding: 1rem;
    }

    .airdrop-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .points-earning-methods {
        grid-template-columns: 1fr;
    }
}

/* Mobile Footer */
@media (max-width: 767px) {
    .cyberpunk-footer {
        padding: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Prevent desktop styles from affecting mobile */
@media (min-width: 768px) {
    .mobile-menu {
        display: none;
    }
}

/* Dashboard Styles */
.cyberpunk-dashboard {
    padding: 2rem 1rem;
}

.dashboard-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.dashboard-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--cyberpunk-primary);
}

.stat-info h3 {
    font-size: 0.9rem;
    color: var(--cyberpunk-text-secondary);
    margin: 0;
}

.stat-info p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyberpunk-text);
    margin: 0;
}

.referral-link-container {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin: 1rem 0;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Airdrop Section */
.cyberpunk-airdrop {
    padding: 2rem 1rem;
}

.airdrop-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.points-progress-container {
    position: relative;
    height: 24px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    margin: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.points-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--cyberpunk-primary), var(--cyberpunk-secondary));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.points-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: 600;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
    z-index: 1;
    font-size: 0.9rem;
}

.rank-thresholds {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0 0.5rem;
}

.rank-thresholds span {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.points-earning-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.method {
    text-align: center;
    padding: 1.5rem;
}

.method i {
    font-size: 2rem;
    color: var(--cyberpunk-primary);
    margin-bottom: 1rem;
}

.method h4 {
    margin: 0 0 0.5rem 0;
    color: var(--cyberpunk-text);
}

.method p {
    margin: 0;
    color: var(--cyberpunk-text-secondary);
    font-size: 0.9rem;
}

/* Footer Styles */
.cyberpunk-footer {
    background: var(--cyberpunk-card-bg);
    padding: 2rem 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-about h3,
.footer-links h3 {
    color: var(--cyberpunk-primary);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--cyberpunk-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--cyberpunk-primary);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--cyberpunk-border);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: var(--cyberpunk-primary);
    color: var(--cyberpunk-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* Notification System */
.cyberpunk-notification {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyberpunk-card-bg);
    color: var(--cyberpunk-text);
    padding: 1rem 2rem;
    border-radius: 4px;
    border: 1px solid var(--cyberpunk-primary);
    box-shadow: var(--cyberpunk-glow);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.cyberpunk-notification.visible {
    opacity: 1;
    visibility: visible;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .dashboard-actions {
        flex-direction: row;
    }
    
    .share-buttons {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .points-earning-methods {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Animation Keyframes */
@keyframes cyberpunkGlow {
    0% { box-shadow: 0 0 5px rgba(0, 255, 255, 0.5); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.8); }
    100% { box-shadow: 0 0 5px rgba(0, 255, 255, 0.5); }
}

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

.cyberpunk-button {
    animation: cyberpunkGlow 2s infinite;
}

.cyberpunk-card:hover {
    animation: cyberpunkPulse 1s infinite;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cyberpunk-text-secondary);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-with-icon .cyberpunk-input {
    padding-left: 45px;
}

.input-with-icon .cyberpunk-input:focus + i,
.input-with-icon .cyberpunk-input:focus ~ i {
    color: var(--cyberpunk-primary);
}

/* Improve input focus effect */
.cyberpunk-input:focus {
    border-color: var(--cyberpunk-primary);
    box-shadow: 0 0 0 2px rgba(0, 255, 255, 0.2), 0 0 15px rgba(0, 255, 255, 0.2);
    background: rgba(30, 30, 60, 0.9);
}

/* Make icons more interactive */
.input-with-icon:hover i {
    color: var(--cyberpunk-primary);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.auth-form .cyberpunk-button:hover {
    background: linear-gradient(90deg, var(--cyberpunk-primary), var(--cyberpunk-secondary));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.auth-form .cyberpunk-button:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    opacity: 0;
    transition: all 0.6s ease;
}

.auth-form .cyberpunk-button:hover:before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

/* Improved table responsiveness */
.history-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1rem -1rem;
    padding: 0 1rem;
}

.history-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.history-table th,
.history-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.history-table th {
    background: rgba(0, 0, 0, 0.4);
    font-weight: 600;
    color: var(--cyberpunk-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
}

.history-table td {
    font-size: 0.9rem;
}

.empty-history {
    text-align: center;
    padding: 2rem !important;
    color: rgba(255, 255, 255, 0.6);
}

/* Status badges */
.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: capitalize;
}

.status-badge.completed {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
}

.status-badge.pending {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
}

.status-badge.failed {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
}

/* Stats cards improvements */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.stat-card {
    padding: 1.5rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 2rem;
    color: var(--cyberpunk-primary);
    margin-bottom: 1rem;
}

.stat-info h3 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.stat-info p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .history-table-container {
        margin: 1rem -1rem;
    }
    
    .history-table th,
    .history-table td {
        padding: 8px;
        font-size: 0.8rem;
    }
}

/* Google Button Styles (Cyberpunk Theme) */
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 15px; /* Adjusted padding for mobile */
    margin: 10px 0;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid var(--cyberpunk-primary); /* Use mobile var if different */
    border-radius: 5px;
    color: var(--cyberpunk-text-light); /* Use mobile var if different */
    font-size: 14px; /* Adjusted font size for mobile */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-google::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 107, 0, 0.5), transparent); /* Use primary color var */
    transition: all 0.4s ease;
}

.btn-google:hover {
    background: var(--cyberpunk-primary-dark); /* Use mobile var if different */
    color: var(--cyberpunk-dark); /* Use mobile var if different */
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.6); /* Use primary color var */
    border-color: var(--cyberpunk-primary-dark); /* Use mobile var if different */
}

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

.btn-google img {
    width: 18px; /* SVG size for mobile */
    height: 18px;
    margin-right: 8px;
    /* No filter needed, SVG uses currentColor */
}

.btn-google:hover img {
    /* SVG color changes with button text color on hover */
}

/* Ensure cyberpunk-button styles don't overly conflict */
.cyberpunk-button.btn-google {
    padding: 12px 15px; /* Override base cyberpunk-button padding if needed */
}

/* Checkbox Group Styles for Mobile */
.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    min-width: 18px;
    height: 18px;
    margin: 0;
    margin-top: 2px;
    accent-color: var(--cyberpunk-primary);
    cursor: pointer;
    background: var(--cyberpunk-card-bg);
    border: 1px solid var(--cyberpunk-border);
    border-radius: 3px;
}

.checkbox-label {
    font-size: 14px;
    line-height: 1.4;
    color: var(--cyberpunk-text);
    cursor: pointer;
    margin: 0;
}

.cyberpunk-link {
    color: var(--cyberpunk-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cyberpunk-link:hover {
    color: var(--cyberpunk-secondary);
    text-decoration: underline;
}

/* Disabled button styles for mobile */
.cyberpunk-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(0, 255, 255, 0.3);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: none;
}

.cyberpunk-button.btn-google:disabled {
    background: rgba(66, 133, 244, 0.3);
    border-color: rgba(66, 133, 244, 0.3);
}

.cyberpunk-button:disabled:hover {
    transform: none;
    box-shadow: none;
} 