@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;

}

:root {
    --primary: #e63946;
    --primary-hover: #d62839;
    --secondary: #ffffff;
    --bg: #0d1117;
    --bg-elevated: #161b22;
    --bg-hover: #1c2128;
    --border: #30363d;
    --text-primary: #f0f6fc;
    --text-secondary: #8b949e;
    --text-muted: #6e7681;
    --accent: #238636;
    --online-color: #2ea043;
    --offline-color: #ff4757;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-lg: rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 48px;
}

.logo-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}
.logo-image {
    height: 50px;
    margin-right: 12px;
    vertical-align: middle;
}
.pulse {
    color: var(--primary);
}

.glow {
    color: var(--text-primary);
}

.tagline {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
}

.nav-btn:hover {
    color: var(--text-primary);
    background: var(--bg-elevated);
}

.nav-btn.active {
    color: var(--primary);
    background: var(--bg-elevated);
}

/* Donate Button */
.donate-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    border: 1px solid var(--primary);
    color: white;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
}

.donate-btn:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.4);
}

.donate-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
}

/* Donate Modal */
.donate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.donate-modal.active {
    opacity: 1;
    visibility: visible;
}

.donate-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.donate-modal-content {
    position: relative;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .donate-modal-content {
        width: 95%;
        max-width: 400px;
    }
    
    .donate-content-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .donate-qr-section {
        order: -1;
    }
    
    .donate-qr-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }
}

.donate-modal.active .donate-modal-content {
    transform: scale(1);
}

.donate-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border);
}

.donate-modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.donate-modal-close {
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 32px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
}

.donate-modal-close:hover {
    background: rgba(230, 57, 70, 0.1);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.6), 0 0 40px rgba(230, 57, 70, 0.4);
}

.donate-modal-body {
    padding: 24px;
}

.donate-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.donate-info-section {
    min-width: 0;
}

.donate-qr-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.donate-info {
    margin-bottom: 24px;
}

.donate-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.donate-info-item:last-child {
    border-bottom: none;
}

.donate-info-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: left;
}

.donate-info-value {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    text-align: right;
}

.donate-qr-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1;
}

.donate-qr-code {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donate-qr-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.donate-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.donate-amount-input {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: flex-end;
}

.donate-amount-field {
    flex: 0.1;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px 12px;
    color: var(--primary);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
    min-width: 80px;
    max-width: 100px;
    -moz-appearance: textfield;
    appearance: none;
    text-align: right;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(230, 57, 70, 0.5);
}

.donate-amount-field::-webkit-inner-spin-button,
.donate-amount-field::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.donate-amount-field:focus {
    border-color: var(--primary);
    background: var(--bg-hover);
    box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.1);
    color: var(--primary);
    text-shadow: 0 0 12px rgba(230, 57, 70, 0.8);
}

.donate-currency {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.donate-update-btn {
    flex: 1;
    padding: 10px 16px;
    background: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 6px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.donate-update-btn:hover {
    background: #2ea043;
    border-color: #2ea043;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(35, 134, 54, 0.4);
}

.donate-copy-btn {
    flex: 1;
    padding: 12px 24px;
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 6px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.donate-copy-btn:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.4);
}

/* Notification Bell */
.notification-bell-wrapper {
    position: relative;
    margin-left: 8px;
}

.notification-bell {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.notification-bell:hover {
    color: var(--text-primary);
    border-color: var(--primary);
    background: var(--bg-hover);
}

.notification-bell svg {
    width: 18px;
    height: 18px;
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    padding: 0 5px;
}

.notification-badge.hidden {
    display: none;
}

/* Notification Dropdown */
.notification-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 380px;
    max-height: 500px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 8px 24px var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 999;
    overflow: hidden;
}

.notification-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notification-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--border);
}

.notification-dropdown-header h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.close-notifications {
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 24px;
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
}

.close-notifications:hover {
    color: var(--primary);
    background: rgba(230, 57, 70, 0.1);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.6), 0 0 40px rgba(230, 57, 70, 0.4);
}

