* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e1e5e9;
    background: #0d1117;
    margin: 0;
    padding: 0;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #21262d;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #f0f6fc;
}

.nav-logo i {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00d9ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d9ff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00d9ff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2300d9ff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00d9ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Search Bar */
.hero-search {
    max-width: 500px;
    margin: 0 auto 1.5rem auto;
}

.search-container {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-container:focus-within {
    border-color: #00d9ff;
    box-shadow: 0 0 8px rgba(0, 217, 255, 0.2);
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #00d9ff, #0099cc);
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(135deg, #0099cc, #007aa3);
}

.search-options {
    margin-top: 1rem;
    text-align: center;
}

.search-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    cursor: pointer;
}

.search-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #00d9ff;
}

/* Navigation Dropdowns */
.dropdown {
    position: relative;
}

.dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown .nav-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: rgba(0, 217, 255, 0.1);
    color: #00d9ff;
    padding-left: 25px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary {
    background: linear-gradient(135deg, #00d9ff, #0099cc);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 217, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #00d9ff;
    border: 2px solid #00d9ff;
}

.btn-secondary:hover {
    background: #00d9ff;
    color: #0a0a0a;
    transform: translateY(-1px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00d9ff;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scripts Section */
.scripts-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: #00d9ff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: #00d9ff;
    color: #00d9ff;
}

.scripts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.script-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.script-card:hover {
    transform: translateY(-3px);
    border-color: #00d9ff;
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.15);
}

.script-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.script-image i {
    font-size: 2.5rem;
    color: #00d9ff;
    background: rgba(0, 217, 255, 0.1);
    padding: 0.8rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.script-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.script-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.script-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 217, 255, 0.2);
    color: #00d9ff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.script-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.script-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-download {
    width: 100%;
    background: linear-gradient(135deg, #00d9ff, #0099cc);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-download:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 217, 255, 0.3);
}

/* Executors Section */
.executors-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

.executors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.executor-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.executor-card.featured {
    border-color: #00d9ff;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
    transform: scale(1.02);
}

.executor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 217, 255, 0.15);
}

.executor-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00d9ff, #0099cc);
    color: white;
    padding: 5px 20px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.executor-icon {
    margin-bottom: 1.5rem;
}

.executor-icon i {
    font-size: 3rem;
    color: #00d9ff;
    background: rgba(0, 217, 255, 0.1);
    padding: 1.2rem;
    border-radius: 50%;
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.executor-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.executor-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.executor-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.executor-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.executor-features i {
    color: #00ff88;
    font-size: 0.9rem;
}

.executor-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d9ff;
    margin-bottom: 1.5rem;
}

.btn-full {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #16213e 0%, #0a0a0a 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 217, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2.5rem;
    color: #00d9ff;
    background: rgba(0, 217, 255, 0.1);
    padding: 0.8rem;
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #00d9ff;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00d9ff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    color: #00d9ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(0, 217, 255, 0.2);
    transform: translateY(-1px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .scripts-grid,
    .executors-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        margin-top: 10px;
    }
    
    .search-container {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .search-btn {
        border-radius: 0 0 15px 15px;
        justify-content: center;
    }
    
    .search-input {
        border-radius: 15px 15px 0 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.script-card,
.executor-card,
.feature-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: rgba(0, 217, 255, 0.3);
    color: white;
}


/* Page Header */
.page-header {
    padding: 150px 0 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00d9ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Active nav link */
.nav-link.active {
    color: #00d9ff;
}

.nav-link.active::after {
    width: 100%;
}

/* Tutorials Section */
.tutorials-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0a 100%);
}

.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tutorial-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tutorial-card:hover {
    transform: translateY(-3px);
    border-color: #00d9ff;
}

.tutorial-icon {
    margin-bottom: 1.5rem;
}

.tutorial-icon i {
    font-size: 2.5rem;
    color: #00d9ff;
}

.tutorial-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.tutorial-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.tutorial-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.tutorial-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Support Section */
.support-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0a 100%);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.support-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-3px);
    border-color: #00d9ff;
}

