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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0c0c1e 0%, #1a1a3e 50%, #0c0c1e 100%);
    color: #e0e0e0;
    min-height: 100vh;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(12, 12, 30, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(100, 100, 255, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 28px;
    animation: pulse 2s infinite;
}

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

.logo-text {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(90deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #e0e0e0;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s;
}

.nav-menu a:hover {
    background: rgba(100, 100, 255, 0.2);
    color: #a0a0ff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    border-radius: 2px;
}

section {
    padding: 100px 20px 50px;
    min-height: 100vh;
    display: none;
}

section.active {
    display: block;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 20px;
}

.title-gradient {
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 24px;
    color: #a0a0a0;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #888;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    padding: 15px 30px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    padding: 15px 30px;
    background: transparent;
    border: 2px solid rgba(102, 126, 234, 0.5);
    border-radius: 30px;
    color: #667eea;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(102, 126, 234, 0.2);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.network-graph {
    position: relative;
    width: 400px;
    height: 400px;
}

.node {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.central-node {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    width: 100px;
    height: 100px;
    font-size: 20px;
    animation: float 3s ease-in-out infinite;
}

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

.node-1 { top: 20px; left: 20px; background: linear-gradient(135deg, #f093fb, #f5576c); }
.node-2 { top: 20px; right: 20px; background: linear-gradient(135deg, #4facfe, #00f2fe); }
.node-3 { bottom: 80px; left: 20px; background: linear-gradient(135deg, #43e97b, #38f9d7); }
.node-4 { bottom: 80px; right: 20px; background: linear-gradient(135deg, #fa709a, #fee140); }
.node-5 { bottom: 20px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #a8edea, #fed6e3); color: #333; }

.node:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-line {
    stroke: rgba(102, 126, 234, 0.4);
    stroke-width: 2px;
    animation: pulse-line 2s infinite;
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.feature-card {
    background: rgba(30, 30, 60, 0.5);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(100, 100, 255, 0.2);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}

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

.layer {
    margin-bottom: 30px;
}

.layer-title {
    font-size: 18px;
    color: #667eea;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
}

.layer-content {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.component {
    background: rgba(30, 30, 60, 0.5);
    border-radius: 15px;
    padding: 20px;
    min-width: 150px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(100, 100, 255, 0.1);
}

.component:hover {
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-5px);
}

.component-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.component-name {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

.component-desc {
    color: #888;
    font-size: 12px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.module-card {
    background: rgba(30, 30, 60, 0.5);
    border-radius: 20px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(100, 100, 255, 0.2);
}

.module-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.5);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.module-icon {
    font-size: 32px;
}

.module-name {
    font-size: 20px;
    font-weight: bold;
}

.module-desc {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.module-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.module-features span {
    background: rgba(102, 126, 234, 0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    color: #a0a0ff;
}

.module-detail {
    margin-top: 40px;
    background: rgba(30, 30, 60, 0.7);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(100, 100, 255, 0.3);
    display: none;
}

.module-detail-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.module-detail-content p {
    color: #888;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.module-principle, .module-demo {
    margin-top: 30px;
}

.module-principle strong, .module-demo strong {
    color: #667eea;
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
}

.module-principle p, .module-demo p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.module-principle ul, .module-demo ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.module-principle li, .module-demo li {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 5px;
}

.module-principle pre, .module-demo pre {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    overflow-x: auto;
    margin: 15px 0;
    border: 1px solid rgba(100, 100, 255, 0.2);
}

.module-principle code, .module-demo code {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
    color: #43e97b;
}

.module-principle h4, .module-demo h4 {
    color: #a0a0ff;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.api-container {
    max-width: 900px;
    margin: 0 auto;
}

.api-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.api-tab {
    padding: 12px 25px;
    background: rgba(30, 30, 60, 0.5);
    border: 1px solid rgba(100, 100, 255, 0.2);
    border-radius: 20px;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s;
}

.api-tab.active,
.api-tab:hover {
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-color: transparent;
}

.api-panel {
    display: none;
}

.api-panel.active {
    display: block;
}

.api-item {
    background: rgba(30, 30, 60, 0.5);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 3px solid #667eea;
}

.api-command {
    font-family: 'Consolas', monospace;
    font-size: 14px;
    color: #43e97b;
    display: block;
    margin-bottom: 8px;
}

.api-desc {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.download-section {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.download-section h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #667eea;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 35px;
    background: rgba(30, 30, 60, 0.8);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.download-btn:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.6);
    transform: translateY(-5px);
}

.download-icon {
    font-size: 32px;
}

.download-info {
    display: flex;
    flex-direction: column;
}

.download-name {
    font-weight: bold;
    font-size: 16px;
}

.download-version {
    color: #888;
    font-size: 13px;
}

.system-requirements {
    max-width: 800px;
    margin: 50px auto 0;
    background: rgba(30, 30, 60, 0.5);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(100, 100, 255, 0.2);
}

.system-requirements h3 {
    font-size: 20px;
    margin-bottom: 25px;
    text-align: center;
    color: #667eea;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.requirement-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.req-icon {
    font-size: 32px;
}

.req-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.req-name {
    font-size: 14px;
    color: #888;
}

.req-value {
    font-size: 13px;
    color: #667eea;
    font-weight: bold;
}

.install-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.install-card {
    background: rgba(30, 30, 60, 0.5);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(100, 100, 255, 0.2);
}

.install-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #667eea;
}

.install-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-num {
    background: linear-gradient(90deg, #667eea, #764ba2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.step code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Consolas', monospace;
    font-size: 12px;
    color: #43e97b;
}

.quick-start {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(30, 30, 60, 0.5);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(100, 100, 255, 0.2);
}

.quick-start h3 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    color: #667eea;
}

.quick-start pre {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    overflow-x: auto;
}

.quick-start code {
    font-family: 'Consolas', monospace;
    font-size: 14px;
    color: #43e97b;
}

.demo-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.demo-terminal {
    flex: 2;
    background: #0d0d0d;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(100, 100, 255, 0.2);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #1a1a1a;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27ca40; }

.terminal-title {
    color: #888;
    font-size: 13px;
    margin-left: 15px;
}

.terminal-body {
    padding: 20px;
    min-height: 300px;
    font-family: 'Consolas', monospace;
    font-size: 14px;
}

.terminal-line {
    margin-bottom: 10px;
}

.prompt {
    color: #43e97b;
    margin-right: 10px;
}

.command {
    color: #667eea;
}

.terminal-input {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid rgba(100, 100, 255, 0.2);
    font-family: 'Consolas', monospace;
}

.terminal-input input {
    flex: 1;
    background: transparent;
    border: none;
    color: #e0e0e0;
    font-family: 'Consolas', monospace;
    font-size: 14px;
    outline: none;
    margin-left: 10px;
}

.demo-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(30, 30, 60, 0.5);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(100, 100, 255, 0.2);
}

.stat-value {
    font-size: 36px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-label {
    color: #888;
    font-size: 14px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: rgba(30, 30, 60, 0.95);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(102, 126, 234, 0.5);
}

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

.modal-header h3 {
    font-size: 24px;
    color: #667eea;
}

.modal-close {
    background: none;
    border: none;
    color: #888;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #e0e0e0;
}

.modal-body {
    padding: 30px;
}

.modal-body h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #667eea;
}

.modal-body p {
    color: #888;
    line-height: 1.8;
    margin-bottom: 20px;
}

.modal-body ul {
    color: #888;
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 10px;
}

.discussion-modal {
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
}

.discussion-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 600px;
}

.discussion-header {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(100, 100, 255, 0.2);
    background: rgba(102, 126, 234, 0.1);
}

.discussion-task-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.discussion-task-id {
    background: rgba(102, 126, 234, 0.2);
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 12px;
    color: #a0a0ff;
    font-family: 'Consolas', monospace;
}

.discussion-task-name {
    font-size: 18px;
    font-weight: bold;
    color: #e0e0e0;
}

.comments-section {
    flex: 1;
    overflow-y: auto;
    padding: 20px 30px;
}

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

.comments-header h4 {
    font-size: 16px;
    color: #667eea;
}

.comments-count {
    font-size: 14px;
    color: #888;
}

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

.comment-item {
    background: rgba(30, 30, 60, 0.5);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(100, 100, 255, 0.1);
}

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

.comment-author {
    font-weight: bold;
    color: #667eea;
    font-size: 15px;
}

.comment-time {
    font-size: 12px;
    color: #666;
}

.comment-content {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
}

.no-comments {
    text-align: center;
    color: #666;
    padding: 40px;
    font-size: 14px;
}

.comment-input-section {
    padding: 20px 30px;
    border-top: 1px solid rgba(100, 100, 255, 0.2);
    background: rgba(20, 20, 40, 0.8);
}

.comment-input-section .comment-author input {
    width: 100%;
    padding: 12px;
    background: rgba(100, 100, 100, 0.1);
    border: 1px solid rgba(100, 100, 255, 0.2);
    border-radius: 10px;
    color: #e0e0e0;
    font-size: 14px;
    margin-bottom: 10px;
}

.comment-input-section textarea {
    width: 100%;
    padding: 12px;
    background: rgba(100, 100, 100, 0.1);
    border: 1px solid rgba(100, 100, 255, 0.2);
    border-radius: 10px;
    color: #e0e0e0;
    font-size: 14px;
    resize: vertical;
    margin-bottom: 15px;
}

.comment-input-section button {
    width: 100%;
}

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

.pricing-intro {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-intro h3 {
    font-size: 28px;
    color: #667eea;
    margin-bottom: 15px;
}

.pricing-intro p {
    color: #888;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: rgba(30, 30, 60, 0.6);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(100, 100, 255, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.pricing-card.featured {
    border: 2px solid #667eea;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
}

.pricing-card-header {
    padding: 30px;
    text-align: center;
    position: relative;
}

.pricing-card-header.free {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.pricing-card-header.pro {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.pricing-card-header.enterprise {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.pricing-card-header h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 15px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-value {
    color: white;
    font-size: 48px;
    font-weight: bold;
}

.price-duration {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.pricing-card-body {
    padding: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-features li {
    padding: 10px 0;
    color: #e0e0e0;
    font-size: 14px;
    border-bottom: 1px solid rgba(100, 100, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-limitations {
    background: rgba(255, 100, 100, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.pricing-limitations p {
    color: #ff6b6b;
    font-size: 13px;
    margin: 0;
}

.pricing-card-body .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

.pricing-disclaimer {
    background: rgba(255, 200, 100, 0.1);
    border: 1px solid rgba(255, 200, 100, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.pricing-disclaimer h4 {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 15px;
}

.pricing-disclaimer p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.pricing-disclaimer p:last-child {
    margin-bottom: 0;
}

.pricing-terms {
    background: rgba(100, 100, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.pricing-terms h4 {
    color: #667eea;
    font-size: 18px;
    margin-bottom: 20px;
}

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

.term-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.term-label {
    color: #888;
    font-size: 13px;
}

.term-value {
    color: #e0e0e0;
    font-size: 14px;
}

.pricing-contact {
    text-align: center;
    padding: 30px;
    background: rgba(30, 30, 60, 0.6);
    border-radius: 15px;
}

.pricing-contact h4 {
    color: #667eea;
    font-size: 18px;
    margin-bottom: 15px;
}

.pricing-contact p {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info span {
    color: #e0e0e0;
    font-size: 15px;
}

.footer {
    background: rgba(12, 12, 30, 0.95);
    padding: 50px 20px 20px;
    border-top: 1px solid rgba(100, 100, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #667eea;
}

.footer-section p {
    color: #888;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(100, 100, 255, 0.1);
    color: #666;
    font-size: 14px;
}

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

.market-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.market-stat {
    background: rgba(30, 30, 60, 0.5);
    border: 1px solid rgba(100, 100, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.market-stat:hover {
    border-color: rgba(100, 100, 255, 0.5);
    transform: translateY(-5px);
}

.market-stat .stat-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.market-stat .stat-num {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(90deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.market-stat .stat-label {
    font-size: 14px;
    color: #888;
}

.market-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.market-tab {
    padding: 12px 25px;
    background: rgba(30, 30, 60, 0.5);
    border: 1px solid rgba(100, 100, 255, 0.2);
    border-radius: 20px;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s;
}

.market-tab.active,
.market-tab:hover {
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-color: transparent;
}

.market-panel {
    display: none;
}

.market-panel.active {
    display: block;
}

.resources-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.resources-header h3 {
    font-size: 24px;
    color: #e0e0e0;
}

.resources-filter {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.resources-filter select,
.resources-filter input[type="range"] {
    padding: 8px 15px;
    background: rgba(30, 30, 60, 0.5);
    border: 1px solid rgba(100, 100, 255, 0.2);
    border-radius: 10px;
    color: #e0e0e0;
}

.resources-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.resource-card {
    background: rgba(30, 30, 60, 0.5);
    border: 1px solid rgba(100, 100, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s;
}

.resource-card:hover {
    border-color: rgba(100, 100, 255, 0.5);
    transform: translateY(-5px);
}

.resource-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.resource-type {
    padding: 5px 15px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.resource-price {
    font-size: 20px;
    font-weight: bold;
    color: #43e97b;
}

.resource-price span {
    font-size: 12px;
    color: #888;
}

.resource-spec {
    margin-bottom: 15px;
}

.resource-spec-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(100, 100, 255, 0.1);
}

.resource-spec-item span:first-child {
    color: #888;
}

.resource-desc {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

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

.resource-region {
    font-size: 12px;
    color: #888;
}

.resource-rent-btn {
    padding: 10px 25px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border: none;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.resource-rent-btn:hover {
    transform: scale(1.05);
}

.no-resources {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    background: rgba(30, 30, 60, 0.3);
    border-radius: 15px;
    border: 1px dashed rgba(100, 100, 255, 0.3);
}

.loading {
    text-align: center;
    padding: 40px 20px;
    color: #667eea;
    font-size: 16px;
}

.resource-rent-btn.disabled {
    background: #444;
    cursor: not-allowed;
}

.rent-form,
.share-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(30, 30, 60, 0.5);
    border: 1px solid rgba(100, 100, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.rent-form h3,
.share-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.quantity-input,
.price-range-input,
.price-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-input input,
.price-range-input input,
.price-input input {
    flex: 1;
}

.rent-estimate {
    background: rgba(100, 100, 255, 0.1);
    border: 1px solid rgba(100, 100, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
}

.rent-estimate span {
    color: #43e97b;
    font-weight: bold;
}

.transactions-container {
    background: rgba(30, 30, 60, 0.5);
    border: 1px solid rgba(100, 100, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.transactions-container h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.transactions-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.transaction-tab {
    padding: 10px 25px;
    background: rgba(30, 30, 60, 0.5);
    border: 1px solid rgba(100, 100, 255, 0.2);
    border-radius: 15px;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s;
}

.transaction-tab.active,
.transaction-tab:hover {
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-color: transparent;
}

.transactions-list {
    display: grid;
    gap: 15px;
}

.transaction-item {
    background: rgba(30, 30, 60, 0.5);
    border: 1px solid rgba(100, 100, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.transaction-type {
    font-weight: bold;
    color: #667eea;
}

.transaction-detail {
    font-size: 14px;
    color: #888;
}

.transaction-amount {
    font-size: 18px;
    font-weight: bold;
    color: #43e97b;
}

.no-transactions {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

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

.community-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.community-stat {
    background: rgba(30, 30, 60, 0.5);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(100, 100, 255, 0.2);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.stat-num {
    font-size: 28px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-label {
    color: #888;
    font-size: 14px;
}

.community-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.community-tab {
    padding: 12px 25px;
    background: rgba(30, 30, 60, 0.5);
    border: 1px solid rgba(100, 100, 255, 0.2);
    border-radius: 20px;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s;
}

.community-tab.active,
.community-tab:hover {
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-color: transparent;
}

.community-panel {
    display: none;
}

.community-panel.active {
    display: block;
}

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

.tasks-filter {
    display: flex;
    gap: 15px;
}

.tasks-filter select {
    padding: 10px 20px;
    background: rgba(30, 30, 60, 0.5);
    border: 1px solid rgba(100, 100, 255, 0.2);
    border-radius: 10px;
    color: #e0e0e0;
    font-size: 14px;
}

.tasks-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.task-card {
    background: rgba(30, 30, 60, 0.5);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(100, 100, 255, 0.2);
    transition: all 0.3s;
}

.task-card:hover {
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-5px);
}

.task-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.task-icon {
    font-size: 40px;
}

.task-info {
    flex: 1;
}

.task-title {
    font-size: 18px;
    margin-bottom: 5px;
}

.task-meta {
    display: flex;
    gap: 10px;
}

.task-type {
    background: rgba(102, 126, 234, 0.2);
    padding: 3px 12px;
    border-radius: 10px;
    font-size: 12px;
    color: #a0a0ff;
}

.task-status {
    padding: 3px 12px;
    border-radius: 10px;
    font-size: 12px;
}

.task-status.active {
    background: rgba(67, 233, 123, 0.2);
    color: #43e97b;
}

.task-status.pending {
    background: rgba(255, 189, 46, 0.2);
    color: #ffbd2e;
}

.task-status.completed {
    background: rgba(79, 172, 254, 0.2);
    color: #4facfe;
}

.task-reward {
    text-align: right;
}

.reward-value {
    font-size: 20px;
    font-weight: bold;
    color: #f093fb;
}

.reward-label {
    font-size: 12px;
    color: #888;
}

.task-desc {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.task-progress {
    margin-bottom: 20px;
}

.progress-bar {
    height: 8px;
    background: rgba(100, 100, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
    transition: width 0.5s;
}

.progress-fill.completed {
    background: linear-gradient(90deg, #43e97b, #38f9d7);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
}

.join-btn {
    width: 100%;
}

.publish-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(30, 30, 60, 0.5);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(100, 100, 255, 0.2);
}

.publish-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    color: #667eea;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #888;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    background: rgba(100, 100, 100, 0.1);
    border: 1px solid rgba(100, 100, 255, 0.2);
    border-radius: 10px;
    color: #e0e0e0;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.publish-form button {
    width: 100%;
    margin-top: 20px;
}

.leaderboard {
    background: rgba(30, 30, 60, 0.5);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(100, 100, 255, 0.2);
}

.leaderboard h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #667eea;
}

.leaderboard-header {
    display: grid;
    grid-template-columns: 60px 1fr 150px 130px 100px 120px;
    padding: 15px;
    background: rgba(100, 100, 255, 0.1);
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #888;
    margin-bottom: 10px;
}

.leaderboard-row {
    display: grid;
    grid-template-columns: 60px 1fr 150px 130px 100px 120px;
    padding: 15px;
    border-bottom: 1px solid rgba(100, 100, 255, 0.1);
    align-items: center;
    transition: background 0.3s;
}

.leaderboard-row:hover {
    background: rgba(100, 100, 255, 0.05);
}

.leaderboard-row.top {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    margin-bottom: 10px;
}

.lb-rank {
    font-size: 20px;
}

.lb-name {
    font-weight: bold;
}

.lb-power {
    color: #43e97b;
}

.lb-rewards {
    color: #f093fb;
    font-weight: bold;
}

.lb-tasks {
    color: #4facfe;
}

.rewards-container {
    max-width: 800px;
    margin: 0 auto;
}

.rewards-container h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    color: #667eea;
}

.rewards-explanation {
    background: rgba(30, 30, 60, 0.5);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(100, 100, 255, 0.2);
    margin-bottom: 30px;
}

.rewards-explanation p {
    color: #888;
    line-height: 1.8;
    margin-bottom: 15px;
}

.formula-box {
    background: rgba(102, 126, 234, 0.2);
    padding: 20px;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Consolas', monospace;
    color: #a0a0ff;
    text-align: center;
    margin-bottom: 15px;
}

.rewards-structure {
    background: rgba(30, 30, 60, 0.5);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(100, 100, 255, 0.2);
    margin-bottom: 30px;
}

.rewards-structure h4 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    color: #667eea;
}

.rewards-pie {
    display: flex;
    justify-content: center;
}

.rewards-pie-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.pie-chart {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: conic-gradient(
        #667eea 0% 70%,
        #f093fb 70% 90%,
        #4facfe 90% 95%,
        #43e97b 95% 100%
    );
    position: relative;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
}

.pie-chart::after {
    content: '';
    width: 140px;
    height: 140px;
    background: #1a1a3e;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(100, 100, 255, 0.1);
}

.pie-chart::before {
    content: '100%';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
    color: #e0e0e0;
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
    z-index: 1;
}

.pie-legend {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legend-color {
    width: 30px;
    height: 15px;
    border-radius: 4px;
    flex-shrink: 0;
}

.legend-text {
    font-size: 14px;
    color: #e0e0e0;
}

.rewards-notes {
    margin-top: 30px;
    padding: 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.rewards-notes p {
    color: #888;
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 14px;
}

.rewards-notes p:last-child {
    margin-bottom: 0;
}

.my-rewards {
    background: rgba(30, 30, 60, 0.5);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(100, 100, 255, 0.2);
}

.my-rewards h4 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    color: #667eea;
}

.rewards-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.rewards-item {
    background: rgba(100, 100, 100, 0.1);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rewards-label {
    color: #888;
    font-size: 14px;
}

.rewards-value {
    font-size: 18px;
    font-weight: bold;
    color: #667eea;
}

.my-rewards button {
    width: 100%;
}

.no-tasks, .no-contributors {
    text-align: center;
    color: #888;
    padding: 40px;
    font-size: 16px;
}

.ranking-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid rgba(100, 100, 100, 0.1);
    transition: background 0.3s;
}

.ranking-item:hover {
    background: rgba(102, 126, 234, 0.1);
}

.ranking-rank {
    width: 40px;
    font-size: 20px;
    font-weight: bold;
}

.ranking-rank.rank-1 {
    color: #ffd700;
}

.ranking-rank.rank-2 {
    color: #c0c0c0;
}

.ranking-rank.rank-3 {
    color: #cd7f32;
}

.ranking-info {
    flex: 1;
    margin-left: 15px;
}

.ranking-name {
    font-weight: bold;
    color: #e0e0e0;
}

.ranking-stats {
    font-size: 12px;
    color: #888;
}

.ranking-stats span {
    margin-right: 15px;
}

.ranking-rewards {
    font-weight: bold;
    color: #43e97b;
    font-size: 16px;
}

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

.apikey-overview {
    background: rgba(30, 30, 60, 0.5);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(100, 100, 255, 0.2);
    margin-bottom: 30px;
}

.apikey-overview h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #667eea;
}

.apikey-overview p {
    color: #888;
    line-height: 1.8;
    margin-bottom: 20px;
}

.apikey-overview ul {
    list-style: none;
    padding: 0;
}

.apikey-overview li {
    padding: 10px 0;
    color: #e0e0e0;
}

.apikey-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.apikey-tab {
    padding: 12px 25px;
    background: rgba(30, 30, 60, 0.5);
    border: 1px solid rgba(100, 100, 255, 0.2);
    border-radius: 20px;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s;
}

.apikey-tab.active,
.apikey-tab:hover {
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-color: transparent;
}

.apikey-panel {
    display: none;
}

.apikey-panel.active {
    display: block;
}

.apikey-list {
    background: rgba(30, 30, 60, 0.5);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(100, 100, 255, 0.2);
}

.apikey-list h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #667eea;
}

.apikey-card {
    background: rgba(100, 100, 100, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(100, 100, 255, 0.1);
}

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

.apikey-name {
    font-size: 18px;
    font-weight: bold;
    color: #e0e0e0;
}

.apikey-status {
    padding: 3px 15px;
    border-radius: 10px;
    font-size: 12px;
}

.apikey-status.active {
    background: rgba(67, 233, 123, 0.2);
    color: #43e97b;
}

.apikey-status.inactive {
    background: rgba(255, 189, 46, 0.2);
    color: #ffbd2e;
}

.apikey-value {
    font-family: 'Consolas', monospace;
    font-size: 16px;
    color: #a0a0ff;
    margin-bottom: 10px;
    word-break: break-all;
}

.apikey-info {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
}

.apikey-actions {
    display: flex;
    gap: 10px;
}

.btn-danger {
    background: rgba(255, 69, 58, 0.2);
    border: 1px solid rgba(255, 69, 58, 0.5);
    color: #ff453a;
}

.btn-danger:hover {
    background: rgba(255, 69, 58, 0.4);
}

.generate-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(30, 30, 60, 0.5);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(100, 100, 255, 0.2);
}

.generate-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    color: #667eea;
}

.permission-checkboxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.permission-checkboxes label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #e0e0e0;
}

.permissions-container {
    max-width: 800px;
    margin: 0 auto;
}

.permissions-container h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    color: #667eea;
}

.permission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.permission-item {
    background: rgba(30, 30, 60, 0.5);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(100, 100, 255, 0.2);
}

.permission-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.permission-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.permission-desc {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
}

.ai-deploy-container {
    max-width: 800px;
    margin: 0 auto;
}

.ai-deploy-container h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #667eea;
}

.ai-deploy-container p {
    color: #888;
    text-align: center;
    margin-bottom: 30px;
}

.deploy-steps {
    margin-bottom: 30px;
}

.deploy-step {
    display: flex;
    gap: 20px;
    background: rgba(30, 30, 60, 0.5);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(100, 100, 255, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.step-content p {
    text-align: left;
    margin: 0;
}

.code-block {
    background: rgba(100, 100, 100, 0.2);
    padding: 15px;
    border-radius: 10px;
    font-family: 'Consolas', monospace;
    font-size: 14px;
    color: #a0a0ff;
    overflow-x: auto;
    white-space: pre-wrap;
}

.model-list {
    background: rgba(30, 30, 60, 0.5);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(100, 100, 255, 0.2);
}

.model-list h4 {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
}

.model-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.model-tag {
    background: rgba(102, 126, 234, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: #a0a0ff;
}

.usage-container {
    max-width: 800px;
    margin: 0 auto;
}

.usage-container h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    color: #667eea;
}

.usage-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.usage-stat {
    background: rgba(30, 30, 60, 0.5);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(100, 100, 255, 0.2);
}

.usage-num {
    font-size: 28px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
}

.usage-label {
    font-size: 12px;
    color: #888;
}

.usage-chart {
    background: rgba(30, 30, 60, 0.5);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(100, 100, 255, 0.2);
}

.usage-chart h4 {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.chart-bars {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 200px;
    gap: 10px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #667eea, #764ba2);
    border-radius: 5px 5px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 10px;
    min-height: 20px;
    transition: height 0.5s;
}

.bar-label {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.bar-value {
    font-size: 14px;
    font-weight: bold;
    color: #e0e0e0;
}

.install-welcome {
    text-align: center;
    margin-bottom: 30px;
}

.install-welcome h3 {
    font-size: 28px;
    color: #667eea;
    margin-bottom: 10px;
}

.install-welcome p {
    color: #888;
    font-size: 16px;
}

.auto-detect {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.detect-status {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(102, 126, 234, 0.1);
    padding: 15px 30px;
    border-radius: 30px;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.detect-icon {
    font-size: 24px;
}

.detect-text {
    font-size: 16px;
    color: #e0e0e0;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    background: rgba(30, 30, 60, 0.7);
    border: 2px solid rgba(100, 100, 255, 0.3);
    border-radius: 15px;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    width: 100%;
    max-width: 400px;
}

.download-btn:hover {
    border-color: rgba(102, 126, 234, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.download-btn.recommended {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.2);
}

.download-icon {
    font-size: 40px;
}

.download-info {
    flex: 1;
    text-align: left;
}

.download-name {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.download-version {
    display: block;
    font-size: 14px;
    color: #888;
}

.recommended-badge {
    background: linear-gradient(90deg, #667eea, #764ba2);
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.install-progress {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(30, 30, 60, 0.7);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(100, 100, 255, 0.3);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 18px;
}

.progress-title {
    color: #e0e0e0;
}

.progress-percent {
    color: #667eea;
    font-weight: bold;
}

.progress-bar-container {
    height: 15px;
    background: rgba(100, 100, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 10px;
    transition: width 0.3s;
}

.progress-info {
    text-align: center;
    color: #888;
    font-size: 14px;
}

.install-success {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: rgba(30, 30, 60, 0.7);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(67, 233, 123, 0.3);
}

.success-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.install-success h3 {
    font-size: 28px;
    color: #43e97b;
    margin-bottom: 15px;
}

.install-success p {
    color: #888;
    font-size: 16px;
    margin-bottom: 30px;
}

.docs-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.docs-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.docs-section {
    margin-bottom: 20px;
}

.docs-section h4 {
    font-size: 14px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 10px;
    padding-left: 10px;
    border-left: 3px solid #667eea;
}

.docs-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.docs-section li {
    margin-bottom: 8px;
}

.docs-section a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 10px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s;
}

.docs-section a:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #e0e0e0;
}

.docs-content {
    flex: 1;
    background: rgba(30, 30, 60, 0.5);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(100, 100, 255, 0.2);
    min-height: 500px;
}

.docs-panel {
    display: none;
}

.docs-panel.active {
    display: block;
}

.docs-content h3 {
    font-size: 24px;
    color: #667eea;
    margin-bottom: 20px;
}

.docs-intro {
    background: rgba(102, 126, 234, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.docs-intro p {
    color: #888;
    line-height: 1.8;
    margin: 0;
}

.docs-step {
    margin-bottom: 25px;
}

.docs-step h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.docs-step p {
    color: #888;
    line-height: 1.8;
    margin-bottom: 10px;
}

.docs-box {
    background: rgba(100, 100, 100, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.docs-box h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.docs-tip {
    background: rgba(255, 189, 46, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid #ffbd2e;
    color: #ffbd2e;
    font-size: 14px;
}

.docs-table {
    overflow-x: auto;
}

.docs-table table {
    width: 100%;
    border-collapse: collapse;
}

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

.docs-table th {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    font-weight: bold;
    font-size: 14px;
}

.docs-table td {
    color: #e0e0e0;
    font-size: 14px;
}

.docs-table td code {
    background: rgba(100, 100, 100, 0.2);
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 13px;
}

.docs-api {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.api-endpoint {
    background: rgba(100, 100, 100, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.api-endpoint h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #43e97b;
}

.api-endpoint p {
    color: #888;
    margin-bottom: 10px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(12, 12, 30, 0.98);
        padding: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .hero-title {
        font-size: 36px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .modules-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .install-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .demo-container {
        flex-direction: column;
    }

    .demo-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
    }

    .layer-content {
        justify-content: center;
    }
}