:root {
    --bg-dark: #060b14;
    --bg-secondary: #0c1220;
    --card-bg: rgba(16, 22, 36, 0.82);
    --card-border: rgba(117, 180, 255, 0.12);
    --text-main: #edf3ff;
    --text-muted: #98a6c7;
    --accent: #00d9ff;
    --accent-2: #7c5cff;
    --accent-glow: rgba(0, 217, 255, 0.16);
    --radius: 20px;
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(0, 217, 255, 0.07), transparent 28%),
        radial-gradient(circle at top right, rgba(124, 92, 255, 0.08), transparent 24%),
        linear-gradient(180deg, #050912 0%, #09111b 46%, #050912 100%);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
}

body.site-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,0.02), rgba(255,255,255,0.02)),
        url("../images/urun2.png") center center / cover no-repeat;
    opacity: 0.06;
    pointer-events: none;
    z-index: -2;
    filter: blur(1px);
}

body.site-shell::after {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(4, 8, 15, 0.32) 58%, rgba(4, 8, 15, 0.68) 100%);
    pointer-events: none;
    z-index: -1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    background: rgba(6, 11, 20, 0.76);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
}
.logo span {
    color: var(--accent);
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 26px;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.96rem;
    transition: 0.25s ease;
}

nav a:hover {
    color: var(--accent);
}

.nav-highlight {
    border: 1px solid rgba(0, 217, 255, 0.24);
    padding: 8px 16px;
    border-radius: 999px;
    color: var(--accent) !important;
    background: rgba(0, 217, 255, 0.06);
}

.container {
    max-width: 1180px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1320px;
    margin: 0 auto;
}

.section-block {
    padding: 90px 5%;
}

.section-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 55px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--accent);
}

.section-heading h2 {
    font-size: 2.8rem;
    margin-bottom: 14px;
    line-height: 1.2;
}

.section-heading p {
    color: var(--text-muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.hero-clean {
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1.02fr 1fr;
    align-items: center;
    gap: 52px;
    padding: 70px 5% 55px;
    position: relative;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.18;
    pointer-events: none;
}

.hero-left,
.hero-right {
    position: relative;
    z-index: 1;
}

.hero-left h1 {
    font-size: 4.1rem;
    line-height: 1.06;
    margin-bottom: 20px;
    max-width: 720px;
    background: linear-gradient(120deg, #ffffff, #d7e3ff 52%, #95f5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-left p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 680px;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--accent);
    color: var(--accent);
    background: rgba(0, 217, 255, 0.04);
    transition: 0.25s ease;
}

.btn:hover {
    background: var(--accent);
    color: #06121a;
    box-shadow: 0 0 24px var(--accent-glow);
}

.btn-secondary {
    border-color: rgba(255,255,255,0.10);
    color: #fff;
    background: rgba(255,255,255,0.04);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

.hero-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 720px;
}

.hero-info-card {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
}

.hero-info-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.96rem;
}

.hero-info-card span {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.hero-slider-box {
    width: 100%;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.hero-slide {
    display: none;
    animation: fadeSlide 0.55s ease;
}

.hero-slide.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-image-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 70px rgba(0,0,0,0.42);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
}

.hero-image-text {
    text-align: center;
    margin-top: 16px;
    padding: 0 8px;
}

.hero-image-text h3 {
    font-size: 1.18rem;
    margin-bottom: 8px;
}

.hero-image-text p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.96rem;
}

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

.hero-dot {
    width: 11px;
    height: 11px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
    cursor: pointer;
    transition: 0.25s ease;
}

.hero-dot.active {
    background: var(--accent);
    box-shadow: 0 0 14px var(--accent-glow);
}

.hero-empty-box {
    width: 100%;
    max-width: 760px;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 22px;
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px dashed rgba(255,255,255,0.14);
    color: var(--text-muted);
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    transition: 0.25s ease;
}

.step-card:hover {
    transform: translateY(-6px);
}

.step-no {
    color: var(--accent);
    font-size: 0.84rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.step-card h3 {
    font-size: 1.24rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.model-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    transition: 0.25s ease;
}

.model-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 217, 255, 0.22);
}

.card-header {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.model-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

.usage-badge {
    display: block;
    background: rgba(255,255,255,0.04);
    color: var(--accent);
    padding: 12px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-family: 'Courier New', monospace;
    border-left: 3px solid var(--accent);
    margin-bottom: 18px;
}

.card-btn {
    margin-top: auto;
    text-align: center;
    text-decoration: none;
    padding: 13px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    transition: 0.25s ease;
}

.card-btn:hover {
    background: var(--accent);
    color: #06121a;
}

.prompt-library-modern {
    padding: 85px 5%;
}

.prompt-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.prompt-card-modern {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    transition: 0.25s ease;
}

.prompt-card-modern:hover {
    transform: translateY(-8px);
}

.prompt-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(255,255,255,0.03);
    overflow: hidden;
}

.prompt-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.prompt-card-modern:hover .prompt-card-image img {
    transform: scale(1.04);
}

.prompt-card-content {
    padding: 22px;
}

.prompt-chip {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.18);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.prompt-card-content h3 {
    font-size: 1.26rem;
    margin-bottom: 12px;
}

.prompt-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

.prompt-code-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 18px;
}

