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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow: hidden;
    background: #000;
}


/* Hero Section */
#hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.content-visible {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    animation: fadeInUp 1s ease-out both;
}

#hero-section.hidden {
    display: none;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 2;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Sidebars */
.sidebar {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    z-index: 3;
    animation: fadeInSide 1s ease-out 1s both;
}

.left-sidebar {
    left: 40px;
}

.right-sidebar {
    right: 40px;
}

.sidebar-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #00d4ff, #ff00ff, transparent);
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

/* User Identity Preview */
.user-identity-preview {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

.mini-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(255, 0, 255, 0.08));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.mini-avatar {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 2px solid rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    object-fit: cover;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    flex-shrink: 0;
}

.mini-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.mini-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mini-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
}

.mini-value.mono {
    font-family: 'Courier New', monospace;
    font-size: 9px;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mini-value.land {
    color: #ffd700;
    font-size: 9px;
}

/* Chain Status */
.status-item {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(255, 0, 255, 0.08));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 8px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: block;
}

.status-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.status-item:hover::before {
    left: 100%;
}

.status-item:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 
        0 8px 32px rgba(0, 212, 255, 0.2),
        inset 0 0 20px rgba(0, 212, 255, 0.05);
    transform: translateX(-5px);
}

.status-item:last-child {
    margin-bottom: 0;
}

.status-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 4px;
}

.status-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.status-value.online {
    background: linear-gradient(135deg, #00ff88 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

/* Land Grid System */
.sector {
    margin-bottom: 20px;
}

.sector:last-of-type {
    margin-bottom: 16px;
}

.sector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 0 4px;
}

.sector-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sector-count {
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    font-weight: 600;
    background: linear-gradient(135deg, #ff00ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.land-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.08), rgba(0, 212, 255, 0.08));
    border: 1px solid rgba(255, 0, 255, 0.25);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.land-plot {
    aspect-ratio: 1;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.land-plot i {
    font-size: 18px;
    opacity: 1;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.plot-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    font-weight: 900;
    opacity: 0.95;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.land-plot::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.land-plot.available {
    background: linear-gradient(135deg, rgba(0, 255, 150, 0.35), rgba(0, 200, 255, 0.35));
    border-color: rgba(0, 255, 150, 0.7);
    box-shadow: 
        0 0 15px rgba(0, 255, 150, 0.3),
        inset 0 0 15px rgba(0, 255, 150, 0.15);
    color: #00ff88;
}

.land-plot.available:hover {
    background: linear-gradient(135deg, rgba(0, 255, 150, 0.3), rgba(0, 200, 255, 0.3));
    border-color: rgba(0, 255, 150, 0.7);
    box-shadow: 
        0 0 20px rgba(0, 255, 150, 0.4),
        inset 0 0 15px rgba(0, 255, 150, 0.2);
    transform: scale(1.1);
}

.land-plot.available:hover i,
.land-plot.available:hover .plot-number {
    opacity: 1;
}

.land-plot.sold {
    background: linear-gradient(135deg, rgba(255, 0, 100, 0.3), rgba(150, 0, 100, 0.3));
    border-color: rgba(255, 0, 100, 0.6);
    box-shadow: 
        0 0 15px rgba(255, 0, 100, 0.25),
        inset 0 0 15px rgba(255, 0, 100, 0.1);
    opacity: 0.8;
    color: #ff0066;
}

.land-plot.sold:hover {
    opacity: 0.8;
    box-shadow: 
        0 0 15px rgba(255, 0, 100, 0.3),
        inset 0 0 12px rgba(255, 0, 100, 0.1);
}

.land-plot.pending {
    background: linear-gradient(135deg, rgba(255, 150, 0, 0.35), rgba(255, 200, 0, 0.35));
    border-color: rgba(255, 150, 0, 0.7);
    box-shadow: 
        0 0 15px rgba(255, 150, 0, 0.3),
        inset 0 0 15px rgba(255, 150, 0, 0.15);
    animation: pendingPulse 2s ease-in-out infinite;
    color: #ffaa00;
}

.land-plot.pending:hover {
    background: linear-gradient(135deg, rgba(255, 150, 0, 0.3), rgba(255, 200, 0, 0.3));
    border-color: rgba(255, 150, 0, 0.7);
    box-shadow: 
        0 0 20px rgba(255, 150, 0, 0.4),
        inset 0 0 15px rgba(255, 150, 0, 0.2);
    transform: scale(1.1);
}

.land-plot.pending:hover i,
.land-plot.pending:hover .plot-number {
    opacity: 1;
}

/* Stats */
.land-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.stat-box {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.08), rgba(0, 212, 255, 0.08));
    border: 1px solid rgba(255, 0, 255, 0.25);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: rgba(255, 0, 255, 0.5);
    box-shadow: 0 4px 16px rgba(255, 0, 255, 0.2);
    transform: translateY(-2px);
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff00ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 8px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pendingPulse {
    0%, 100% {
        opacity: 0.85;
        box-shadow: 
            0 0 15px rgba(255, 150, 0, 0.3),
            inset 0 0 15px rgba(255, 150, 0, 0.15);
    }
    50% {
        opacity: 1;
        box-shadow: 
            0 0 25px rgba(255, 150, 0, 0.5),
            inset 0 0 20px rgba(255, 150, 0, 0.25);
    }
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.modal.show {
    opacity: 1;
    pointer-events: all;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.95), rgba(20, 0, 40, 0.95));
    border: none;
    border-radius: 24px;
    padding: 40px;
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(0, 212, 255, 0.3),
        0 0 120px rgba(255, 0, 255, 0.2),
        inset 0 0 60px rgba(0, 212, 255, 0.08);
    transform: scale(0.9) translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(30px);
}

.modal-content::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    border-radius: 24px;
    z-index: -1;
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.6;
}

.modal.show .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 0, 100, 0.2), rgba(150, 0, 100, 0.2));
    border: 1px solid rgba(255, 0, 100, 0.4);
    border-radius: 50%;
    color: #ff0066;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
}

