/* ==========================================
   LEGALIZER FORUM STYLES
   Modern Tech Design
   ========================================== */

/* CSS Variables */
:root {
    /* Colors */
    --dark-blue: #0a1128;
    --deep-blue: #1a1f3a;
    --medium-blue: #2a2f4a;
    --light-blue: #3a3f5a;
    
    /* Accent Colors */
    --cyan: #00d4ff;
    --cyan-dark: #00a8cc;
    --cyan-light: #40e0ff;
    --purple: #8a2be2;
    --pink: #ff00aa;
    
    /* Text */
    --text-white: #ffffff;
    --text-light: #b0b8d0;
    --text-muted: #7080a0;
    --text-dark: #506080;
    
    /* Effects */
    --glow-cyan: 0 0 15px rgba(0, 212, 255, 0.5);
    --glow-purple: 0 0 15px rgba(138, 43, 226, 0.5);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--dark-blue);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.circuit-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, var(--dark-blue) 0%, var(--deep-blue) 100%);
    z-index: -2;
    animation: bgShift 20s ease-in-out infinite alternate;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    opacity: 0.3;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
    line-height: 1.2;
}

/* Header */
.forum-header {
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
}

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

/* Logo */
.forum-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: var(--transition-medium);
}

.forum-logo:hover {
    filter: drop-shadow(var(--glow-cyan));
}

.logo-symbol {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoFloat 4s ease-in-out infinite;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-primary {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 1px;
}

.logo-secondary {
    font-size: 11px;
    color: var(--cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
.forum-nav .nav-container {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    padding: 10px 15px;
    border-radius: 6px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.nav-icon {
    color: var(--cyan);
    font-size: 11px;
    font-weight: 600;
}

.nav-item:hover {
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.1);
}

.nav-item.highlighted {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(138, 43, 226, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--cyan);
}

.nav-item.highlighted:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(138, 43, 226, 0.3));
    box-shadow: var(--glow-cyan);
}

.nav-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-medium);
}

.nav-item.highlighted:hover .nav-glow {
    opacity: 1;
}

/* Mobile Menu Toggle */
.forum-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 4px;
    padding: 12px;
    cursor: pointer;
}

.menu-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cyan);
    transition: var(--transition-fast);
}

/* Main Content */
.forum-main {
    margin-top: 100px;
}

/* Hero Section */
.forum-hero {
    padding: 100px 0 80px;
    position: relative;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.tag-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--cyan);
    letter-spacing: 1px;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.title-accent {
    color: var(--cyan);
    display: block;
    position: relative;
    margin: 10px 0;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--cyan);
    box-shadow: var(--glow-cyan);
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 60px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 40px;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.forum-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 16px 32px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
    overflow: hidden;
    border-radius: 6px;
}

.forum-btn.primary {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(138, 43, 226, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--cyan);
}

.forum-btn.primary:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(138, 43, 226, 0.3));
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.forum-btn.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.forum-btn.secondary:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: var(--glow-cyan);
}

.btn-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-medium);
}