.notification-dropdown-content {
    max-height: 400px;
    overflow-y: auto;
    padding: 8px;
}

.notification-dropdown-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.notification-dropdown-item:hover {
    border-color: var(--primary);
    background: var(--bg-hover);
}

.notification-dropdown-item-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.notification-dropdown-item-message {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 4px;
}

.notification-dropdown-item-date {
    font-size: 11px;
    color: var(--text-muted);
}

.notification-dropdown-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 14px;
}

.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    backdrop-filter: blur(2px);
}

.notification-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 300px);
    padding-bottom: 80px;
}

.content-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
    letter-spacing: -0.8px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 64px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 64px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0.3;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.hero-tag:hover {
    border-color: var(--primary);
    background: var(--bg-hover);
    color: var(--primary);
    transform: translateY(-2px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.stat-card {
    background: var(--bg-elevated);
    border: none;
    border-radius: 12px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    background: var(--bg-hover);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.3), 0 0 40px rgba(230, 57, 70, 0.15);
}

.stat-icon {
    font-size: 32px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: 10px;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1;
}

.stat-number.status-online {
    color: var(--online-color);
    text-shadow: 0 0 10px rgba(46, 160, 67, 0.9), 0 0 20px rgba(46, 160, 67, 0.7), 0 0 30px rgba(46, 160, 67, 0.5);
    animation: glow-online 2s ease-in-out infinite alternate;
}

.stat-number.status-offline {
    color: var(--offline-color);
    text-shadow: 0 0 10px rgba(255, 71, 87, 0.9), 0 0 20px rgba(255, 71, 87, 0.7), 0 0 30px rgba(255, 71, 87, 0.5);
    animation: glow-offline 2s ease-in-out infinite alternate;
}

@keyframes glow-online {
    from {
        text-shadow: 0 0 10px rgba(46, 160, 67, 0.9), 0 0 20px rgba(46, 160, 67, 0.7), 0 0 30px rgba(46, 160, 67, 0.5);
    }
    to {
        text-shadow: 0 0 15px rgba(46, 160, 67, 1), 0 0 30px rgba(46, 160, 67, 0.9), 0 0 45px rgba(46, 160, 67, 0.7);
    }
}

@keyframes glow-offline {
    from {
        text-shadow: 0 0 10px rgba(255, 71, 87, 0.9), 0 0 20px rgba(255, 71, 87, 0.7), 0 0 30px rgba(255, 71, 87, 0.5);
    }
    to {
        text-shadow: 0 0 15px rgba(255, 71, 87, 1), 0 0 30px rgba(255, 71, 87, 0.9), 0 0 45px rgba(255, 71, 87, 0.7);
    }
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Status Dot */
.status-dot {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--online-color);
    box-shadow: 0 0 8px rgba(46, 160, 67, 0.8), 0 0 16px rgba(46, 160, 67, 0.6);
    animation: pulse-dot 2s ease-in-out infinite;
}

.status-dot.status-online {
    background: var(--online-color);
    box-shadow: 0 0 8px rgba(46, 160, 67, 0.8), 0 0 16px rgba(46, 160, 67, 0.6);
}

.status-dot.status-offline {
    background: var(--offline-color);
    box-shadow: 0 0 8px rgba(255, 71, 87, 0.8), 0 0 16px rgba(255, 71, 87, 0.6);
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Home Sections */
.home-section {
    margin-top: 80px;
}

.home-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.home-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary);
    background: var(--bg-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Process List */
.process-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-item {
    display: flex;
    gap: 24px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.process-item:hover {
    border-color: var(--primary);
    background: var(--bg-hover);
}

.process-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    min-width: 60px;
    flex-shrink: 0;
}

.process-content {
    flex: 1;
}

.process-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.process-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Tech Stack */
.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.tech-category {
    background: var(--bg-elevated);
    border: none;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-category:hover {
    background: var(--bg-hover);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.3), 0 0 40px rgba(230, 57, 70, 0.15);
}

.tech-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.tech-category-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    flex-shrink: 0;
}

.tech-category:hover .tech-category-icon {
    border-color: var(--primary);
    background: rgba(230, 57, 70, 0.1);
}

.tech-category-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--bg), var(--bg-elevated));
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.1), transparent);
    transition: left 0.5s ease;
}