.prompt-code-box strong {
    display: block;
    margin-bottom: 10px;
    color: var(--accent);
}

.prompt-code-box p {
    color: #dce5f8;
    font-family: 'Courier New', monospace;
    line-height: 1.8;
    font-size: 0.92rem;
}

.detail-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.detail-header {
    text-align: center;
    margin-bottom: 55px;
}

.detail-header h1 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 14px;
}

.detail-header p {
    max-width: 840px;
    margin: 0 auto;
    color: var(--text-muted);
    line-height: 1.8;
}

.detail-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.detail-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.detail-card h3 {
    font-size: 1.24rem;
    margin-bottom: 16px;
}

.detail-card p,
.detail-card ul {
    color: var(--text-muted);
    line-height: 1.8;
}

.detail-card ul {
    list-style: none;
}

.detail-card ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
}

.detail-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.social-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 5%;
    gap: 30px;
    min-height: 80vh;
}

.social-sidebar {
    flex: 1;
    position: relative;
}

.social-feed {
    flex: 2.5;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 18px;
    background: rgba(10, 15, 25, 0.74);
    backdrop-filter: blur(14px);
}

.social-right {
    flex: 1;
}

.create-fab {
    background: var(--accent);
    color: #04131a;
    border: none;
    padding: 15px 28px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px var(--accent-glow);
    position: sticky;
    top: 100px;
}

.feed-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: sticky;
    top: 72px;
    background: rgba(10, 15, 25, 0.86);
    z-index: 10;
    backdrop-filter: blur(12px);
}

.post-card {
    display: flex;
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.post-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.post-author {
    font-weight: 700;
    margin-bottom: 6px;
}

.post-author span {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.9rem;
}

.post-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 999px;
    color: var(--accent);
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.16);
}

.post-text {
    line-height: 1.75;
    margin-bottom: 14px;
}