.support-icon {
    margin-bottom: 1.5rem;
}

.support-icon i {
    font-size: 3rem;
    color: #00d9ff;
}

.support-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.support-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

/* Browse Section */
.browse-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0a 100%);
}

.browse-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #00d9ff;
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.2);
}

.category-icon {
    margin-bottom: 1rem;
}

.category-icon i {
    font-size: 3rem;
    color: #00d9ff;
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.category-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.category-count {
    display: inline-block;
    background: rgba(0, 217, 255, 0.2);
    color: #00d9ff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.game-card:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: #00d9ff;
    transform: translateY(-2px);
}

.game-card i {
    font-size: 2rem;
    color: #00d9ff;
}

.game-card span {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}


/* Executor Gallery - New Style */
.executor-gallery {
    padding: 40px 0 80px;
    background: #1a1a2e;
}

.executor-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.executor-item {
    background: #252542;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.executor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.executor-image {
    width: 100%;
    height: 200px;
    background: #1e1e36;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.executor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.executor-item:hover .executor-image img {
    transform: scale(1.05);
}

/* Placeholder for when no image */
.executor-image:not(:has(img)) {
    background: linear-gradient(135deg, #2a2a4a 0%, #1a1a2e 100%);
}

.executor-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem 0.5rem;
}

.executor-category {
    color: #00d9ff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.executor-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.executor-info .executor-category::after {
    content: " -";
    color: rgba(255, 255, 255, 0.5);
}

.executor-title {
    padding: 0.5rem 1.25rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

.load-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 15px 30px;
    background: #6c5ce7;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #5b4cdb;
    transform: translateY(-2px);
}

.load-more-btn i {
    font-size: 0.8rem;
}


/* Scripts Gallery - New Style */
.scripts-gallery {
    padding: 40px 0 80px;
    background: #1a1a2e;
}

.scripts-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-content h2 {
    color: #00d9ff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: #00d9ff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffffff;
}

.edit-input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.edit-input:focus {
    outline: none;
    border-color: #00d9ff;
    background: rgba(255, 255, 255, 0.15);
}

.modal-buttons {
    display: flex;
    gap: 1rem;
}

.btn-save,
.btn-cancel {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-save {
    background: linear-gradient(135deg, #00d9ff, #0099cc);
    color: white;
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 217, 255, 0.3);
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: #00d9ff;
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.btn-cancel:hover {
    background: rgba(0, 217, 255, 0.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Script Item Edit Button */
.script-item {
    position: relative;
}

.script-edit-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 217, 255, 0.9);
    color: #0a0a0a;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 10;
}

.script-item:hover .script-edit-btn {
    opacity: 1;
}

.script-edit-btn:hover {
    background: #00d9ff;
    transform: scale(1.1);
}

.script-item {
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.script-item:hover {
    transform: translateY(-3px);
}

.script-image {
    width: 100%;
    height: 160px;
    background: #252542;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.script-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.script-item:hover .script-image img {
    transform: scale(1.05);
}

.script-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.script-category {
    color: #00d9ff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.script-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.script-info .script-category::after {
    content: " -";
    color: rgba(255, 255, 255, 0.5);
}

.script-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.script-item:hover .script-title {
    color: #00d9ff;
}

/* Responsive for scripts grid */
@media (max-width: 1200px) {
    .scripts-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .scripts-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .scripts-grid-new {
        grid-template-columns: 1fr;
    }
}


/* Scripts Search Bar */
.scripts-search {
    max-width: 500px;
    margin: 2rem auto 0;
}

.scripts-search .search-container {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.scripts-search .search-container:focus-within {
    border-color: #00d9ff;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
}
/* Script Detail Pages */
.script-layout {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 40px;
    gap: 40px;
    background: #2a2a2a;
    min-height: 100vh;
}

.main-content {
    flex: 2;
    background: #2a2a2a;
    padding: 20px;
}

.breadcrumb {
    color: #888;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #00d9ff;
    text-decoration: none;
}

.script-page-title {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
    font-weight: 600;
}

.script-page-date {
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 25px;
}

.script-main-section {
    margin-bottom: 40px;
}

.script-image-container {
    margin-bottom: 20px;
}

.script-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
}

.script-description p {
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 12px;
}

.features-section {
    margin-bottom: 40px;
}

.features-section h2 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    color: #ccc;
    padding: 6px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.script-code-section h2 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.code-container {
    position: relative;
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 8px;
    overflow: hidden;
}

.copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #00d9ff;
    color: #000;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
}

.copy-btn:hover {
    background: #0099cc;
}

.code-container pre {
    margin: 0;
    padding: 20px;
    overflow-x: auto;
}

.code-container code {
    color: #00d9ff;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
}

/* Sidebar */
.sidebar {
    flex: 1;
    background: #333;
    padding: 20px;
    border-radius: 8px;
    height: fit-content;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section h3 {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #00d9ff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-section h3 i {
    color: #ff4757;
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list li {
    margin-bottom: 8px;
}

.sidebar-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-list a:hover {
    color: #00d9ff;
}

.popular-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.popular-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.popular-info {
    flex: 1;
}

.popular-category {
    background: #00d9ff;
    color: #000;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 5px;
}

.popular-date {
    color: #888;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 5px;
}

.popular-info h4 {
    color: #ccc;
    font-size: 0.8rem;
    line-height: 1.3;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .script-layout {
        flex-direction: column;
        padding: 80px 10px 20px;
    }
    
    .script-page-title {
        font-size: 1.4rem;
    }
    
    .popular-item {
        flex-direction: column;
    }
    
    .popular-thumb {
        width: 100%;
        height: 120px;
    }
}


/* Script Detail Page */
.script-detail-page {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0a 100%);
    min-height: 100vh;
}

.script-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
}

.script-detail-main {
    min-width: 0;
}

.script-detail-header {
    margin-bottom: 1.5rem;
}

.script-detail-header h1 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.script-detail-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.script-detail-date i {
    margin-right: 5px;
    color: #00d9ff;
}

.script-detail-image {
    max-width: 100%;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.script-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.script-description-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.script-detail-features {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.script-detail-features h2 {
    color: #00d9ff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.script-detail-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.script-detail-features li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.script-detail-features li i {
    color: #00ff88;
    margin-right: 10px;
}

/* Sidebar */
.script-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 10px;
    padding: 1.25rem;
}

.sidebar-box h3 {
    color: #00d9ff;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    padding: 0.4rem 0;
}

.sidebar-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.sidebar-links a:hover {
    color: #00d9ff;
}

.recommended-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s;
}

.recommended-item:last-child {
    border-bottom: none;
}

.recommended-item:hover {
    opacity: 0.8;
}

.recommended-item img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}

.recommended-info {
    flex: 1;
    min-width: 0;
}

.recommended-category {
    color: #00d9ff;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
}

.recommended-info p {
    color: #ffffff;
    font-size: 0.8rem;
    margin: 0.25rem 0 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 900px) {
    .script-detail-layout {
        grid-template-columns: 1fr;
    }
}

.script-copy-section {
    margin-bottom: 2rem;
}

.script-copy-section h2 {
    color: #00d9ff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.script-copy-section h2 i {
    margin-right: 8px;
}

.script-code-box {
    background: #0d0d1a;
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 10px;
    padding: 1rem;
    position: relative;
}

.script-code-box pre {
    color: #00ff88;
    font-family: 'Consolas', monospace;
    font-size: 0.85rem;
    margin: 0;
    padding-right: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-height: 1.2em;
}

.copy-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #00d9ff, #0099cc);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.3);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00d9ff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.back-btn:hover {
    color: #ffffff;
}

.breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: #00d9ff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}
/* Script Detail Pages - Proper Layout */
.script-page-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 40px;
    gap: 40px;
    min-height: 100vh;
}