.tech-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(230, 57, 70, 0.05));
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.4), 0 0 30px rgba(230, 57, 70, 0.2);
}

.tech-tag:hover::before {
    left: 100%;
}

/* Tech tag specific colors */
.tech-tag[data-tech="lua"]:hover {
    border-color: #000080;
    color: #000080;
    box-shadow: 0 0 15px rgba(0, 0, 128, 0.5), 0 0 30px rgba(0, 0, 128, 0.3);
}

.tech-tag[data-tech="javascript"]:hover {
    border-color: #F7DF1E;
    color: #F7DF1E;
    box-shadow: 0 0 15px rgba(247, 223, 30, 0.5), 0 0 30px rgba(247, 223, 30, 0.3);
}

.tech-tag[data-tech="typescript"]:hover {
    border-color: #3178C6;
    color: #3178C6;
    box-shadow: 0 0 15px rgba(49, 120, 198, 0.5), 0 0 30px rgba(49, 120, 198, 0.3);
}

.tech-tag[data-tech="nodejs"]:hover {
    border-color: #339933;
    color: #339933;
    box-shadow: 0 0 15px rgba(51, 153, 51, 0.5), 0 0 30px rgba(51, 153, 51, 0.3);
}

.tech-tag[data-tech="mysql"]:hover {
    border-color: #4479A1;
    color: #4479A1;
    box-shadow: 0 0 15px rgba(68, 121, 161, 0.5), 0 0 30px rgba(68, 121, 161, 0.3);
}

.tech-tag[data-tech="mongodb"]:hover {
    border-color: #47A248;
    color: #47A248;
    box-shadow: 0 0 15px rgba(71, 162, 72, 0.5), 0 0 30px rgba(71, 162, 72, 0.3);
}

.tech-tag[data-tech="react"]:hover {
    border-color: #61DAFB;
    color: #61DAFB;
    box-shadow: 0 0 15px rgba(97, 218, 251, 0.5), 0 0 30px rgba(97, 218, 251, 0.3);
}

.tech-tag[data-tech="git"]:hover {
    border-color: #F05032;
    color: #F05032;
    box-shadow: 0 0 15px rgba(240, 80, 50, 0.5), 0 0 30px rgba(240, 80, 50, 0.3);
}

.tech-tag[data-tech="docker"]:hover {
    border-color: #2496ED;
    color: #2496ED;
    box-shadow: 0 0 15px rgba(36, 150, 237, 0.5), 0 0 30px rgba(36, 150, 237, 0.3);
}

.tech-tag[data-tech="vscode"]:hover {
    border-color: #007ACC;
    color: #007ACC;
    box-shadow: 0 0 15px rgba(0, 122, 204, 0.5), 0 0 30px rgba(0, 122, 204, 0.3);
}

.tech-tag[data-tech="html"]:hover {
    border-color: #E34F26;
    color: #E34F26;
    box-shadow: 0 0 15px rgba(227, 79, 38, 0.5), 0 0 30px rgba(227, 79, 38, 0.3);
}

.tech-tag[data-tech="css"]:hover {
    border-color: #007ACC;
    color: #007ACC;
    box-shadow: 0 0 15px rgba(0, 122, 204, 0.5), 0 0 30px rgba(0, 122, 204, 0.3);
}

.tech-tag[data-tech="nui"]:hover {
    border-color: #6B46C1;
    color: #6B46C1;
    box-shadow: 0 0 15px rgba(107, 70, 193, 0.5), 0 0 30px rgba(107, 70, 193, 0.3);
}