.modal-close:hover {
    background: linear-gradient(135deg, rgba(255, 0, 100, 0.4), rgba(150, 0, 100, 0.4));
    border-color: rgba(255, 0, 100, 0.7);
    box-shadow: 0 0 30px rgba(255, 0, 100, 0.6);
    transform: rotate(90deg) scale(1.1);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.modal-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 15px currentColor);
}

.modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-row {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 0, 255, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.detail-row:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(255, 0, 255, 0.08));
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.15);
}

.detail-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.detail-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detail-value.price {
    background: linear-gradient(135deg, #ff00ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.3));
}

/* Identity Modal */
.large-modal {
    max-width: 520px;
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 28px;
}

.large-modal::-webkit-scrollbar {
    width: 8px;
}

.large-modal::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.large-modal::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    border-radius: 4px;
}

.large-modal::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00e5ff, #ff33ff);
}

.identity-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.identity-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 0, 255, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 12px;
    padding: 18px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-desc {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Address Generator */
.address-generator {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.generated-address {
    background: rgba(0, 0, 0, 0.6);
    border: 1.5px solid rgba(0, 212, 255, 0.4);
    border-radius: 10px;
    padding: 14px 18px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    box-shadow: 
        0 0 15px rgba(0, 212, 255, 0.15),
        inset 0 0 15px rgba(0, 212, 255, 0.05);
    word-break: break-all;
    overflow-wrap: break-word;
    width: 100%;
    box-sizing: border-box;
}

.address-prefix {
    color: rgba(255, 255, 255, 0.4);
}

.address-main {
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.action-btn {
    padding: 12px 24px;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.action-btn.primary {
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3);
}

.action-btn.primary:hover {
    box-shadow: 0 6px 24px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Credential Box */
.credential-box {
    margin-top: 16px;
    animation: fadeInUp 0.5s ease-out;
}

.credential-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    color: #00ff88;
    font-weight: 700;
}

.credential-json {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    padding: 12px;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: #00ff88;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
    max-height: 150px;
    overflow-y: auto;
    overflow-x: hidden;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.credential-note {
    display: flex;
    align-items: start;
    gap: 8px;
    padding: 10px;
    background: rgba(0, 212, 255, 0.08);
    border-left: 2px solid #00d4ff;
    border-radius: 6px;
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ID Card */
.id-card {
    aspect-ratio: 1.586;
    width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 212, 255, 0.2);
}

.id-card-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #0a1628 0%, #1a0a28 50%, #0a1628 100%);
    z-index: 1;
}

.id-card-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.id-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

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

.issuer-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.issuer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 212, 255, 0.4));
}

.issuer-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.issuer-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

