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

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #16161d;
    --bg-card: #1a1a24;
    --accent-pink: #ff006e;
    --accent-purple: #8338ec;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --border-color: #2a2a35;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.footer-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: transparent;
    display: block;
}
.footer-logo2 {
    width: 110px;
    height: 110px;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-login {
    background: transparent;
    border: 1px solid var(--accent-pink);
    color: var(--accent-pink);
    padding: 10px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-login:hover {
    background: var(--accent-pink);
    color: white;
}

.btn-discord {
    background: #5865F2;
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
}

.hero {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.palm {
    position: absolute;
    height: 100%;
    opacity: 0.3;
}

.palm-left {
    left: -50px;
}

.palm-right {
    right: -50px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    color: white;
    padding: 15px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.latest-releases,
.community,
.reviews,
.team,
.faq {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 0, 110, 0.1);
    color: var(--accent-pink);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-tag-right {
    position: absolute;
    right: 0;
    top: 0;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.view-all {
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.view-all:hover {
    color: var(--accent-purple);
}

.scripts-grid,
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 350px));
    gap: 30px;
    justify-content: center;
}

.script-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    max-width: 350px;
    width: 100%;
}

.script-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-pink);
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.2);
}

.script-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--bg-secondary);
}

.script-content {
    padding: 20px;
    max-width: 100%;
    overflow: hidden;
}

.script-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.badge {
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-sistemler {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

.badge-filesler {
    background: rgba(155, 89, 182, 0.2);
    color: #9b59b6;
}

.badge-standalone {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.badge-bagimsiz {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.script-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-pink);
    margin-bottom: 10px;
}

.script-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: 100%;
}

.script-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-width: 100%;
}

.community-card {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
    border: 1px solid var(--accent-pink);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
}

.community-card h2 {
    font-size: 38px;
    margin: 20px 0;
}

.community-card p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 16px;
}

.btn-discord-large {
    display: inline-block;
    background: #5865F2;
    color: white;
    padding: 15px 50px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-discord-large:hover {
    background: #4752C4;
    transform: translateY(-3px);
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 50px;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: 350px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
}

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

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author {
    font-weight: 700;
    font-size: 16px;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-pink);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--accent-purple);
}

.carousel-btn.prev {
    left: -50px;
}

.carousel-btn.next {
    right: -50px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--accent-pink);
    width: 30px;
    border-radius: 5px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--accent-pink);
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-role {
    color: var(--text-secondary);
    font-size: 14px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--accent-pink);
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 25px 25px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-cityscape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-pink);
}

.footer-payment {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.footer-payment span {
    padding: 8px 15px;
    background: var(--bg-card);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.footer-disclaimer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.6;
}

.resources-hero {
    padding: 80px 0 40px;
    text-align: center;
}

.resources-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.resources-hero p {
    font-size: 18px;
    color: var(--text-secondary);
}

.resources-content {
    padding: 40px 0 80px;
}

.resources-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.filters-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
}

.filter-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.btn-clear-filters {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--accent-pink);
    color: var(--accent-pink);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-clear-filters:hover {
    background: var(--accent-pink);
    color: white;
}

.resources-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.search-box {
    flex: 1;
}

.search-box input {
    width: 100%;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent-pink);
}

.sort-select {
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
}

.sort-select:focus {
    outline: none;
    border-color: var(--accent-pink);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover,
.page-btn.active {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
}

@media (max-width: 1024px) {
    .resources-layout {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .stats {
        flex-direction: column;
        gap: 30px;
    }

    .scripts-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .carousel-btn {
        display: none;
    }

    .reviews-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .review-card {
        scroll-snap-align: start;
    }
}

.btn-admin {
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid var(--accent-pink);
    color: var(--accent-pink);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.btn-admin:hover {
    background: var(--accent-pink);
    color: white;
    transform: translateY(-2px);
}

.btn-admin i {
    font-style: normal;
}

.blog-content {
    padding: 50px 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 30px;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.blog-main {
    min-height: 500px;
}

.featured-blog {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    cursor: pointer;
    transition: all 0.3s;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

.featured-blog:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.2);
}

.featured-blog img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 15px;
}

.featured-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-secondary);
}

