﻿/* === CREATE PAGE SCOPE === */
.create-page {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Scroll sadece kart içinde */
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top left, #14213d, #000814 70%);
}

    /* Arka plan animasyonu */
    .create-page canvas#networkCanvas {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        opacity: 0.55;
        pointer-events: none;
    }

    /* === LAYER === */
    .create-page .container-ticket {
        position: relative;
        z-index: 5;
        height: 100vh;
        width: 100%;
        display: flex;
        justify-content: center;
        padding-top: 10px;
        box-sizing: border-box;
    }

    /* === KART === */
    .create-page .ticket-card {
        width: 100%;
        max-width: 520px;
        height: calc(100vh - 140px);
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.15);
        backdrop-filter: blur(14px);
        border-radius: 20px;
        overflow-y: auto;
        padding: 25px 28px;
        box-shadow: 0 0 40px rgba(0, 153, 255, 0.25);
    }

        /* Kart scroll barı */
        .create-page .ticket-card::-webkit-scrollbar {
            width: 6px;
        }

        .create-page .ticket-card::-webkit-scrollbar-thumb {
            background: rgba(0, 180, 216, 0.5);
            border-radius: 4px;
        }

    /* === AI Banner === */
    .create-page .ai-banner {
        position: fixed;
        top: 0;
        left: 0;
        height: 60px;
        width: 100%;
        z-index: 20;
        background: rgba(0, 180, 216, 0.1);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255,255,255,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .create-page .ai-banner h2 {
            color: #e0f7ff;
            font-size: 1.05rem;
            font-weight: 600;
            gap: 6px;
            display: flex;
            align-items: center;
        }

    .create-page .ai-pulse {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #00e0ff;
        box-shadow: 0 0 12px #00e0ff;
        animation: pulse 1.7s infinite;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.6);
        opacity: .3;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* === FORM ELEMENTLERİ === */
.create-page .form-group {
    margin-bottom: 14px;
}

    .create-page .form-group label {
        color: #aed9ff;
        font-size: 0.85rem;
        font-weight: 500;
    }

.create-page .ticket-card h3 {
    color: #aed9ff;
    font-weight: 600;
    font-size: 1.5rem;
}

.create-page .form-control {
    width: 100%;
    padding: 8px 12px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
}

    .create-page .form-control:focus {
        border-color: #00b4d8;
        box-shadow: 0 0 7px #00b4d8;
    }

/* AI info box */
.create-page #aiKategoriInfo {
    background: rgba(0, 180, 216, .15);
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 3px solid #00e0ff;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

/* === Submit === */
.create-page .btn-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #00b4d8, #0096c7);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
}

    .create-page .btn-submit:hover {
        background: linear-gradient(90deg, #48cae4, #00b4d8);
        transform: translateY(-2px);
    }

/* === Back Button === */
.create-page .btn-back {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(40,40,40,0.7);
    padding: 10px 18px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    z-index: 20;
    backdrop-filter: blur(10px);
}