.tech-tag[data-tech="sqlite"]:hover {
    border-color: #003B57;
    color: #003B57;
    box-shadow: 0 0 15px rgba(0, 59, 87, 0.5), 0 0 30px rgba(0, 59, 87, 0.3);
}

/* Additional tech tag colors */
.tech-tag[data-tech="python"]:hover {
    border-color: #3776AB;
    color: #3776AB;
    box-shadow: 0 0 15px rgba(55, 118, 171, 0.5), 0 0 30px rgba(55, 118, 171, 0.3);
}

.tech-tag[data-tech="java"]:hover {
    border-color: #ED8B00;
    color: #ED8B00;
    box-shadow: 0 0 15px rgba(237, 139, 0, 0.5), 0 0 30px rgba(237, 139, 0, 0.3);
}

.tech-tag[data-tech="php"]:hover {
    border-color: #777BB4;
    color: #777BB4;
    box-shadow: 0 0 15px rgba(119, 123, 180, 0.5), 0 0 30px rgba(119, 123, 180, 0.3);
}

.tech-tag[data-tech="csharp"]:hover {
    border-color: #239120;
    color: #239120;
    box-shadow: 0 0 15px rgba(35, 145, 32, 0.5), 0 0 30px rgba(35, 145, 32, 0.3);
}

.tech-tag[data-tech="go"]:hover {
    border-color: #00ADD8;
    color: #00ADD8;
    box-shadow: 0 0 15px rgba(0, 173, 216, 0.5), 0 0 30px rgba(0, 173, 216, 0.3);
}

.tech-tag[data-tech="rust"]:hover {
    border-color: #000000;
    color: #000000;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 0, 0, 0.3);
}

.tech-tag[data-tech="vue"]:hover {
    border-color: #4FC08D;
    color: #4FC08D;
    box-shadow: 0 0 15px rgba(79, 192, 141, 0.5), 0 0 30px rgba(79, 192, 141, 0.3);
}

.tech-tag[data-tech="angular"]:hover {
    border-color: #DD0031;
    color: #DD0031;
    box-shadow: 0 0 15px rgba(221, 0, 49, 0.5), 0 0 30px rgba(221, 0, 49, 0.3);
}

.tech-tag[data-tech="postgresql"]:hover {
    border-color: #336791;
    color: #336791;
    box-shadow: 0 0 15px rgba(51, 103, 145, 0.5), 0 0 30px rgba(51, 103, 145, 0.3);
}

.tech-tag[data-tech="redis"]:hover {
    border-color: #DC382D;
    color: #DC382D;
    box-shadow: 0 0 15px rgba(220, 56, 45, 0.5), 0 0 30px rgba(220, 56, 45, 0.3);
}

.tech-tag[data-tech="postman"]:hover {
    border-color: #FF6C37;
    color: #FF6C37;
    box-shadow: 0 0 15px rgba(255, 108, 55, 0.5), 0 0 30px rgba(255, 108, 55, 0.3);
}

.tech-tag[data-tech="figma"]:hover {
    border-color: #F24E1E;
    color: #F24E1E;
    box-shadow: 0 0 15px rgba(242, 78, 30, 0.5), 0 0 30px rgba(242, 78, 30, 0.3);
}

.tech-tag[data-tech="npm"]:hover {
    border-color: #CB3837;
    color: #CB3837;
    box-shadow: 0 0 15px rgba(203, 56, 55, 0.5), 0 0 30px rgba(203, 56, 55, 0.3);
}

.tech-tag[data-tech="yarn"]:hover {
    border-color: #2C8EBB;
    color: #2C8EBB;
    box-shadow: 0 0 15px rgba(44, 142, 187, 0.5), 0 0 30px rgba(44, 142, 187, 0.3);
}

.tech-tag[data-tech="linux"]:hover {
    border-color: #FCC624;
    color: #FCC624;
    box-shadow: 0 0 15px rgba(252, 198, 36, 0.5), 0 0 30px rgba(252, 198, 36, 0.3);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary);
    background: var(--bg-hover);
}

.feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border: 1px solid var(--primary);
    border-radius: 8px;
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.feature-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Featured Projects */
.featured-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.featured-project-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.featured-project-card:hover {
    border-color: var(--primary);
    background: var(--bg-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.featured-project-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.featured-project-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.featured-project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.project-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.2s ease;
}

.project-card:hover {
    border-color: var(--primary);
    background: var(--bg-hover);
    transform: translateY(-2px);
}

/* Sale Script Section */
.sale-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.sale-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sale-card:hover {
    border-color: var(--primary);
    background: var(--bg-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.sale-preview {
    width: 100%;
    position: relative;
    background: var(--bg);
    overflow: hidden;
}

.sale-preview-youtube {
    aspect-ratio: 16 / 9;
}

.sale-preview-youtube iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.sale-preview-images {
    aspect-ratio: 16 / 9;
    position: relative;
}

.sale-image-gallery {
    width: 100%;
    height: 100%;
    position: relative;
}

.sale-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sale-gallery-image.active {
    opacity: 1;
    z-index: 1;
}

.sale-gallery-nav {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.sale-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.sale-gallery-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

.sale-gallery-dot:hover {
    background: var(--primary);
}

.sale-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sale-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.sale-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
    flex: 1;
}

.sale-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.sale-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.sale-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.sale-btn {
    padding: 10px 24px;
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 6px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.sale-btn:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.4);
}

/* Search Component */
.search-container {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    align-items: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.search-input {
    flex: 1;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 10px 16px;
    color: var(--text-primary);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
    height: 40px;
}

.search-input:focus {
    border-color: var(--primary);
    background: var(--bg-hover);
    box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.1);
}

.search-input::placeholder {
    color: var(--text-muted);
    font-size: 13px;
}

.search-btn {
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 50%;
    padding: 0;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.search-btn:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
}

.search-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.clear-search-btn {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 6px 12px;
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    margin-top: 12px;
}

.clear-search-btn:hover {
    background: var(--bg-hover);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

/* Role Script Section */
.role-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.role-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.role-card:hover {
    border-color: var(--accent);
    background: var(--bg-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.role-preview {
    width: 100%;
    position: relative;
    background: var(--bg);
    overflow: hidden;
}

.role-preview-youtube {
    aspect-ratio: 16 / 9;
}

.role-preview-youtube iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.role-preview-images {
    aspect-ratio: 16 / 9;
    position: relative;
}

.role-image-gallery {
    width: 100%;
    height: 100%;
    position: relative;
}

.role-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.role-gallery-image.active {
    opacity: 1;
    z-index: 1;
}

.role-gallery-nav {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.role-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.role-gallery-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

.role-gallery-dot:hover {
    background: var(--accent);
}

.role-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.role-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.role-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
    flex: 1;
}

.role-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.role-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.role-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.role-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.role-card:hover .role-badge::before {
    left: 100%;
}

.role-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Free Script Section */
.free-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.free-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.free-card:hover {
    border-color: var(--accent);
    background: var(--bg-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.free-preview {
    width: 100%;
    position: relative;
    background: var(--bg);
    overflow: hidden;
}

.free-preview-youtube {
    aspect-ratio: 16 / 9;
}

.free-preview-youtube iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.free-preview-images {
    aspect-ratio: 16 / 9;
    position: relative;
}

.free-image-gallery {
    width: 100%;
    height: 100%;
    position: relative;
}

.free-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.free-gallery-image.active {
    opacity: 1;
    z-index: 1;
}

.free-gallery-nav {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.free-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.free-gallery-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

.free-gallery-dot:hover {
    background: var(--accent);
}

.free-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.free-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.free-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
    flex: 1;
}

.free-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.free-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.free-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
}

.free-btn {
    padding: 10px 24px;
    background: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 6px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.free-btn:hover {
    background: #2ea043;
    border-color: #2ea043;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(35, 134, 54, 0.4);
}

.project-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
}

/* Discord Section */
.discord-intro {
    margin-bottom: 32px;
    text-align: center;
}

.discord-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.discord-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.discord-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.discord-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.discord-stat-card {
    background: linear-gradient(135deg, var(--bg-elevated), rgba(230, 57, 70, 0.05));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.discord-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.discord-stat-card:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--bg-hover), rgba(230, 57, 70, 0.1));
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.15);
}

.discord-stat-card:hover::before {
    transform: scaleX(1);
}

.discord-stat-icon-wrapper {
    position: relative;
}

.discord-stat-icon {
    font-size: 36px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(230, 57, 70, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(230, 57, 70, 0.2);
    transition: all 0.3s ease;
}

.discord-stat-card:hover .discord-stat-icon {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(230, 57, 70, 0.1));
    border-color: var(--primary);
    transform: scale(1.1);
}

.discord-stat-content {
    flex: 1;
}

.discord-stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    text-shadow: 0 0 10px rgba(230, 57, 70, 0.3);
}

.discord-stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.discord-features {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.discord-features-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.discord-features-title::before {
    content: '✨';
    font-size: 20px;
}

.discord-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.discord-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    transition: all 0.2s ease;
}

.discord-features-list li:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.discord-feature-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.discord-widget-wrapper {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.discord-widget-wrapper:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.15);
}

.discord-widget-header {
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(230, 57, 70, 0.05));
    border-bottom: 1px solid var(--border);
}