.script-main-content {
    flex: 3;
    padding: 20px;
    max-width: 800px;
}

.breadcrumb {
    color: #888;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #00d9ff;
    text-decoration: none;
}

.script-page-title {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.2;
    font-weight: 600;
    max-width: 700px;
    word-wrap: break-word;
}

.script-page-date {
    color: #888;
    font-size: 0.75rem;
    margin-bottom: 20px;
}

.script-image-section {
    margin: 25px 0;
}

.script-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    display: block;
}

.script-image-caption {
    color: #ccc;
    font-size: 0.9rem;
    margin: 15px 0 0 0;
    max-width: 500px;
    word-wrap: break-word;
}

.script-features-section {
    margin: 30px 0;
}

.script-features-section h2 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    color: #ccc;
    padding: 10px 0;
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    max-width: 600px;
    word-wrap: break-word;
}

.script-code-section {
    margin: 40px 0;
}

.script-code-section .code-container {
    position: relative;
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 8px;
    overflow: hidden;
}

.code-container {
    position: relative;
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 8px;
    overflow: hidden;
}

.copy-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #00d9ff;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 10;
}

.copy-btn:hover {
    background: #0099cc;
}

.code-container pre {
    margin: 0;
    padding: 25px;
    overflow-x: auto;
}

.code-container code {
    color: #00d9ff;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.script-sidebar {
    flex: 1;
    background: #333;
    padding: 20px;
    border-radius: 8px;
    height: fit-content;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section h3 {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #00d9ff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-section h3 i {
    color: #ff4757;
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list li {
    margin-bottom: 8px;
}

.sidebar-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-list a:hover {
    color: #00d9ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .script-page-container {
        flex-direction: column;
        padding: 80px 10px 20px;
    }
    
    .script-page-title {
        font-size: 1.4rem;
    }
    
    .script-main-image {
        max-width: 100%;
    }
}
/* Script Statistics Sidebar */
.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat-label {
    color: #ccc;
    font-size: 0.85rem;
}

.stat-value {
    color: #00d9ff;
    font-weight: bold;
    font-size: 0.9rem;
}

.status-working {
    color: #00ff88 !important;
}

.related-script {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.related-thumb {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.related-info {
    flex: 1;
}

.related-info h4 {
    color: #ccc;
    font-size: 0.75rem;
    line-height: 1.2;
    margin: 0 0 5px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-uses {
    color: #888;
    font-size: 0.7rem;
}
/* Enhanced Aesthetics */
.script-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.script-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(138, 43, 226, 0.3);
}

.executor-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.executor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(138, 43, 226, 0.3);
}

/* Enhanced Buttons */
.load-more-btn {
    background: linear-gradient(135deg, #8a2be2 0%, #6a1b9a 100%);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.3);
}

/* Enhanced Script Detail Pages */
.script-page-container {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.script-sidebar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.code-container {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1px solid rgba(0, 217, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.copy-btn {
    background: linear-gradient(135deg, #00d9ff 0%, #0099cc 100%);
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.4);
}

/* Enhanced Typography */
.script-page-title {
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.section-title {
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

/* Enhanced Stats */
.stat-value {
    background: linear-gradient(135deg, #00d9ff 0%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}
/* Enhanced Page Headers */
.page-header {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 153, 204, 0.05) 50%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-title {
    background: linear-gradient(135deg, #ffffff 0%, #00d9ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(0, 217, 255, 0.3);
    position: relative;
    z-index: 2;
}

/* Enhanced Search */
.search-container {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.search-input {
    background: transparent;
    border: none;
    padding: 15px 20px;
    color: #e8e8e8;
    font-size: 1rem;
    width: 100%;
    outline: none;
}

.search-input::placeholder {
    color: rgba(232, 232, 232, 0.6);
}

.search-btn {
    background: linear-gradient(135deg, #00d9ff 0%, #0099cc 100%);
    border: none;
    padding: 15px 25px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 0 15px 15px 0;
}

.search-btn:hover {
    transform: translateX(-2px);
    box-shadow: -4px 0 15px rgba(0, 217, 255, 0.3);
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    backdrop-filter: blur(20px);
}

/* Subtle Hover Effects Only */
.script-item:hover .script-title,
.executor-item:hover .executor-title {
    color: #00d9ff;
    transition: color 0.3s ease;
}
/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 15, 35, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00d9ff 0%, #0099cc 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0099cc 0%, #007399 100%);
}

/* Enhanced Text Selection */
::selection {
    background: rgba(0, 217, 255, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(0, 217, 255, 0.3);
    color: #ffffff;
}

/* Subtle Glow Effects */
.script-title:hover,
.executor-title:hover {
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    transition: text-shadow 0.3s ease;
}

/* Enhanced Focus States */
.search-input:focus {
    box-shadow: 0 0 0 2px rgba(0, 217, 255, 0.3);
}

button:focus,
.copy-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.3);
}

/* Loading Animation for Images */
.script-image img,
.executor-image img,
.script-main-image {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.script-image img:hover,
.executor-image img:hover,
.script-main-image:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

/* Enhanced Category Tags */
.script-category,
.executor-category {
    background: linear-gradient(135deg, #00d9ff 0%, #0099cc 100%);
    box-shadow: 0 2px 10px rgba(0, 217, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Improved Spacing and Rhythm */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Mobile Experience */
@media (max-width: 768px) {
    .script-item,
    .executor-item {
        margin-bottom: 20px;
    }
    
    .script-item:hover,
    .executor-item:hover {
        transform: translateY(-4px);
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .script-page-title {
        font-size: 1.5rem;
    }
}
/* Zoom Out Script Detail Pages */
.script-page-container {
    max-width: 1400px !important;
    padding: 80px 20px 40px !important;
}

.script-main-content {
    padding: 15px !important;
    max-width: 900px !important;
}

.script-page-title {
    font-size: 1.8rem !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
}

.script-page-date {
    font-size: 0.8rem !important;
    margin-bottom: 25px !important;
}

.script-image-section {
    margin: 30px 0 !important;
}

.script-main-image {
    max-width: 600px !important;
}

.script-image-caption {
    font-size: 0.9rem !important;
    margin: 15px 0 0 0 !important;
}

.script-features-section {
    margin: 35px 0 !important;
}

.script-features-section h2 {
    font-size: 1.3rem !important;
    margin-bottom: 18px !important;
}

.features-list li {
    padding: 10px 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
}

.script-code-section {
    margin: 35px 0 !important;
}

.script-sidebar {
    padding: 12px !important;
    max-width: 250px !important;
}

.sidebar-section h3 {
    font-size: 0.8rem !important;
    margin-bottom: 12px !important;
}

.stat-item {
    padding: 8px 0 !important;
}

.stat-label {
    font-size: 0.75rem !important;
}

.stat-value {
    font-size: 0.8rem !important;
}

.related-script {
    margin-bottom: 12px !important;
    padding-bottom: 12px !important;
}

.related-thumb {
    width: 50px !important;
    height: 38px !important;
}

.related-info h4 {
    font-size: 0.7rem !important;
}

.related-uses {
    font-size: 0.65rem !important;
}
/* Purple Theme Color Overrides */
.nav-link:hover,
.nav-link.active,
.script-item:hover .script-title,
.executor-item:hover .executor-title {
    color: #8a2be2 !important;
}

.nav-link:hover {
    background: rgba(138, 43, 226, 0.1) !important;
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(138, 43, 226, 0.1)) !important;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.2) !important;
}

.script-category,
.executor-category,
.popular-category {
    background: linear-gradient(135deg, #8a2be2 0%, #6a1b9a 100%) !important;
    color: #fff !important;
    box-shadow: 0 2px 10px rgba(138, 43, 226, 0.3) !important;
}

.stat-value {
    background: linear-gradient(135deg, #8a2be2 0%, #6a1b9a 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.3) !important;
}

.copy-btn {
    background: linear-gradient(135deg, #8a2be2 0%, #6a1b9a 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3) !important;
}

.copy-btn:hover {
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4) !important;
}

.search-btn {
    background: linear-gradient(135deg, #8a2be2 0%, #6a1b9a 100%) !important;
    color: #fff !important;
}

.search-btn:hover {
    box-shadow: -4px 0 15px rgba(138, 43, 226, 0.3) !important;
}

.code-container {
    border: 1px solid rgba(138, 43, 226, 0.2) !important;
}

.sidebar-section h3 {
    border-bottom: 2px solid #8a2be2 !important;
}

.sidebar-list a:hover {
    color: #8a2be2 !important;
}

.script-page-title,
.section-title,
.page-title {
    background: linear-gradient(135deg, #ffffff 0%, #8a2be2 50%, #ffffff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 0 0 50px rgba(138, 43, 226, 0.3) !important;
}

.search-input:focus {
    box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.3) !important;
}

button:focus,
.copy-btn:focus {
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.3) !important;
}

.footer {
    border-top: 1px solid rgba(138, 43, 226, 0.2) !important;
}

/* Scrollbar Purple Theme */
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #8a2be2 0%, #6a1b9a 100%) !important;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #6a1b9a 0%, #4a148c 100%) !important;
}

/* Selection Purple Theme */
::selection {
    background: rgba(138, 43, 226, 0.3) !important;
}

::-moz-selection {
    background: rgba(138, 43, 226, 0.3) !important;
}

/* Enhanced Page Headers Purple */
.page-header::before {
    background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 70%) !important;
}

.hero::before {
    background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 70%) !important;
}
/* Professional UI/UX Redesign */

/* Clean Navigation */
.nav-link {
    color: #8b949e !important;
    text-decoration: none !important;
    padding: 0.5rem 1rem !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
}

.nav-link:hover {
    color: #f0f6fc !important;
    background: #21262d !important;
}

.nav-link.active {
    color: #f0f6fc !important;
    background: #21262d !important;
}

/* Clean Cards */
.script-item,
.executor-item {
    background: #161b22 !important;
    border: 1px solid #21262d !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    transition: all 0.2s ease !important;
    position: relative !important;
}

.script-item:hover,
.executor-item:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
    border-color: #30363d !important;
}

/* Professional Buttons */
.load-more-btn {
    background: #238636 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.load-more-btn:hover {
    background: #2ea043 !important;
    transform: translateY(-1px) !important;
}

.copy-btn {
    background: #238636 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.copy-btn:hover {
    background: #2ea043 !important;
}

/* Clean Typography */
.script-page-title,
.page-title {
    color: #f0f6fc !important;
    font-weight: 600 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    text-shadow: none !important;
}

.script-title,
.executor-title {
    color: #f0f6fc !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
}

.script-title:hover,
.executor-title:hover {
    color: #58a6ff !important;
}

/* Professional Categories */
.script-category,
.executor-category {
    background: #1f6feb !important;
    color: #ffffff !important;
    padding: 2px 8px !important;
    border-radius: 12px !important;
    font-size: 0.7rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: none !important;
}

/* Clean Sidebar */
.script-sidebar {
    background: #161b22 !important;
    border: 1px solid #21262d !important;
    border-radius: 8px !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
}

.sidebar-section h3 {
    color: #f0f6fc !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-bottom: 1px solid #21262d !important;
    padding-bottom: 8px !important;
    margin-bottom: 12px !important;
}

.stat-value {
    color: #58a6ff !important;
    font-weight: 600 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    text-shadow: none !important;
}

.stat-label {
    color: #8b949e !important;
    font-size: 0.8rem !important;
}

/* Clean Code Container */
.code-container {
    background: #0d1117 !important;
    border: 1px solid #21262d !important;
    border-radius: 6px !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
}

/* Clean Search */
.search-container {
    background: #161b22 !important;
    border: 1px solid #21262d !important;
    border-radius: 6px !important;
    backdrop-filter: none !important;
}

.search-input {
    background: transparent !important;
    color: #f0f6fc !important;
    font-size: 0.9rem !important;
}

.search-input::placeholder {
    color: #8b949e !important;
}

.search-btn {
    background: #238636 !important;
    color: #ffffff !important;
    border-radius: 0 6px 6px 0 !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
}

.search-btn:hover {
    background: #2ea043 !important;
}

/* Clean Focus States */
.search-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px #1f6feb !important;
}

button:focus,
.copy-btn:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px #1f6feb !important;
}

/* Clean Page Headers */
.page-header {
    background: none !important;
    position: relative !important;
    overflow: hidden !important;
}

.page-header::before {
    display: none !important;
}

/* Clean Footer */
.footer {
    background: #0d1117 !important;
    border-top: 1px solid #21262d !important;
    backdrop-filter: none !important;
}

/* Clean Scrollbar */
::-webkit-scrollbar {
    width: 6px !important;
}

::-webkit-scrollbar-track {
    background: #161b22 !important;
}

::-webkit-scrollbar-thumb {
    background: #30363d !important;
    border-radius: 3px !important;
}

::-webkit-scrollbar-thumb:hover {
    background: #484f58 !important;
}

/* Clean Selection */
::selection {
    background: rgba(31, 111, 235, 0.3) !important;
    color: #ffffff !important;
}

::-moz-selection {
    background: rgba(31, 111, 235, 0.3) !important;
    color: #ffffff !important;
}

/* Remove All Excessive Effects */
.script-item::before,
.executor-item::before {
    display: none !important;
}

.hero::before {
    display: none !important;
}

/* Clean Related Scripts */
.related-info h4 {
    color: #f0f6fc !important;
    font-weight: 500 !important;
}

.related-uses {
    color: #8b949e !important;
}

.sidebar-list a {
    color: #8b949e !important;
    font-size: 0.85rem !important;
}

.sidebar-list a:hover {
    color: #58a6ff !important;
}

/* Professional Status */
.status-working {
    color: #3fb950 !important;
    font-weight: 600 !important;
}

/* Clean Breadcrumb */
.breadcrumb {
    color: #8b949e !important;
    font-size: 0.85rem !important;
}

.breadcrumb a {
    color: #58a6ff !important;
}

/* Clean Features */
.features-list li {
    color: #e1e5e9 !important;
    border-bottom: 1px solid #21262d !important;
}

.script-features-section h2 {
    color: #f0f6fc !important;
    font-weight: 600 !important;
}

.script-image-caption {
    color: #8b949e !important;
}

.script-page-date {
    color: #8b949e !important;
}
/* Remove All Glow Effects - Clean Typography */
* {
    text-shadow: none !important;
}

.nav-logo,
.script-title,
.executor-title,
.script-page-title,
.page-title,
.section-title,
.hero-title,
h1, h2, h3, h4, h5, h6 {
    text-shadow: none !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
}

/* Bold, Clean Headings */
.script-page-title {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
}

.page-title {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: -0.03em !important;
}

.script-title,
.executor-title {
    font-weight: 600 !important;
    color: #ffffff !important;
}

/* Clean Body Text */
body {
    font-weight: 400 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Remove Box Shadows from Text Elements */
.stat-value,
.nav-logo {
    box-shadow: none !important;
    text-shadow: none !important;
}

/* Clean, Readable Paragraphs */
p, li, span {
    font-weight: 400 !important;
    text-shadow: none !important;
}

/* Bold Section Headers */
.sidebar-section h3,
.script-features-section h2 {
    font-weight: 700 !important;
    text-shadow: none !important;
    letter-spacing: 0.02em !important;
}

/* Clean Navigation */
.nav-logo {
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-shadow: none !important;
}

.nav-link {
    font-weight: 500 !important;
    text-shadow: none !important;
}

/* Remove All Gradient Text Effects */
.script-page-title,
.page-title,
.section-title {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
}

/* Clean Feature Text */
.features-list li {
    font-weight: 400 !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
}

/* Clean Stat Labels */
.stat-label {
    font-weight: 500 !important;
}

.stat-value {
    font-weight: 700 !important;
}

/* Clean Buttons */
.load-more-btn,
.copy-btn,
.search-btn {
    font-weight: 600 !important;
    text-shadow: none !important;
}

/* Clean Categories */
.script-category,
.executor-category {
    font-weight: 600 !important;
    text-shadow: none !important;
}


/* Script item as link */
a.script-item {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

a.script-item * {
    pointer-events: none;
}

a.script-item:hover {
    text-decoration: none;
}