.id-chip {
    width: 48px;
    height: 38px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 180, 0, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.6);
    border-radius: 8px;
    position: relative;
    box-shadow: 
        0 4px 12px rgba(255, 215, 0, 0.25),
        inset 0 0 12px rgba(255, 215, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.chip-grid {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3px;
    opacity: 0.6;
}

.chip-line {
    background: rgba(255, 215, 0, 0.4);
    border-radius: 2px;
}

.id-middle {
    display: flex;
    gap: 20px;
    align-items: center;
}

.id-photo {
    flex-shrink: 0;
}

.avatar {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00d4ff 0%, #0066ff 50%, #ff00ff 100%);
    object-fit: cover;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 2px solid rgba(0, 212, 255, 0.5);
}

.id-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.id-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.id-field label {
    font-family: 'Orbitron', sans-serif;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.id-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.id-value.mono {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-break: break-all;
    overflow-wrap: break-word;
}

.id-bottom {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 212, 255, 0.15);
}

.footer-line {
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-align: center;
}

.footer-serial {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    text-align: center;
}

/* Free Land Box */
.free-land-box {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.land-preview {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 100, 0, 0.08));
    border: 1.5px solid rgba(255, 215, 0, 0.35);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.land-preview i {
    font-size: 36px;
    color: #ffd700;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.land-preview-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 4px;
}

.land-preview-desc {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.land-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.benefit-item i {
    color: #00ff88;
    font-size: 14px;
}

.claim-success {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.12), rgba(0, 200, 255, 0.12));
    border: 1.5px solid rgba(0, 255, 136, 0.4);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    color: #00ff88;
    font-weight: 700;
    animation: successPulse 2s ease-in-out infinite;
}

.claim-success i {
    font-size: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

@keyframes cardShine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}


@keyframes patternFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes successPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
    }
}

.content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 140px;
    padding: 20px;
    margin-top: 10%;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    max-width: 280px;
    width: 80%;
    height: auto;
    animation: fadeInUp 1s ease-out 0.3s both, floatLogo 3s ease-in-out infinite;
    filter: 
        drop-shadow(0 10px 30px rgba(0,0,0,0.6))
        drop-shadow(0 20px 60px rgba(0,0,0,0.4))
        drop-shadow(0 0 20px rgba(255,255,255,0.1));
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(5deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.logo-container:hover .logo {
    transform: perspective(1000px) rotateX(0deg) translateY(-10px) scale(1.05);
    filter: 
        drop-shadow(0 15px 40px rgba(0,0,0,0.7))
        drop-shadow(0 25px 70px rgba(0,0,0,0.5))
        drop-shadow(0 0 30px rgba(255,255,255,0.2));
}

.orbit-icons {
    position: absolute;
    top: -29%;
    left: -24%;
    width: 404px;
    height: 380px;
    pointer-events: all;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.orbit-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.orbit-icon {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0.8;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(0, 212, 255, 0.4);
    transition: all 0.4s ease;
}

.orbit-item:hover .orbit-icon {
    filter: drop-shadow(0 12px 30px rgba(0, 212, 255, 0.6));
    transform: scale(1.15);
}

.orbit-item:hover .icon-label {
    opacity: 1;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 212, 255, 0.8),
        0 0 30px rgba(255, 0, 255, 0.5);
}

.icon-1 {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-2 {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
}

.icon-3 {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.icon-4 {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.enter-button {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 0, 255, 0.15));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 14px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out 0.6s both, buttonPulse 3s ease-in-out infinite;
    position: relative;
    overflow: visible;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 10px 40px rgba(0, 212, 255, 0.3),
        0 0 60px rgba(255, 0, 255, 0.2),
        inset 0 0 30px rgba(0, 212, 255, 0.1);
}

.enter-button::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    border-radius: 50px;
    z-index: -1;
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.button-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    border-radius: 50px;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.4s ease;
    z-index: -2;
}

.enter-icon {
    width: 50px;
    height: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    position: relative;
    z-index: 1;
}

.button-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
    text-shadow: 
        0 0 10px rgba(0, 212, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
}

.enter-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.enter-button:hover::before {
    width: 300px;
    height: 300px;
}

.enter-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 60px rgba(0, 212, 255, 0.5),
        0 0 80px rgba(255, 0, 255, 0.4),
        inset 0 0 40px rgba(0, 212, 255, 0.2);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(255, 0, 255, 0.25));
}

.enter-button:hover .button-glow {
    opacity: 0.6;
}

