  /* Paketler CSS */
  
    .packages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        width: 100%;
        max-width: 1200px;
        padding: 20px;
        margin-top: 40px;
    }
    
    .package-card {
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 24px;
        background: rgba(20, 20, 35, 0.6);
        backdrop-filter: blur(20px);
        transition: 0.3s;
        position: relative;
    }

    .package-card:hover {
        transform: translateY(-10px);
        border-color: rgba(255,255,255,0.3);
    }

    .package-card.featured {
        border-color: var(--primary);
        background: rgba(139, 92, 246, 0.1);
        transform: scale(1.05);
        z-index: 2;
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
    }

    .package-card.featured:hover {
        transform: scale(1.05) translateY(-10px);
    }

    .popular-tag {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background: var(--primary);
        padding: 5px 15px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        font-size: 0.8rem;
        font-weight: 700;
        color: #fff;
    }

    .pkg-icon {
        width: 70px; height: 70px;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        margin-bottom: 20px;
    }

    .pkg-title {
        font-size: 1.5rem;
        color: #fff;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .pkg-price {
        font-size: 2.5rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 30px;
    }
    
    .pkg-list {
        list-style: none;
        width: 100%;
        margin-bottom: 30px;
        padding: 0;
        text-align: left;
    }

    .pkg-list li {
        display: flex; align-items: center; gap: 12px;
        margin-bottom: 15px;
        color: #e2e8f0;
        font-size: 0.95rem;
    }

    .pkg-list li .material-symbols-rounded {
        font-size: 20px;
    }

    .pkg-list li.disabled { 
        color: #64748b; 
        text-decoration: line-through;
    }

    .pkg-list li.disabled .material-symbols-rounded {
        color: #64748b !important;
    }
    