.post-actions {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.account-menu {
    position: relative;
}

.account-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.account-dropdown {
    position: absolute;
    top: 42px;
    right: 0;
    background: rgba(12, 18, 30, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    width: 170px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.25s ease;
    box-shadow: 0 18px 35px rgba(0,0,0,0.35);
    z-index: 2000;
}

.account-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-dropdown a {
    padding: 13px 15px;
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.account-dropdown a:last-child {
    border-bottom: none;
}

.account-dropdown a:hover {
    color: var(--accent);
    background: rgba(255,255,255,0.03);
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1600;
    background: rgba(4, 8, 15, 0.72);
    backdrop-filter: blur(8px);
}

.modal.show {
    display: block;
}

.modal-content {
    background: rgba(13, 18, 30, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    width: 92%;
    max-width: 420px;
    padding: 28px;
    margin: 8% auto;
    position: relative;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.create-modal-content {
    max-width: 540px;
}

.close-btn {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
}

.auth-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.auth-form {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.auth-form.active {
    display: flex !important;
}

.auth-form input,
.auth-form textarea,
.auth-form select {
    background: #0b1220;
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    font-family: inherit;
    outline: none;
}

.divider {
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    line-height: 0.1em;
    margin: 8px 0 14px;
}

.divider span {
    background: rgba(13, 18, 30, 0.96);
    padding: 0 10px;
    color: #73829f;
    font-size: 0.82rem;
}

.btn-full {
    background: #f1f6ff;
    color: #00b4d8;
    border: 2px solid #00b4d8;
    font-weight: 800;
    padding: 12px;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 12px;
}

footer {
    padding: 60px 5%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(7, 11, 20, 0.58);
}

.footer-about {
    max-width: 820px;
    margin: 0 auto 28px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    line-height: 1.8;
}

.footer-about h3 {
    color: var(--accent);
    margin-bottom: 10px;
}

.footer-about p {
    color: var(--text-muted);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.socials {
    color: var(--text-main);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    transition: 0.25s ease;
}

.back-btn:hover {
    background: var(--accent);
    color: #06121a;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 1100px) {
    .hero-clean {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 34px;
    }

    .hero-left h1,
    .hero-left p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-info-cards {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-info-cards,
    .steps-grid,
    .model-grid,
    .prompt-grid-modern,
    .detail-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        padding: 15px 5%;
    }

    header .logo {
        flex: 1;
    }

    .hamburger {
        display: flex;
        order: 2;
    }

    nav {
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
    }

    nav.open {
        max-height: 320px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    nav ul li {
        width: 100%;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    nav a {
        display: block;
        padding: 14px 5px;
        width: 100%;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-left h1 {
        font-size: 2.45rem;
    }

    .hero-info-cards,
    .steps-grid,
    .model-grid,
    .prompt-grid-modern,
    .detail-content {
        grid-template-columns: 1fr;
    }

    .social-container {
        flex-direction: column;
        padding: 16px 5%;
    }

    .social-sidebar,
    .social-right {
        display: none;
    }

    .feed-header {
        top: 64px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .account-menu {
        width: 100%;
        position: relative;
    }

    .account-btn {
        width: 100%;
        padding: 15px 5px;
        text-align: left;
    }

    .account-dropdown {
        position: static;
        width: 100%;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 6px;
    }

    .account-dropdown.show {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .hero-image-text h3,
    .prompt-card-content h3,
    .detail-header h1 {
        font-size: 1.35rem;
    }

    .modal-content {
        margin: 14% auto;
        padding: 22px;
    }
}

/* ================================
   ADMIN PANEL FORM TEMASI
================================ */

.step-card form input[type="text"],
.step-card form input[type="email"],
.step-card form input[type="password"],
.step-card form select,
.step-card form textarea {
    width: 100%;
    background: rgba(10, 16, 28, 0.92);
    color: #eef4ff;
    border: 1px solid rgba(0, 217, 255, 0.14);
    border-radius: 14px;
    padding: 14px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.98rem;
    outline: none;
    transition: 0.25s ease;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.01);
}

.step-card form input[type="text"]::placeholder,
.step-card form input[type="email"]::placeholder,
.step-card form input[type="password"]::placeholder,
.step-card form textarea::placeholder {
    color: #7f90b4;
}

.step-card form input[type="text"]:focus,
.step-card form input[type="email"]:focus,
.step-card form input[type="password"]:focus,
.step-card form select:focus,
.step-card form textarea:focus {
    border-color: rgba(0, 217, 255, 0.42);
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.08);
    background: rgba(11, 18, 31, 0.98);
}

.step-card form textarea {
    min-height: 180px;
    resize: vertical;
    line-height: 1.7;
}

/* Select okunu daha temiz göster */
.step-card form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #9fb7d9 50%),
        linear-gradient(135deg, #9fb7d9 50%, transparent 50%);
    background-position:
        calc(100% - 20px) calc(50% - 3px),
        calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
}

/* Dosya seç alanı */
.step-card form input[type="file"] {
    width: 100%;
    background: rgba(10, 16, 28, 0.92);
    color: #cfe1ff;
    border: 1px solid rgba(0, 217, 255, 0.14);
    border-radius: 14px;
    padding: 12px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    transition: 0.25s ease;
}

.step-card form input[type="file"]:hover {
    border-color: rgba(0, 217, 255, 0.28);
    background: rgba(12, 20, 34, 0.98);
}

/* Dosya seç butonu */
.step-card form input[type="file"]::file-selector-button {
    background: linear-gradient(135deg, rgba(0,217,255,0.16), rgba(124,92,255,0.18));
    color: #eef6ff;
    border: 1px solid rgba(0,217,255,0.22);
    border-radius: 10px;
    padding: 10px 14px;
    margin-right: 12px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    transition: 0.25s ease;
}

.step-card form input[type="file"]::file-selector-button:hover {
    background: linear-gradient(135deg, #00d9ff, #7c5cff);
    color: #06121a;
}

/* Admin panel buton düzeni */
.step-card form .btn,
.step-card form .btn-secondary {
    min-width: 170px;
}

/* Form alanları arasında daha iyi boşluk */
.step-card form {
    gap: 16px !important;
}

/* Küçük ekranlarda daha dengeli görünüm */
@media (max-width: 768px) {
    .step-card form input[type="text"],
    .step-card form input[type="email"],
    .step-card form input[type="password"],
    .step-card form select,
    .step-card form textarea,
    .step-card form input[type="file"] {
        font-size: 0.95rem;
        padding: 13px 14px;
    }

    .step-card form .btn,
    .step-card form .btn-secondary {
        width: 100%;
    }
}

/* ================================
   ADMIN PANEL - FULL THEME
================================ */

.admin-form-card,
.admin-list-card {
    padding: 32px;
    border-radius: 24px;
    margin-bottom: 30px;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.admin-form input[type="text"],
.admin-form input[type="email"],
.admin-form input[type="password"],
.admin-form select,
.admin-form textarea {
    width: 100%;
    background: rgba(10, 16, 28, 0.92);
    color: #eef4ff;
    border: 1px solid rgba(0, 217, 255, 0.14);
    border-radius: 14px;
    padding: 14px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.98rem;
    outline: none;
    transition: 0.25s ease;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.01);
}

.admin-form input[type="text"]::placeholder,
.admin-form input[type="email"]::placeholder,
.admin-form input[type="password"]::placeholder,
.admin-form textarea::placeholder {
    color: #7f90b4;
}

.admin-form input[type="text"]:focus,
.admin-form input[type="email"]:focus,
.admin-form input[type="password"]:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    border-color: rgba(0, 217, 255, 0.42);
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.08);
    background: rgba(11, 18, 31, 0.98);
}

.admin-form textarea {
    min-height: 180px;
    resize: vertical;
    line-height: 1.7;
}

.admin-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #9fb7d9 50%),
        linear-gradient(135deg, #9fb7d9 50%, transparent 50%);
    background-position:
        calc(100% - 20px) calc(50% - 3px),
        calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
}

.admin-form input[type="file"] {
    width: 100%;
    background: rgba(10, 16, 28, 0.92);
    color: #cfe1ff;
    border: 1px solid rgba(0, 217, 255, 0.14);
    border-radius: 14px;
    padding: 12px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    transition: 0.25s ease;
}

.admin-form input[type="file"]:hover {
    border-color: rgba(0, 217, 255, 0.28);
    background: rgba(12, 20, 34, 0.98);
}

.admin-form input[type="file"]::file-selector-button {
    background: linear-gradient(135deg, rgba(0,217,255,0.16), rgba(124,92,255,0.18));
    color: #eef6ff;
    border: 1px solid rgba(0,217,255,0.22);
    border-radius: 10px;
    padding: 10px 14px;
    margin-right: 12px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    transition: 0.25s ease;
}

.admin-form input[type="file"]::file-selector-button:hover {
    background: linear-gradient(135deg, #00d9ff, #7c5cff);
    color: #06121a;
}

.admin-form-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-form .btn,
.admin-form .btn-secondary {
    min-width: 170px;
}

.admin-current-image-box {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 18px;
}

.admin-current-image {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
}

.admin-current-image-info {
    flex: 1;
    min-width: 220px;
}

.admin-current-image-title {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 8px;
}

.admin-current-image-info p {
    color: #98a6c7;
    line-height: 1.7;
}

.admin-section-title {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 24px;
}

.admin-prompt-list {
    display: grid;
    gap: 24px;
}

.admin-prompt-item {
    background: rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.admin-prompt-main {
    flex: 1;
    min-width: 260px;
}

.admin-prompt-main h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.admin-prompt-category {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 12px;
}

.admin-prompt-text {
    color: #dbe4f7;
    line-height: 1.8;
}

.admin-prompt-date {
    margin-top: 14px;
    color: #7f8cab;
    font-size: 0.88rem;
}

.admin-prompt-side {
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-prompt-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
}

.admin-edit-btn,
.admin-delete-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: 0.25s ease;
}

.admin-edit-btn {
    background: #0aa3c2;
}

.admin-edit-btn:hover {
    background: #08bce0;
}

.admin-delete-btn {
    background: #c40000;
}

.admin-delete-btn:hover {
    background: #e10000;
}

@media (max-width: 768px) {
    .admin-form-card,
    .admin-list-card {
        padding: 22px;
        border-radius: 20px;
    }

    .admin-form input[type="text"],
    .admin-form input[type="email"],
    .admin-form input[type="password"],
    .admin-form select,
    .admin-form textarea,
    .admin-form input[type="file"] {
        font-size: 0.95rem;
        padding: 13px 14px;
    }

    .admin-form .btn,
    .admin-form .btn-secondary {
        width: 100%;
    }

    .admin-prompt-side {
        width: 100%;
    }

    .admin-prompt-image {
        height: auto;
        max-height: 280px;
    }

    .admin-current-image {
        width: 100%;
        max-width: 220px;
        height: auto;
    }
}


/* ================================
   SOSYAL MODAL - YENI GONDERI
================================ */

.social-create-modal {
    max-width: 620px;
    padding: 30px;
    border-radius: 24px;
}

.social-create-header {
    text-align: center;
    margin-bottom: 22px;
}

.social-create-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: #f2f6ff;
}

.social-create-header p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.96rem;
}

.social-create-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.post-type-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.post-type-btn {
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: #dce7ff;
    border-radius: 14px;
    padding: 14px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.post-type-btn:hover {
    border-color: rgba(0,217,255,0.26);
    background: rgba(0,217,255,0.05);
}

.post-type-btn.active {
    background: linear-gradient(135deg, rgba(0,217,255,0.18), rgba(124,92,255,0.16));
    border-color: rgba(0,217,255,0.32);
    color: #ffffff;
    box-shadow: 0 0 0 3px rgba(0,217,255,0.06);
}

.social-create-textarea {
    width: 100%;
    background: rgba(10, 16, 28, 0.94);
    color: #eef4ff;
    border: 1px solid rgba(0, 217, 255, 0.14);
    border-radius: 16px;
    padding: 16px 18px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.98rem;
    line-height: 1.75;
    outline: none;
    resize: vertical;
    min-height: 180px;
    transition: 0.25s ease;
}

.social-create-textarea::placeholder {
    color: #7f90b4;
}

.social-create-textarea:focus {
    border-color: rgba(0, 217, 255, 0.42);
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.08);
    background: rgba(11, 18, 31, 0.98);
}

.social-submit-btn {
    width: 100%;
    border: 1px solid rgba(0,217,255,0.28);
    background: linear-gradient(135deg, rgba(0,217,255,0.18), rgba(124,92,255,0.16));
    color: #f3f8ff;
    border-radius: 16px;
    padding: 15px 18px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.25s ease;
}

.social-submit-btn:hover {
    background: linear-gradient(135deg, #00d9ff, #7c5cff);
    color: #06121a;
    box-shadow: 0 0 24px rgba(0,217,255,0.18);
}

@media (max-width: 768px) {
    .social-create-modal {
        width: 92%;
        padding: 22px;
        border-radius: 20px;
    }

    .social-create-header h2 {
        font-size: 1.6rem;
    }

    .post-type-switch {
        grid-template-columns: 1fr;
    }

    .post-type-btn {
        width: 100%;
    }

    .social-create-textarea {
        min-height: 150px;
    }
}


/* ================================
   SITE TOAST BILDIRIM
================================ */

.site-toast {
    position: fixed;
    top: 92px;
    right: 24px;
    z-index: 3000;
    min-width: 280px;
    max-width: 420px;
    background: rgba(10, 16, 28, 0.96);
    border: 1px solid rgba(0, 217, 255, 0.24);
    color: #eef6ff;
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    animation: toastIn 0.35s ease;
}

.site-toast.success {
    border-color: rgba(0, 217, 255, 0.28);
}

.site-toast.error {
    border-color: rgba(255, 80, 100, 0.38);
}

.site-toast span {
    font-weight: 700;
    line-height: 1.5;
}

.site-toast button {
    background: transparent;
    border: none;
    color: #9fb0d0;
    font-size: 1.4rem;
    cursor: pointer;
    transition: 0.25s ease;
}

.site-toast button:hover {
    color: #fff;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(-12px) translateX(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

/* ADMIN SOSYAL SIL BUTONU */
.post-admin-delete {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 700;
    transition: 0.25s ease;
}

.post-admin-delete:hover {
    color: #ff3b3b;
}

@media (max-width: 768px) {
    .site-toast {
        top: 80px;
        right: 14px;
        left: 14px;
        min-width: auto;
        max-width: none;
    }
}



.contact-form {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(16, 22, 36, 0.82);
    border: 1px solid rgba(117, 180, 255, 0.12);
    border-radius: 24px;
    padding: 32px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(10, 16, 28, 0.92);
    color: #eef4ff;
    border: 1px solid rgba(0, 217, 255, 0.14);
    border-radius: 14px;
    padding: 14px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.98rem;
    outline: none;
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #7f90b4;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(0, 217, 255, 0.42);
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.08);
}

.form-message {
    max-width: 720px;
    margin: 0 auto 20px;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 700;
    text-align: center;
}

.form-message.success {
    background: rgba(0, 217, 255, 0.12);
    color: #00d9ff;
    border: 1px solid rgba(0, 217, 255, 0.28);
}

.form-message.error {
    background: rgba(255, 80, 100, 0.12);
    color: #ff6b6b;
    border: 1px solid rgba(255, 80, 100, 0.28);
}

/* Static GitHub Pages additions */
.placeholder-art{background:linear-gradient(135deg,rgba(0,217,255,.16),rgba(124,92,255,.18));display:flex;align-items:center;justify-content:center;color:#edf3ff;font-weight:800;letter-spacing:.04em;text-align:center;padding:24px;min-height:180px}.static-note{margin:14px auto 0;max-width:760px;color:#98a6c7;text-align:center}.demo-admin-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}.site-toast{position:fixed;top:88px;right:24px;z-index:3000;background:rgba(13,18,30,.98);border:1px solid rgba(0,217,255,.24);color:#edf3ff;border-radius:14px;padding:14px 16px;box-shadow:0 18px 40px rgba(0,0,0,.35)}.site-toast.error{border-color:rgba(255,80,120,.42)}.admin-current-image{max-width:180px;border-radius:14px}.admin-prompt-list{display:grid;gap:16px}.admin-prompt-item{display:flex;gap:18px;justify-content:space-between;border:1px solid rgba(255,255,255,.06);border-radius:18px;padding:18px;background:rgba(255,255,255,.03)}.admin-prompt-side img{width:150px;aspect-ratio:16/9;object-fit:cover;border-radius:12px}.post-admin-delete{color:#ff7b9b;text-decoration:none}.social-create-form{display:flex;flex-direction:column;gap:14px}.social-create-textarea{background:#0b1220;border:1px solid rgba(255,255,255,.08);color:#fff;padding:14px;border-radius:12px;font-family:inherit}.social-submit-btn{border:1px solid var(--accent);background:var(--accent);color:#06121a;padding:14px;border-radius:999px;font-weight:800;cursor:pointer}.post-type-switch{display:flex;gap:10px}.post-type-btn{flex:1;border:1px solid rgba(0,217,255,.18);background:rgba(0,217,255,.05);color:var(--accent);border-radius:999px;padding:10px;font-weight:700;cursor:pointer}.post-type-btn.active{background:var(--accent);color:#06121a}.auth-standalone-section{padding:80px 5%;min-height:70vh}.auth-standalone-container{max-width:460px;margin:0 auto;background:var(--card-bg);border:1px solid var(--card-border);border-radius:24px;padding:30px;box-shadow:var(--shadow)}.social-btn{display:flex;align-items:center;justify-content:center;gap:10px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.04);color:#fff;border-radius:12px;padding:12px;font-family:inherit;font-weight:700;cursor:pointer}.social-btn img{width:18px;height:18px}.form-message{padding:14px;border-radius:14px;margin-bottom:18px;text-align:center}.form-message.success{background:rgba(0,217,255,.08);border:1px solid rgba(0,217,255,.18)}