.enter-button:hover .enter-icon {
    transform: translateY(-6px) rotate(5deg) scale(1.15);
    filter: drop-shadow(0 8px 20px rgba(0, 212, 255, 0.6));
}

.enter-button:hover .button-text {
    text-shadow: 
        0 0 20px rgba(0, 212, 255, 1),
        0 0 40px rgba(255, 0, 255, 0.8);
}

.enter-button:active {
    transform: translateY(-3px) scale(1.02);
}

.enter-button:active .enter-icon {
    transform: translateY(-4px) rotate(5deg) scale(1.1);
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 
            0 10px 40px rgba(0, 212, 255, 0.3),
            0 0 60px rgba(255, 0, 255, 0.2),
            inset 0 0 30px rgba(0, 212, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 10px 40px rgba(0, 212, 255, 0.5),
            0 0 80px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(0, 212, 255, 0.15);
    }
}

/* Hero AI Partners Section */
.hero-ai-partners {
    margin-top: -118px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.partners-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    position: relative;
}

.partners-title::before,
.partners-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 25px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3));
}

.partners-title::before {
    right: calc(100% + 10px);
}

.partners-title::after {
    left: calc(100% + 10px);
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.3), transparent);
}

.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    max-width: 550px;
}

.partner-logo-item {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
    border-radius: 10px;
    padding: 8px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.partner-logo-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.partner-logo-item:hover {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.12));
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 
        0 8px 20px rgba(0, 212, 255, 0.3),
        0 0 30px rgba(255, 0, 255, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.4);
}

.partner-logo-item:hover::before {
    opacity: 1;
}

.partner-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.partner-logo-item:hover img {
    filter: brightness(1.2) contrast(1.2) drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 0, 255, 0.1));
    border-color: rgba(0, 212, 255, 0.4);
    color: #00d4ff;
    transform: translateY(-3px);
    box-shadow: 
        0 8px 20px rgba(0, 212, 255, 0.2),
        0 0 30px rgba(255, 0, 255, 0.1);
}

.social-link:hover i {
    transform: scale(1.2);
}

/* Whitepaper Link */
.whitepaper-link-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.whitepaper-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.whitepaper-link i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.whitepaper-link:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 0, 255, 0.1));
    border-color: rgba(0, 212, 255, 0.4);
    color: #00d4ff;
    transform: translateY(-3px);
    box-shadow: 
        0 8px 20px rgba(0, 212, 255, 0.2),
        0 0 30px rgba(255, 0, 255, 0.1);
}

.whitepaper-link:hover i {
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatLogo {
    0%, 100% {
        transform: perspective(1000px) rotateX(5deg) translateY(0px);
    }
    50% {
        transform: perspective(1000px) rotateX(5deg) translateY(-15px);
    }
}

@keyframes neonFlicker {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(0, 255, 255, 0.8),
            0 0 20px rgba(0, 255, 255, 0.6),
            0 0 30px rgba(0, 255, 255, 0.4),
            0 0 40px rgba(0, 153, 255, 0.3);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(0, 255, 255, 1),
            0 0 25px rgba(0, 255, 255, 0.8),
            0 0 35px rgba(0, 255, 255, 0.6),
            0 0 45px rgba(0, 153, 255, 0.5);
    }
}

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


/* Responsive Design */
@media (max-width: 1400px) {
    .sidebar {
        width: 280px;
    }
    
    .left-sidebar {
        left: 30px;
    }
    
    .right-sidebar {
        right: 30px;
    }
}

