* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.3);
}

.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.3rem;
    font-weight: bold;
    color: #00d9ff;
}

.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;
}

.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-header {
    margin-bottom: 2rem;
}

.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: 500px;
    margin-bottom: 2rem;
    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-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 h2 i {
    margin-right: 8px;
}

.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;
}

.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: pre-wrap;
    word-break: break-all;
}

.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.8rem;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
    font-weight: 600;
    max-width: 600px;
    word-wrap: break-word;
}

.script-page-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.script-image-section {
    margin: 30px 0;
}

.script-main-image {
    width: 100%;
    max-width: 600px;
    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: 40px 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%;
    }
}