.discord-widget-title {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.discord-widget-title svg {
    color: #5865F2;
}

.discord-widget {
    width: 100%;
    border-radius: 0;
    border: none;
    flex: 1;
    min-height: 500px;
}

.discord-join-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    border: none;
    border-radius: 0;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.discord-join-btn:hover {
    background: linear-gradient(135deg, #4752C4, #3C45A5);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}

.discord-join-btn svg {
    width: 20px;
    height: 20px;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
    line-height: 1.8;
    font-size: 15px;
    color: var(--text-secondary);
}

.about-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 32px 0 16px;
}

.about-content h3:first-child {
    margin-top: 0;
}

.about-content p {
    margin-bottom: 16px;
}

.about-content ul {
    list-style: none;
    padding-left: 0;
}

.about-content li {
    margin: 12px 0;
    padding-left: 24px;
    position: relative;
}

.about-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Footer */
.footer {
    text-align: center;
    padding: 32px 0;
    margin-top: 64px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .nav-menu {
        width: 100%;
        flex-wrap: wrap;
    }

    .logo-text {
        font-size: 24px;
    }

    
    .section-title {
        font-size: 24px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-features {
        gap: 8px;
    }

    .hero-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .home-section {
        margin-top: 48px;
    }

    .home-section-title {
        font-size: 22px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-item {
        flex-direction: column;
        gap: 16px;
    }

    .process-number {
        min-width: auto;
    }

    .tech-stack {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        flex-direction: column;
        gap: 12px;
    }

    .featured-projects {
        grid-template-columns: 1fr;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .sale-grid {
        grid-template-columns: 1fr;
    }

    .free-grid {
        grid-template-columns: 1fr;
    }

    .role-grid {
        grid-template-columns: 1fr;
    }

    .role-footer {
        justify-content: center;
    }

    .role-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .sale-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .sale-btn {
        width: 100%;
    }

    .free-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .free-btn {
        width: 100%;
    }

    .search-container {
        max-width: 100%;
        gap: 10px;
    }

    .search-input {
        font-size: 14px;
        padding: 12px 16px;
        height: 44px;
    }

    .search-btn {
        width: 44px;
        height: 44px;
    }

    .search-btn svg {
        width: 18px;
        height: 18px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .discord-container {
        grid-template-columns: 1fr;
    }

    .discord-stats-grid {
        grid-template-columns: 1fr;
    }

    .discord-widget {
        height: 400px;
        min-height: 400px;
    }

    .notification-dropdown {
        width: calc(100vw - 48px);
        right: -24px;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

.search-result-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    padding: 48px 24px;
    min-height: 200px;
    margin: 0 auto;
    width: 100%;
}

/* Script Context Menu */
.script-context-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10002;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.script-context-menu.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.context-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.context-menu-content {
    position: relative;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    width: 95vw;
    max-width: 900px;
    min-width: 350px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 10003;
}

.script-context-menu.active .context-menu-content {
    transform: scale(1);
}

.context-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.context-menu-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.context-menu-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.context-menu-close:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.context-menu-body {
    padding: 20px;
}

.script-info {
    margin-bottom: 24px;
}

.script-info-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    gap: 8px;
}

.script-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.script-info-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.script-info-value {
    color: var(--text-primary);
    text-align: left;
    word-break: break-word;
    line-height: 1.5;
    font-size: 15px;
}

.script-info-value .tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    margin: 4px 4px 4px 0;
    font-weight: 500;
}

.context-menu-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.context-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

.context-menu-btn.primary {
    background: var(--primary);
    color: white;
}

.context-menu-btn.primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.context-menu-btn.secondary {
    background: var(--bg-hover);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.context-menu-btn.secondary:hover {
    background: var(--border);
    transform: translateY(-2px);
}

.context-menu-btn svg {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .context-menu-content {
        width: 98vw;
        max-width: 98vw;
        min-width: 300px;
        margin: 10px;
        max-height: 90vh;
    }
    
    .script-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    
    .script-info-label {
        font-size: 13px;
        margin-bottom: 3px;
    }
    
    .script-info-value {
        font-size: 14px;
    }
    
    .context-menu-actions {
        flex-direction: column;
    }
    
    .context-menu-btn {
        min-width: auto;
    }
}

/* Script Detail Page */
.script-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    position: relative;
    z-index: 1;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 32px;
    width: fit-content;
}

.back-btn:hover {
    background: var(--bg-hover);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.script-detail-layout {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 32px;
    align-items: start;
    width: 100%;
    min-width: 0;
}

.script-detail-review {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.script-detail-intro {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.script-detail-additional {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.script-detail-preview {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    min-height: 400px;
}

.script-detail-preview iframe,
.script-detail-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.script-detail-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.script-detail-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    width: 100%;
    max-width: 100%;
    text-align: left;
}

.script-detail-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.script-detail-type {
    background: var(--accent);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.script-detail-price {
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.script-detail-role {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.script-detail-description h3,
.script-detail-tags h3,
.script-detail-features h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.script-detail-description p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.script-detail-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.script-detail-tags-list .tag {
    background: var(--bg-hover);
    color: var(--text-primary);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border);
    margin: 3px;
    display: inline-block;
    transition: all 0.2s ease;
}

.script-detail-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.script-detail-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    min-width: 180px;
    justify-content: center;
}

.script-detail-btn.primary {
    background: var(--primary);
    color: white;
}

.script-detail-btn.primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.script-detail-btn.secondary {
    background: var(--bg-hover);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.script-detail-btn.secondary:hover {
    background: var(--border);
    transform: translateY(-2px);
}

.script-detail-features .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.script-detail-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.script-detail-features .feature-icon {
    color: var(--accent);
    font-weight: bold;
    font-size: 14px;
}

/* Image Gallery for Detail Page */
.script-detail-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.script-detail-gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.script-detail-gallery-image.active {
    opacity: 1;
}

.script-detail-gallery-nav {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.script-detail-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.script-detail-gallery-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .script-detail-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        width: 100%;
        min-width: 0;
    }
    
    .script-detail-container {
        padding: 16px;
    }
    
    .script-detail-intro {
        padding: 16px;
        order: -1;
    }
    
    .script-detail-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .script-detail-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .script-detail-btn {
        min-width: auto;
        width: 100%;
        justify-content: center;
    }
    
    .script-detail-features .features-grid {
        grid-template-columns: 1fr;
    }
}