@media (max-width: 1200px) {
    .sidebar {
        width: 240px;
    }
    
    .left-sidebar {
        left: 20px;
    }
    
    .right-sidebar {
        right: 20px;
    }
    
    .status-item {
        padding: 14px 16px;
    }
    
    .land-grid {
        gap: 6px;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 220px;
    }
    
    .orbit-icons {
        width: 340px;
        height: 340px;
    }
    
    .orbit-icon {
        width: 60px;
        height: 60px;
    }
    
    .icon-label {
        font-size: 10px;
    }
    
    .enter-button {
        padding: 12px 35px;
        gap: 14px;
    }
    
    .enter-icon {
        width: 45px;
        height: 45px;
    }
    
    .button-text {
        font-size: 18px;
        letter-spacing: 2.5px;
    }
    
    .content {
        gap: 80px;
    }
    
    .sidebar {
        display: none;
    }
    
    .hero-ai-partners {
        margin-top: -60px;
        gap: 10px;
    }
    
    .partners-title {
        font-size: 8px;
        letter-spacing: 1px;
    }
    
    .partners-logos {
        gap: 15px;
        max-width: 500px;
    }
    
    .partner-logo-item {
        width: 40px;
        height: 40px;
        padding: 7px;
    }
    
    .social-links {
        gap: 15px;
        margin-top: 18px;
    }
    
    .social-link {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .social-link i {
        font-size: 16px;
    }
    
    .whitepaper-link-wrapper {
        margin-top: 15px;
    }
    
    .whitepaper-link {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .whitepaper-link i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 180px;
    }
    
    .orbit-icons {
        width: 280px;
        height: 280px;
    }
    
    .orbit-icon {
        width: 45px;
        height: 45px;
    }
    
    .icon-label {
        font-size: 9px;
        letter-spacing: 0.5px;
    }
    
    .enter-button {
        padding: 10px 28px;
        gap: 10px;
    }
    
    .enter-icon {
        width: 35px;
        height: 35px;
    }
    
    .button-text {
        font-size: 14px;
        letter-spacing: 1.5px;
    }
    
    .content {
        gap: 150px;
    }
    
    .hero-ai-partners {
        margin-top: -60px;
        gap: 8px;
    }
    
    .partners-title {
        font-size: 8px;
        letter-spacing: 0.8px;
    }
    
    .partners-title::before,
    .partners-title::after {
        width: 15px;
    }
    
    .partners-logos {
        gap: 12px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .partner-logo-item {
        width: 35px;
        height: 35px;
        padding: 6px;
        border-radius: 8px;
    }
    
    .social-links {
        gap: 12px;
        margin-top: 15px;
    }
    
    .social-link {
        padding: 7px 14px;
        font-size: 12px;
    }
    
    .social-link i {
        font-size: 15px;
    }
    
    .whitepaper-link-wrapper {
        margin-top: 12px;
    }
    
    .whitepaper-link {
        padding: 7px 14px;
        font-size: 12px;
    }
    
    .whitepaper-link i {
        font-size: 15px;
    }
}

/* MetaCore Scenes Modal */
.metacore-modal-content {
    max-width: 1200px;
    width: 95%;
    max-height: 85vh;
    padding: 35px 40px;
    overflow-y: auto;
    overflow-x: hidden;
}

.metacore-modal-content::-webkit-scrollbar {
    width: 8px;
}

.metacore-modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.metacore-modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    border-radius: 4px;
}

.metacore-modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00e5ff, #ff33ff);
}

.metacore-intro {
    text-align: center;
    margin-bottom: 40px;
}

.metacore-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.metacore-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 900px;
    margin: 0 auto;
}

.scenes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.scene-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.scene-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 
        0 15px 40px rgba(0, 212, 255, 0.15),
        0 0 60px rgba(255, 0, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.scene-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #000;
}

.scene-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.scene-img-default {
    opacity: 1;
}

.scene-img-active {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.scene-card:hover .scene-img-default {
    opacity: 0;
}

.scene-card:hover .scene-img-active {
    opacity: 1;
}

.scene-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
    pointer-events: none;
}

.scene-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.scene-content {
    padding: 25px;
}

.scene-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.scene-title i {
    color: #00d4ff;
    font-size: 22px;
}

.scene-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
}

.scene-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

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

.scene-feature-item i {
    color: #00ff88;
    font-size: 14px;
    flex-shrink: 0;
}

.scene-advantage {
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.05));
    border-left: 3px solid #00d4ff;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.scene-advantage strong {
    color: #00d4ff;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .metacore-modal-content {
        max-height: 80vh;
        padding: 30px 25px;
    }
    
    .scenes-grid {
        gap: 25px;
    }
    
    .scene-image-wrapper {
        height: 240px;
    }
    
    .scene-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .metacore-modal-content {
        max-height: 75vh;
        padding: 25px 20px;
    }
    
    .scenes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .scene-image-wrapper {
        height: 220px;
    }
    
    .metacore-subtitle {
        font-size: 16px;
    }
    
    .metacore-description {
        font-size: 14px;
    }
    
    .scene-title {
        font-size: 17px;
    }
    
    .scene-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .metacore-modal-content {
        padding: 20px 15px;
    }
    
    .scene-image-wrapper {
        height: 180px;
    }
    
    .scene-label {
        font-size: 36px;
    }
    
    .scene-title {
        font-size: 16px;
    }
    
    .scene-desc {
        font-size: 13px;
    }
    
    .scene-feature-item {
        font-size: 12px;
    }
    
    .scene-advantage {
        font-size: 12px;
        padding: 12px;
    }
}