.forum-btn.primary:hover .btn-effect {
    opacity: 1;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* Hero Visual */
.hero-visual {
    margin-top: 60px;
}

.forum-preview {
    background: rgba(26, 31, 58, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-heavy);
}

.preview-header {
    background: rgba(42, 47, 74, 0.9);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.preview-tabs {
    display: flex;
    gap: 15px;
}

.tab {
    padding: 8px 16px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--text-muted);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab.active {
    background: rgba(0, 212, 255, 0.1);
    color: var(--cyan);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.preview-indicators {
    display: flex;
    gap: 6px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.3);
}

.indicator:nth-child(1) { background: #ff5f57; }
.indicator:nth-child(2) { background: #ffbd2e; }
.indicator:nth-child(3) { background: #28ca42; }

.preview-content {
    padding: 30px;
}

.thread-preview {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.thread-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.thread-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.05);
}

.thread-item.featured {
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(0, 212, 255, 0.1);
}

.thread-badge {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.2);
    padding: 4px 8px;
    border-radius: 3px;
    letter-spacing: 1px;
}

.thread-title {
    flex: 1;
    margin: 0 20px;
    font-size: 14px;
    color: var(--text-white);
}

.thread-stats {
    font-size: 12px;
    color: var(--text-muted);
}

/* Forum Screenshot */
.forum-screenshot {
    margin-top: 25px;
    position: relative;
}

.screenshot-frame {
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(26, 31, 58, 0.8);
    box-shadow: var(--shadow-heavy);
}

.frame-header {
    background: rgba(42, 47, 74, 0.9);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.frame-dots {
    display: flex;
    gap: 8px;
}

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

.frame-dot.red { background: #ff5f57; }
.frame-dot.yellow { background: #ffbd2e; }
.frame-dot.green { background: #28ca42; }

.frame-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--cyan);
    letter-spacing: 1px;
}

.screenshot-image {
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(1.1) brightness(0.95);
    transition: var(--transition-medium);
}

.screenshot-frame:hover .screenshot-image {
    filter: contrast(1.2) brightness(1.05);
    transform: scale(1.01);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 17, 40, 0.9), transparent);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.overlay-badge {
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--cyan);
    padding: 6px 12px;
    border-radius: 4px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 1px;
}

.overlay-stats {
    font-size: 12px;
    color: var(--text-light);
}

/* Sections */
.forum-section {
    padding: 100px 0;
}

.forum-section.dark {
    background: rgba(26, 31, 58, 0.5);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-marker {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.marker-number {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    color: var(--cyan);
    font-weight: 600;
}

.marker-line {
    width: 50px;
    height: 2px;
    background: var(--cyan);
    box-shadow: var(--glow-cyan);
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-part {
    color: var(--text-white);
}

.title-highlight {
    color: var(--cyan);
    display: block;
    margin-top: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(42, 47, 74, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    padding: 40px 30px;
    transition: var(--transition-medium);
    text-align: center;
}

.feature-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.feature-icon {
    margin-bottom: 25px;
}

.feature-title {
    font-size: 20px;
    color: var(--cyan);
    margin-bottom: 15px;
}

.feature-text {
    color: var(--text-light);
    line-height: 1.8;
}

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

.feature-detail {
    background: rgba(42, 47, 74, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition-medium);
}

.feature-detail:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--shadow-heavy);
}

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

.detail-number {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 24px;
    color: var(--cyan);
    font-weight: 700;
    opacity: 0.5;
}

.detail-title {
    font-size: 20px;
    color: var(--text-white);
}

.detail-text {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-list li {
    color: var(--text-light);
    padding-left: 20px;
    position: relative;
}

.detail-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--cyan);
}

/* Reputation Levels */
.reputation-levels {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.level {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 6px;
}

.level-icon {
    color: var(--cyan);
    font-size: 16px;
    display: block;
}

.level-name {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 5px;
}

/* Search Preview */
.search-preview {
    margin-top: 20px;
}

.search-bar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 6px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.search-icon {
    color: var(--cyan);
}

.search-text {
    color: var(--text-light);
    font-size: 14px;
}

.search-results {
    padding-left: 20px;
}

.result-item {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 8px;
    position: relative;
}

.result-item::before {
    content: '•';
    position: absolute;
    left: -15px;
    color: var(--cyan);
}

/* Marketplace Content */
.marketplace-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.buying-guide, .sellers-benefits {
    background: rgba(42, 47, 74, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
}

.guide-title, .benefits-title {
    font-size: 24px;
    color: var(--cyan);
    margin-bottom: 20px;
}

.guide-text {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.step-marker {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--cyan);
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 5px;
}

.step-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.benefit-icon {
    color: var(--cyan);
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.benefit-content h4 {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 5px;
}

.benefit-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Security Features */
.security-features {
    max-width: 800px;
    margin: 0 auto;
}

.security-layer {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
    padding: 30px;
    background: rgba(42, 47, 74, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition-medium);
}

.security-layer:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(10px);
}

.layer-visual {
    flex-shrink: 0;
}

.layer-circle {
    width: 80px;
    height: 80px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateSlow 20s linear infinite;
}

.circle-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--cyan);
    text-align: center;
}

.layer-content {
    flex: 1;
}

.layer-title {
    font-size: 20px;
    color: var(--cyan);
    margin-bottom: 10px;
}

.layer-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* Security Visual Section */
.security-visual-section {
    margin: 50px 0;
    padding: 40px;
    background: rgba(42, 47, 74, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.security-image-container {
    position: relative;
}

.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 30px;
    z-index: 1;
    opacity: 0.3;
}

.grid-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 6px;
    padding: 15px;
}

.security-scheme {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    position: relative;
    z-index: 2;
    filter: sepia(0.3) hue-rotate(180deg) contrast(1.1);
    transition: var(--transition-medium);
}

.security-image-container:hover .security-scheme {
    filter: sepia(0) hue-rotate(180deg) contrast(1.2);
    transform: scale(1.02);
}

.security-labels {
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.label {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 17, 40, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 10px 15px;
    border-radius: 6px;
    backdrop-filter: blur(5px);
}

.label-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.label-text {
    font-size: 14px;
    color: var(--text-white);
    font-family: 'IBM Plex Mono', monospace;
}

.security-visual-info {
    padding: 20px;
}

.visual-title {
    font-size: 24px;
    color: var(--cyan);
    margin-bottom: 15px;
}

.visual-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* Advantages Comparison */
.advantages-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-item {
    background: rgba(42, 47, 74, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition-medium);
}

.advantage-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

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

.advantage-number {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    color: var(--cyan);
    font-weight: 600;
}

.advantage-title {
    font-size: 18px;
    color: var(--text-white);
}

.advantage-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* Advantage Visual */
.advantage-visual {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: rgba(42, 47, 74, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 40px;
    margin: 20px 0;
}

.community-preview {
    position: relative;
}

.preview-container {
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(26, 31, 58, 0.8);
    position: relative;
}

.community-image {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9) contrast(1.1);
    transition: var(--transition-medium);
}

.preview-container:hover .community-image {
    filter: brightness(1) contrast(1.2);
    transform: scale(1.03);
}

.community-stats {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
}

.chat-bubble {
    background: rgba(10, 17, 40, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    backdrop-filter: blur(5px);
    margin-bottom: 15px;
}

.bubble-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.bubble-content {
    flex: 1;
}

.bubble-name {
    font-size: 12px;
    color: var(--cyan);
    margin-bottom: 4px;
}

.bubble-text {
    font-size: 11px;
    color: var(--text-light);
}

.stat-overlay {
    display: flex;
    gap: 15px;
}

.stat-item {
    flex: 1;
    background: rgba(10, 17, 40, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.stat-value {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--cyan);
}

.stat-label {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Access Steps */
.access-steps {
    max-width: 900px;
    margin: 0 auto 60px;
}

.access-step {
    margin-bottom: 30px;
}

.step-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: rgba(42, 47, 74, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition-medium);
}

.step-container:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--shadow-heavy);
}

.step-number {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 32px;
    font-weight: 800;
    color: var(--cyan);
    opacity: 0.3;
    min-width: 60px;
}

.step-title {
    font-size: 20px;
    color: var(--cyan);
    margin-bottom: 10px;
}

.step-text {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.step-tip, .step-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 6px;
    border-left: 3px solid var(--cyan);
}

.step-warning {
    background: rgba(255, 0, 170, 0.1);
    border-left-color: var(--pink);
}

.tip-icon, .warning-icon {
    font-weight: bold;
    font-size: 18px;
}

.tip-icon { color: var(--cyan); }
.warning-icon { color: var(--pink); }

.tip-text, .warning-text {
    font-size: 14px;
    color: var(--text-light);
}

/* Access Visual Guide */
.access-visual-guide {
    margin: 60px 0;
    padding: 40px;
    background: rgba(42, 47, 74, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
}

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

.guide-title {
    text-align: center;
    font-size: 24px;
    color: var(--cyan);
    margin-bottom: 40px;
}

.visual-steps {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.visual-step {
    position: relative;
}

.step-icon {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--cyan);
    z-index: 2;
}

.step-visual {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    border: 2px solid rgba(0, 212, 255, 0.3);
    filter: sepia(0.2) hue-rotate(200deg) contrast(1.1);
    transition: var(--transition-medium);
}

.visual-step:hover .step-visual {
    filter: sepia(0) hue-rotate(200deg) contrast(1.2);
    transform: scale(1.02);
}

.step-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 17, 40, 0.9), transparent);
    padding: 20px;
}

.caption-title {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 16px;
    color: var(--cyan);
    margin-bottom: 5px;
}

.caption-text {
    display: block;
    font-size: 12px;
    color: var(--text-light);
}

.step-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 6px;
    transition: var(--transition-fast);
}

.info-item:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(5px);
}

.info-icon {
    color: var(--cyan);
    font-size: 18px;
    font-weight: bold;
}

.info-text {
    color: var(--text-white);
    font-size: 14px;
}

/* Security Reminder */
.security-reminder {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.reminder-icon {
    flex-shrink: 0;
}

.reminder-content {
    flex: 1;
}

.reminder-title {
    font-size: 18px;
    color: var(--cyan);
    margin-bottom: 10px;
}

.reminder-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer */
.forum-footer {
    background: rgba(10, 17, 40, 0.95);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 60px 0 30px;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo svg {
    width: 40px;
    height: 40px;
}

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

.logo-name {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
}

.logo-desc {
    font-size: 12px;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    color: var(--text-light);
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group {
    display: flex;
    flex-direction: column;
}

.link-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    color: var(--cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
}

.copyright {
    color: var(--text-muted);
    font-size: 14px;
}

/* Lazy loading animations */
img[loading="lazy"] {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
    transform: scale(1);
}

/* Animations */
@keyframes bgShift {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

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

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

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

/* Responsive */
@media (max-width: 992px) {
    .forum-nav .nav-container {
        display: none;
    }
    
    .forum-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .marketplace-content {
        grid-template-columns: 1fr;
    }
    
    .security-visual-section,
    .advantage-visual {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advantage-visual {
        grid-column: span 1;
    }
    
    .security-labels {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
        flex-wrap: wrap;
    }
    
    .visual-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-info {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .forum-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .screenshot-overlay {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .community-stats {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin-top: 15px;
    }
    
    .chat-bubble {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-overlay {
        flex-direction: column;
    }
    
    .label {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .about-features,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .security-layer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .step-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-number {
        align-self: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .forum-section {
        padding: 60px 0;
    }
    
    .buying-guide,
    .sellers-benefits {
        padding: 25px;
    }
    
    .security-visual-section,
    .access-visual-guide {
        padding: 20px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 15px;
    }
    
    .info-item {
        padding: 12px;
    }
}