.category-item {
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--bg-secondary);
}

.category-item:hover, .category-item.active {
    background: var(--accent-pink);
    color: white;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    padding: 6px 12px;
    background: var(--bg-secondary);
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.tag-item:hover {
    background: var(--accent-pink);
    color: white;
}

@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .featured-blog {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-content h2 {
        font-size: 24px;
    }
}

.sidebar-scripts-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-script-mini {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: var(--bg-card);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.sidebar-script-mini:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.2);
    border-color: var(--accent-pink);
}

.sidebar-script-mini img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.sidebar-script-mini-content {
    flex: 1;
    min-width: 0;
}

.sidebar-script-mini-content h4 {
    font-size: 13px;
    margin-bottom: 5px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sidebar-script-mini-price {
    color: var(--accent-pink);
    font-weight: 700;
    font-size: 14px;
}


/* Öne Çıkan Ribbon Badge - Çapraz */
.featured-ribbon {
    position: absolute;
    top: 20px;
    left: -35px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    color: white;
    padding: 8px 40px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    transform: rotate(-45deg);
    box-shadow: 0 3px 10px rgba(255, 0, 110, 0.5);
    text-align: center;
}

.featured-ribbon::after {
    content: '⭐';
    margin-left: 5px;
}

.script-card {
    position: relative;
    overflow: hidden;
}

.sidebar-script-item,
.sidebar-script-mini {
    position: relative;
    overflow: hidden;
}

.sidebar-featured-badge {
    position: absolute;
    top: 15px;
    left: -25px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    color: white;
    padding: 5px 30px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    transform: rotate(-45deg);
    box-shadow: 0 2px 6px rgba(255, 0, 110, 0.4);
    text-align: center;
}

/* ==================== MOBİL RESPONSIVE FİXLER ==================== */

/* Hamburger Menü Açık Durumu */
.nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobil Navigasyon */
@media (max-width: 968px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
        width: 100%;
    }
    
    .nav-links .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-actions {
        display: none;
    }
    
    .hamburger {
        display: flex !important;
    }
}

/* Hero Mobil */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 13px;
    }
}

/* Script Kartları Mobil */
@media (max-width: 768px) {
    .scripts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .script-card {
        max-width: 100%;
    }
}

/* Resources Sidebar Mobil */
@media (max-width: 1024px) {
    .resources-layout {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        display: none;
    }
    
    .resources-toolbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-box,
    .sort-select {
        width: 100%;
    }
}

/* Resources Grid Mobil */
@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Layout Mobil */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        order: 2;
        position: static;
    }
    
    .blog-main {
        order: 1;
    }
    
    .featured-blog {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .featured-blog img {
        height: 250px;
    }
    
    .featured-content h2 {
        font-size: 24px;
    }
}

/* Blog Grid Mobil */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Script Detail Mobil */
@media (max-width: 1024px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }
    
    .detail-sidebar {
        order: -1;
        position: static;
    }
    
    .detail-content {
        flex-direction: column;
    }
    
    .detail-image-container,
    .detail-text {
        width: 100%;
    }
}

/* Blog Detail Mobil */
@media (max-width: 1024px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-detail-sidebar {
        position: static;
    }
}

/* Footer Mobil */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-payment {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}

/* Reviews Carousel Mobil */
@media (max-width: 768px) {
    .reviews-carousel {
        padding: 0 20px;
    }
    
    .review-card {
        min-width: 100%;
    }
}

/* Team Grid Mobil */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Genel Container Mobil */
@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn-primary,
    .btn-discord {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Tablet Optimizasyonu */
@media (min-width: 769px) and (max-width: 1024px) {
    .scripts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Küçük Mobil (iPhone SE, vb) */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 26px;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .script-card {
        padding: 15px;
    }
    
    .script-title {
        font-size: 18px;
    }
}