/* About Modal Styles */
.about-modal-content {
    max-width: 1100px;
    width: 92%;
    max-height: 55vh;
    padding: 35px 40px;
    overflow-y: auto;
    overflow-x: hidden;
}

.about-modal-content::-webkit-scrollbar {
    width: 8px;
}

.about-modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.about-modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    border-radius: 4px;
}

.about-modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00e5ff, #ff33ff);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

.about-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 0, 255, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.08), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Mission Section */
.mission-section {
    text-align: center;
    position: relative;
}

.section-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 255, 0.2));
    border: 2px solid rgba(0, 212, 255, 0.6);
    border-radius: 50%;
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 0.4),
        inset 0 0 30px rgba(0, 212, 255, 0.1);
    animation: iconFloat 3s ease-in-out infinite;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.section-icon i {
    font-size: 36px;
    background: linear-gradient(135deg, #00d4ff, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8));
    animation: iconRotate 20s linear infinite;
}

@keyframes iconRotate {
    0% {
        filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8)) hue-rotate(0deg);
    }
    100% {
        filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8)) hue-rotate(360deg);
    }
}

.mission-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.mission-text .highlight {
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03), rgba(255, 0, 255, 0.03)) !important;
    border-color: rgba(0, 212, 255, 0.3) !important;
}

.features-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
}

.features-title i {
    font-size: 22px;
    color: #ffd700;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.7));
    animation: boltFlash 2s ease-in-out infinite;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.feature-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 0, 255, 0.05));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    min-width: 0;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00d4ff, #00ffff, #ff00ff, transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
    border-radius: 50%;
    pointer-events: none;
}

.feature-card:hover {
    border-color: rgba(0, 212, 255, 0.7);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.1));
    box-shadow: 
        0 12px 48px rgba(0, 212, 255, 0.3),
        0 0 80px rgba(0, 212, 255, 0.15),
        inset 0 0 40px rgba(0, 212, 255, 0.08);
    transform: translateY(-8px);
}

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

.feature-card:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.feature-icon-wrapper {
    position: relative;
    align-self: center;
    margin-bottom: 10px;
}

.feature-icon {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 0, 255, 0.15));
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 212, 255, 0.2),
        inset 0 0 20px rgba(0, 212, 255, 0.05);
    z-index: 2;
}

.feature-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: translateY(-8px) rotate(-5deg) scale(1.1);
    border-color: rgba(0, 212, 255, 0.8);
    box-shadow: 
        0 8px 40px rgba(0, 212, 255, 0.5),
        inset 0 0 30px rgba(0, 212, 255, 0.15);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(255, 0, 255, 0.25));
}

.feature-card:hover .feature-icon-bg {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3) rotate(90deg);
}

.feature-icon i {
    font-size: 38px;
    background: linear-gradient(135deg, #00d4ff, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.6));
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon i {
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 1));
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    min-width: 0;
    overflow: hidden;
}

.feature-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: 1px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-desc {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    letter-spacing: 0.3px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.12), rgba(0, 200, 255, 0.12));
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    width: fit-content;
    align-self: center;
}

.feature-badge i {
    font-size: 12px;
    color: #00ff88;
}

.feature-badge span {
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.08), rgba(0, 212, 255, 0.08));
    border-color: rgba(255, 0, 255, 0.25);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.about-stat {
    text-align: center;
    padding: 16px 12px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(255, 0, 255, 0.08));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-stat:hover {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
    transform: translateY(-3px);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.stat-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* AI Modal Styles */
.ai-modal-content {
    max-width: 1100px;
    width: 92%;
    max-height: 60vh;
    padding: 35px 40px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

/* AI Modal Custom Scrollbar */
.ai-modal-content::-webkit-scrollbar {
    width: 8px;
}

.ai-modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.ai-modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    border-radius: 4px;
}

.ai-modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00e5ff, #ff33ff);
}

.ai-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    width: 100%;
}

/* Left Column: AI Capabilities */
.ai-left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ai-intro-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(255, 0, 255, 0.08));
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.ai-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #00ffff, #ff00ff);
}

.ai-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.ai-intro-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3px;
}

