:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #10b981;
    --dark: #1f2937;
    --darker: #111827;
    --light: #f3f4f6;
    --gray: #6b7280;
    --success: #059669;
    --warning: #d97706;
    --error: #dc2626;
    --border: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: #f8fafc;
    overflow-x: hidden;
}

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

/* ==================== 0G.AI INSPIRED HERO SECTION ==================== */
.hero-0g {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a1a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Inter', sans-serif;
}

/* Particles Container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: floatElement 8s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.el-1 { top: 20%; left: 10%; animation-delay: 0s; }
.el-2 { top: 60%; left: 85%; animation-delay: 1s; }
.el-3 { top: 80%; left: 15%; animation-delay: 2s; }
.el-4 { top: 30%; left: 80%; animation-delay: 3s; }
.el-5 { top: 70%; left: 90%; animation-delay: 4s; }
.el-6 { top: 40%; left: 5%; animation-delay: 5s; }

@keyframes floatElement {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) rotate(10deg) scale(1.1);
        opacity: 0.6;
    }
}

/* Main Hero Content */
.hero-main {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 50%, #0088ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.6));
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 3rem;
    opacity: 0.8;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Bottom Logo */
.hero-bottom {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
}

.bottom-logo .logo-main {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bottom-logo .logo-sub {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 2;
    text-align: center;
    opacity: 0.7;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    opacity: 1;
    transform: scale(1.1);
}

.scroll-text {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.scroll-arrow {
    font-size: 1.2rem;
    animation: bounceArrow 1s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

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

/* ==================== NAVIGATION ==================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid var(--border);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.nav-logo i {
    color: var(--primary);
    font-size: 1.8rem;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 18px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
    background: var(--light);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 10px;
    border: 1px solid var(--border);
    z-index: 1000;
    padding: 8px 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: var(--dark);
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background: var(--light);
}

.coming-soon {
    font-size: 0.75rem;
    color: var(--gray);
    background: var(--light);
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
}

/* Wallet Container Styling */
.wallet-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wallet-info {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wallet-address {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--success);
    font-family: 'Courier New', monospace;
}

/* Navigation Disconnect Button */
.btn-disconnect-nav {
    background: var(--error);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-disconnect-nav:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    padding: 8px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

.mobile-menu a:hover {
    background: var(--light);
}

/* Connect Button */
.btn-connect {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-connect:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* ==================== MAIN CONTENT ==================== */
.main-content {
    margin-top: 70px;
    min-height: calc(100vh - 200px);
}

.content-section {
    display: none;
    padding: 40px 0;
    animation: fadeIn 0.5s ease;
}

.content-section.active {
    display: block;
}

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== NOTIFICATION STYLES ==================== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
    backdrop-filter: blur(10px);
}

.notification.success {
    background: rgba(76, 175, 80, 0.9);
    border-left: 4px solid #388E3C;
}

.notification.error {
    background: rgba(244, 67, 54, 0.9);
    border-left: 4px solid #d32f2f;
}

.notification.warning {
    background: rgba(255, 152, 0, 0.9);
    border-left: 4px solid #f57c00;
}

.notification.info {
    background: rgba(33, 150, 243, 0.9);
    border-left: 4px solid #1976D2;
}

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

/* ==================== LOADING AND RESULT STYLES ==================== */
.loading {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    color: #1976d2;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.success {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    color: #2e7d32;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.error {
    background: #ffebee;
    border: 1px solid #f44336;
    color: #c62828;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

/* ==================== TRANSACTION STYLES ==================== */
.transaction-hash {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.transaction-details {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
}

.transaction-details p {
    margin: 8px 0;
    display: flex;
    justify-content: space-between;
}

.transaction-details strong {
    color: #333;
    min-width: 120px;
}

.btn-copy {
    background: #6c757d;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.btn-small {
    background: #007bff;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    margin: 2px;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.hash {
    cursor: pointer;
    color: #007bff;
    font-family: monospace;
    padding: 2px 6px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hash:hover {
    background: #e9ecef;
    text-decoration: underline;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.status-badge.success {
    background: #d4edda;
    color: #155724;
}

/* ==================== DASHBOARD STYLES ==================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.stat-info p {
    color: var(--gray);
    font-weight: 500;
}

/* Quick Actions */
.quick-actions {
    margin-bottom: 50px;
}

.quick-actions h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--dark);
}

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

.action-btn {
    background: white;
    border: 2px solid var(--border);
    padding: 25px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark);
}

.action-btn:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.action-btn i {
    font-size: 2rem;
    color: var(--primary);
}

.action-btn span {
    font-weight: 600;
    font-size: 1rem;
}

/* Recent Activity */
.recent-activity {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}

.recent-activity h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.activity-list {
    min-height: 100px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light);
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.activity-item:hover {
    transform: translateX(5px);
    background: #e5e7eb;
}

.activity-item i {
    color: var(--primary);
}

.activity-item p {
    margin: 0;
    color: var(--dark);
}

/* ==================== FORM STYLES ==================== */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
}

.connection-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 10px;
    background: var(--light);
    font-weight: 600;
}

.connection-status.connected {
    background: #d1fae5;
    color: var(--success);
    border: 1px solid #a7f3d0;
}

.connection-status i {
    font-size: 0.8rem;
}

/* Forms */
.data-form {
    margin-bottom: 30px;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #0da271;
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* Search Box */
.search-box {
    margin-bottom: 30px;
}

/* Results */
.result {
    margin-top: 25px;
    padding: 25px;
    border-radius: 12px;
    display: none;
    animation: fadeIn 0.5s;
    border-left: 4px solid;
}

.result.success {
    background: #d1fae5;
    border-left-color: var(--success);
    color: var(--success);
}

.result.error {
    background: #fef2f2;
    border-left-color: var(--error);
    color: var(--error);
}

.result.info {
    background: #eff6ff;
    border-left-color: var(--primary);
    color: var(--primary);
}

.hash-display {
    background: var(--darker);
    color: white;
    padding: 15px;
    border-radius: 8px;
    word-break: break-all;
    font-family: 'Courier New', monospace;
    margin: 10px 0;
    border-left: 4px solid var(--primary);
    font-size: 0.9rem;
}

/* ==================== HISTORY STYLES ==================== */
.history-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}

.history-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.filter-group input,
.filter-group select {
    padding: 10px 12px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 0.9rem;
}

/* Transactions Table */
.transactions-table {
    overflow-x: auto;
}

.transactions-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.transactions-table th {
    background: var(--light);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 2px solid var(--border);
}

.transactions-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.transactions-table tr:hover {
    background: var(--light);
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-success {
    background: #d1fae5;
    color: var(--success);
}

.status-pending {
    background: #fef3c7;
    color: var(--warning);
}

.view-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.3s;
}

.view-btn:hover {
    background: var(--primary-dark);
}

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

/* ==================== COMING SOON SECTIONS ==================== */
.coming-soon-section {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}

.coming-soon-section i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.coming-soon-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.coming-soon-section p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

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

.progress-bar {
    background: var(--light);
    border-radius: 10px;
    height: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* ==================== TEAM SECTION ==================== */
.team-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.team-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Team Scroll Container */
.team-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.team-scroll-track {
    display: flex;
    gap: 30px;
    animation: scroll 40s linear infinite;
    width: max-content;
}

/* Pause animation on hover */
.team-scroll-container:hover .team-scroll-track {
    animation-play-state: paused;
}

/* Scroll Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 8 - 30px * 8)); /* 8 members width */
    }
}

/* Team Member Cards */
.team-member {
    flex: 0 0 250px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.team-member:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Member Photos */
.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    position: relative;
    background: rgba(255, 255, 255, 0.1);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.placeholder-photo {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.placeholder-photo i {
    font-size: 2.5rem;
    color: white;
}

/* Show placeholder if image fails to load */
.member-photo img[style*="display: none"] + .placeholder-photo {
    display: flex;
}

/* Member Info */
.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
}

.team-member p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* Gradient Overlay for Smooth Edges */
.team-scroll-container::before,
.team-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.team-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, #667eea, transparent);
}

.team-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, #764ba2, transparent);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--darker);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand i {
    color: var(--primary);
}

.footer-brand p {
    margin-left: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: normal;
}

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

.footer-links a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: var(--gray);
    font-size: 0.9rem;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-bottom {
        bottom: 20px;
        left: 20px;