/* Guide Css */
    .guide-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
    }

    .guide-section {
        margin-bottom: 60px;
    }

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

    .section-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 10px;
        background: linear-gradient(to right, #fff, #94a3b8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .section-desc {
        color: #94a3b8;
        font-size: 1.1rem;
    }

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

    .guide-card {
        background: rgba(20, 20, 35, 0.6);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        padding: 30px;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .guide-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .icon-box {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 32px;
    }

    .card-h {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #fff;
    }

    .card-p {
        color: #94a3b8;
        line-height: 1.6;
        margin-bottom: 20px;
        font-size: 0.95rem;
    }

    .example-box {
        background: rgba(0, 0, 0, 0.3);
        padding: 15px;
        border-radius: 12px;
        font-family: 'Monaspace Neon', monospace;
        font-size: 0.85rem;
        color: #fbbf24;
        word-break: break-all;
        border: 1px dashed rgba(255, 255, 255, 0.1);
    }

    .step-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .step-item {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
    }

    .step-num {
        width: 30px;
        height: 30px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: #fff;
        flex-shrink: 0;
    }

    .step-text {
        color: #cbd5e1;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Renk Temaları */
    .theme-blue .icon-box { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
    .theme-purple .icon-box { background: rgba(139, 92, 246, 0.2); color: #a78bfa; }
    .theme-green .icon-box { background: rgba(16, 185, 129, 0.2); color: #34d399; }
    .theme-red .icon-box { background: rgba(239, 68, 68, 0.2); color: #f87171; }
    
/* Privacy Css */
    .privacy-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px;
        text-align: left;
    }
    .privacy-card {
        background: rgba(20, 20, 35, 0.6);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        padding: 40px;
        margin-bottom: 30px;
    }
    .privacy-title {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 10px;
        background: linear-gradient(135deg, #fff, #94a3b8);
        -webkit-background-clip: text;
        color: transparent;
        text-align: center;
    }
    .privacy-subtitle {
        color: #94a3b8;
        text-align: center;
        margin-bottom: 50px;
        font-size: 1.1rem;
    }
    .security-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }
    .security-item {
        background: rgba(255, 255, 255, 0.03);
        padding: 25px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: 0.3s;
    }
    .security-item:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(139, 92, 246, 0.3);
        transform: translateY(-5px);
    }
    .sec-icon {
        font-size: 32px;
        margin-bottom: 15px;
        background: linear-gradient(135deg, #8B5CF6, #0EA5E9);
        -webkit-background-clip: text;
        color: transparent;
    }
    .sec-title {
        color: #fff;
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 10px;
    }
    .sec-desc {
        color: #94a3b8;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .info-section {
        margin-top: 40px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .info-section h3 {
        color: #fff;
        margin-bottom: 15px;
    }
    .info-section p {
        color: #94a3b8;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    .developer-credit {
        text-align: center;
        margin-top: 60px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.05);
        color: #64748b;
        font-size: 0.9rem;
    }
    .dev-link {
        color: #F43F5E; 
        text-decoration: none;
        font-weight: 700;
        transition: 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }
    .dev-link:hover {
        color: #fb7185;
        text-shadow: 0 0 10px rgba(244, 63, 94, 0.3);
    }
/* Setting Page */
    .settings-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        width: 100%;
        max-width: 1000px;
        text-align: left;
    }
    
    .settings-card {
        padding: 40px;
        height: fit-content;
        background: rgba(20, 20, 35, 0.6);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
    }
    
    .profile-header {
        display: flex; align-items: center; gap: 20px;
        margin-bottom: 30px; padding-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .profile-header img {
        border-radius: 50%; border: 3px solid rgba(255,255,255,0.1);
    }
    
    .section-title {
        color: var(--primary); margin-bottom: 15px; font-size: 0.9rem;
        text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
    }
    
    .package-info-box {
        background: rgba(255,255,255,0.03); padding: 20px;
        border-radius: 16px; border: 1px solid rgba(255,255,255,0.05);
    }
    
    .info-row {
        display: flex; justify-content: space-between; margin-bottom: 10px;
    }
    
    .progress-bar {
        width: 100%; height: 6px; background: rgba(255,255,255,0.1);
        border-radius: 10px; overflow: hidden; margin-top: 15px;
    }
    
    .progress-fill {
        height: 100%; background: linear-gradient(90deg, var(--primary), var(--blue));
    }

    .alert-box {
        padding: 15px; border-radius: 12px; margin-bottom: 20px;
        width: 100%; max-width: 900px; text-align: left;
    }
    .alert-success { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
    .alert-error { background: rgba(239, 68, 68, 0.2); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
    
/* Auth Pages (Login, Register, Forgot Password) */
.auth-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    background: #0f1014;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #8b5cf6;
}

.auth-icon span {
    font-size: 30px;
}

.auth-header h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.auth-header p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.alert-box {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.auth-form .input-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    color: #e2e8f0;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.auth-form .input-wrapper {
    position: relative;
}

.auth-form .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
}

.auth-form input {
    width: 100%;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 14px 14px 45px;
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    transition: 0.3s;
    box-sizing: border-box;
}

.auth-form input:focus {
    outline: none;
    border-color: #8b5cf6;
    background: #0f1014;
}

.btn-primary {
    width: 100%;
    background: #8b5cf6;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.2s;
}

.btn-primary:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

.auth-footer {
    margin-top: 25px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.auth-footer p {
    font-size: 0.9rem;
    color: #94a3b8;
}

.auth-footer a {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.auth-footer a:hover {
    color: #a78bfa;
}
/*İndex.php SEO Content Section */
.seo-content-wrapper {
    max-width: 800px;
    margin: 60px auto 20px auto;
    background: rgba(15, 16, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    position: relative;
}

.seo-content {
    color: #94a3b8;
    line-height: 1.8;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.seo-content.collapsed {
    max-height: 150px;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.seo-content h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.seo-content h3 {
    color: #e2e8f0;
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.seo-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.seo-content ul {
    list-style: none;
    padding: 0;
}

.seo-content li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.seo-content li::before {
    content: "•";
    color: #8b5cf6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.seo-content strong {
    color: #cbd5e1;
}

.btn-read-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #a78bfa;
    padding: 10px 20px;
    border-radius: 50px;
    margin: 20px auto 0 auto;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-read-more:hover {
    background: rgba(139, 92, 246, 0.1);
    color: #fff;
    border-color: #8b5cf6;
}
.wit {
    background: #e1e1e1;
}