.ai-highlight {
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.ai-capabilities {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 0, 255, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.capability-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #00d4ff, #ff00ff);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.capability-item:hover {
    border-color: rgba(0, 212, 255, 0.6);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

.capability-item:hover::before {
    transform: scaleY(1);
}

.capability-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}

.capability-content {
    flex: 1;
}

.capability-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.capability-desc {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
}

.ai-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.ai-stat-item {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.08), rgba(0, 212, 255, 0.08));
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.ai-stat-item:hover {
    border-color: rgba(255, 0, 255, 0.6);
    box-shadow: 0 4px 16px rgba(255, 0, 255, 0.2);
    transform: translateY(-3px);
}

.ai-stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff00ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.ai-stat-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right Column: AI Partners List */
.ai-right-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-partners-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.ai-partners-title i {
    font-size: 18px;
    color: #ffd700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.ai-partners-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ai-partner-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 0, 255, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 12px;
    padding: 14px 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.ai-partner-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.15), transparent);
    transition: width 0.3s ease;
}

.ai-partner-item:hover {
    border-color: rgba(0, 212, 255, 0.6);
    transform: translateX(6px);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

.ai-partner-item:hover::before {
    width: 100%;
}

.ai-partner-logo-wrapper {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ai-partner-item:hover .ai-partner-logo-wrapper {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.ai-partner-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

.ai-partner-info {
    flex: 1;
    min-width: 0;
}

.ai-partner-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.ai-partner-desc {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.3px;
}

.ai-partner-badge {
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 6px;
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Responsive for About Modal */
@media (max-width: 1200px) {
    .about-modal-content {
        max-width: 950px;
        max-height: 60vh;
        padding: 30px 35px;
    }
}

@media (max-width: 1024px) {
    .about-modal-content {
        max-width: 850px;
        max-height: 65vh;
        padding: 28px 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-card {
        flex-direction: row;
        text-align: left;
        padding: 24px 20px;
    }
    
    .feature-icon-wrapper {
        margin-bottom: 0;
        margin-right: 16px;
    }
    
    .feature-content {
        text-align: left;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 32px;
    }
    
    .feature-badge {
        align-self: flex-start;
    }
    
    /* AI Modal Responsive */
    .ai-modal-content {
        max-height: 65vh;
        padding: 28px 30px;
    }
    
    .ai-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .ai-left-column {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .about-modal-content {
        max-width: 95%;
        max-height: 70vh;
        padding: 24px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
    }
    
    .feature-icon-wrapper {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .feature-content {
        text-align: center;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 32px;
    }
    
    .feature-badge {
        align-self: center;
    }
    
    .section-icon {
        width: 70px;
        height: 70px;
    }
    
    .section-icon i {
        font-size: 32px;
    }
    
    /* AI Modal Responsive */
    .ai-modal-content {
        max-height: 70vh;
        padding: 24px;
    }
    
    .ai-stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .ai-partner-logo-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .ai-partner-name {
        font-size: 12px;
    }
    
    .ai-partner-desc {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .about-modal-content {
        max-height: 75vh;
        padding: 20px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .feature-title {
        font-size: 14px;
    }
    
    .feature-desc {
        font-size: 10px;
    }
    
    .mission-text {
        font-size: 12px;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
    }
    
    .feature-icon i {
        font-size: 28px;
    }
    
    .section-icon {
        width: 65px;
        height: 65px;
    }
    
    .section-icon i {
        font-size: 28px;
    }
    
    /* AI Modal Responsive */
    .ai-modal-content {
        max-height: 75vh;
        padding: 20px;
    }
    
    .ai-intro-card {
        padding: 18px;
    }
    
    .ai-card-title {
        font-size: 16px;
    }
    
    .ai-intro-text {
        font-size: 11px;
    }
    
    .capability-number {
        font-size: 24px;
    }
    
    .capability-title {
        font-size: 12px;
    }
    
    .capability-desc {
        font-size: 9px;
    }
    
    .ai-stats-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .ai-stat-value {
        font-size: 18px;
    }
    
    .ai-partner-item {
        padding: 12px 14px;
    }
    
    .ai-partner-logo-wrapper {
        width: 35px;
        height: 35px;
    }
    
    .ai-partner-name {
        font-size: 11px;
    }
    
    .ai-partner-desc {
        font-size: 8px;
    }
    
    .ai-partner-badge {
        font-size: 8px;
        padding: 3px 8px;
    }
}

