* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}


body {
    height:100vh;
    background:#0b0f19;
    color:white;
}


.app {
    display:flex;
    height:100vh;
}


/* Menü */

.sidebar {
    width:260px;
    background:#111827;
    padding:20px;
    border-right:1px solid #273244;
}


.brand {
    font-size:28px;
    font-weight:bold;
    margin-bottom:30px;
}


.new-chat {
    width:100%;
    padding:14px;
    background:#2563eb;
    color:white;
    border:none;
    border-radius:12px;
    cursor:pointer;
    font-size:16px;
}


.history {
    margin-top:30px;
    color:#9ca3af;
}



/* Ana bölüm */

.main {
    flex:1;
    display:flex;
    flex-direction:column;
}


.topbar {
    height:70px;
    background:#111827;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 25px;
}



/* Sohbet */

.chat-area {
    flex:1;
    padding:25px;
    overflow-y:auto;
}



.message {
    display:flex;
    gap:12px;
    margin-bottom:25px;
    max-width:80%;
}


.message.user {

    margin-left:auto;
    flex-direction:row-reverse;

}



.message.user .text {

    background:#2563eb;

}



.avatar {

    min-width:42px;
    height:42px;

    border-radius:50%;

    background:#1e40af;

    display:flex;
    align-items:center;
    justify-content:center;

}



.text {

    background:#1f2937;

    padding:15px 18px;

    border-radius:18px;

    line-height:1.6;

}



/* Yazma alanı */


.input-area {

    height:90px;

    background:#111827;

    padding:20px;

    display:flex;

    gap:12px;

}



.input-area input {

    flex:1;

    border:none;

    outline:none;

    border-radius:15px;

    padding:15px;

    font-size:16px;

}



.input-area button {

    width:130px;

    background:#2563eb;

    color:white;

    border:none;

    border-radius:15px;

    cursor:pointer;

}


.input-area button:hover {

    background:#1d4ed8;

}
/* Mobil cihazlar için */

@media (max-width: 600px) {

    body {
        overflow: hidden;
    }

    .app {
        width: 100%;
        height: 100vh;
    }

    .sidebar {
        display: none;
    }

    .main {
        width: 100%;
        height: 100vh;
    }

    .topbar {
        padding: 15px;
    }

    .topbar h2 {
        font-size: 20px;
    }

    .chat-area {
        padding: 10px;
        height: calc(100vh - 130px);
        overflow-y: auto;
    }

    .message {
        max-width: 90%;
        font-size: 15px;
    }

    .input-area {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 5px;
        background: white;
    }

#userInput {
    flex: 1;
    font-size: 13px;
    min-width: 0;
    padding: 6px;
}  

 #sendButton,
 #micButton {
        padding: 6px;
        font-size: 12px;
    }

    #imageInput {
        display: none;
    }

}






/* =========================
   OrionX Premium AI Design
========================= */

body {
    background: #f5f7fb;
    font-family: Arial, sans-serif;
}

.app {
    border-radius: 20px;
    overflow: hidden;
}

.sidebar {
    background: #111827;
    color: white;
}

.brand {
    font-size: 24px;
    font-weight: bold;
}

.new-chat {
    border-radius: 12px;
    padding: 12px;
    margin: 15px;
    background: #2563eb;
    color: white;
    border: none;
}

.chat-area {
    background: #f8fafc;
}

.message.bot {
    background: white;
    border-radius: 18px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.avatar {
    border-radius: 50%;
}

.input-area {
    background: white;
    border-radius: 25px;
    margin: 10px;
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,.10);
}

#userInput {
    border: none;
    outline: none;
    background: #f1f5f9;
    border-radius: 20px;
    padding: 12px;
}

#sendButton {
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
}

#micButton {
    border-radius: 50%;
    border: none;
}

.ai-tools {
    display: flex;
    gap: 12px;
    padding: 15px;
}

.tool-card {
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}





/* =================================
   ORIONX AI PREMIUM INTERFACE
================================= */

body {
    background: linear-gradient(135deg,#020617,#111827);
    color:#fff;
}

.app {
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
}

.sidebar {
    background:linear-gradient(180deg,#020617,#1e293b);
}

.brand {
    color:white;
    font-size:28px;
    text-shadow:0 0 15px #38bdf8;
}

.chat-area {
    background:radial-gradient(circle at top,#1e293b,#020617);
}

.message.bot {
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.15);
    color:white;
    box-shadow:0 10px 40px rgba(0,0,0,.4);
}

.message.user {
    background:linear-gradient(135deg,#2563eb,#06b6d4);
    color:white;
}

.input-area {
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.2);
}

#userInput {
    background:rgba(255,255,255,.15);
    color:white;
}

#sendButton {
    background:linear-gradient(135deg,#06b6d4,#2563eb);
    box-shadow:0 0 20px #06b6d4;
}

.tool-card {
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.2);
    color:white;
    transition:.3s;
}

.tool-card:hover {
    transform:translateY(-5px);
    box-shadow:0 0 30px #06b6d4;
}




/* ==================================
   ORIONX ULTRA PREMIUM AI UI
================================== */

body {
    background:
    radial-gradient(circle at top,#1e3a8a,#020617 60%);
    font-family: "Inter", Arial, sans-serif;
}


/* Cam uygulama */

.app {
    background:
    rgba(255,255,255,0.05);

    backdrop-filter:
    blur(30px);

    border:
    1px solid rgba(255,255,255,.15);

    box-shadow:
    0 0 80px rgba(37,99,235,.25);
}


/* Logo */

.brand {

    font-size:30px;
    font-weight:800;

    background:
    linear-gradient(
    90deg,
    #38bdf8,
    #818cf8,
    #22d3ee
    );

    -webkit-background-clip:text;
    color:transparent;

}


/* Sohbet alanı */

.chat-area {

    background:
    linear-gradient(
    180deg,
    rgba(15,23,42,.9),
    rgba(2,6,23,.95)
    );

}


/* AI mesaj */

.message.bot {

    background:
    linear-gradient(
    145deg,
    rgba(255,255,255,.16),
    rgba(255,255,255,.05)
    );

    border-radius:22px;

    border:
    1px solid rgba(255,255,255,.2);

}


/* Input */

.input-area {

    border-radius:30px;

    background:
    rgba(255,255,255,.08);

    box-shadow:
    0 0 30px rgba(56,189,248,.2);

}


/* Gönder butonu */

#sendButton {

    width:45px;
    height:45px;

    border-radius:50%;

    color:white;

    font-weight:bold;

    background:
    linear-gradient(
    135deg,
    #06b6d4,
    #2563eb
    );

    box-shadow:
    0 0 25px #06b6d4;

}


/* AI araç kartları */

.tool-card {

    border-radius:25px;

    background:
    linear-gradient(
    145deg,
    rgba(255,255,255,.15),
    rgba(255,255,255,.05)
    );

    box-shadow:
    inset 0 0 20px rgba(255,255,255,.1),
    0 20px 40px rgba(0,0,0,.4);

}







/* ORIONX PREMIUM AI TOOLS */

.ai-tools {
    display:flex;
    gap:20px;
    padding:20px;
    justify-content:center;
    flex-wrap:wrap;
}

.tool-card {
    width:190px;
    padding:20px;
    text-align:center;

    background:
    rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    border-radius:25px;

    border:
    1px solid rgba(255,255,255,.18);

    box-shadow:
    0 15px 40px rgba(0,0,0,.35);

    transition:.3s;
}

.tool-card:hover {
    transform:translateY(-8px);
    box-shadow:
    0 0 30px #06b6d4;
}

.tool-icon {
    font-size:45px;
}

.tool-card h3 {
    font-size:17px;
}

.tool-card p {
    font-size:13px;
    opacity:.8;
}

.tool-btn {
    margin-top:12px;
    padding:10px 25px;

    border:none;
    border-radius:30px;

    color:white;

    background:
    linear-gradient(
    135deg,
    #06b6d4,
    #2563eb
    );

    box-shadow:
    0 0 20px #06b6d4;
}


/* OrionX Mobil Premium Ayarlar */

@media (max-width: 600px) {

    .ai-tools {
        flex-direction: column;
        align-items: center;
        padding: 10px;
        gap: 12px;
    }

    .tool-card {
        width: 90%;
        padding: 15px;
    }

    .tool-icon {
        font-size: 35px;
    }

    .tool-card h3 {
        font-size: 15px;
    }

    .tool-card p {
        font-size: 12px;
    }

    .input-area {
        padding: 5px;
    }

    #userInput {
        font-size: 13px;
        padding: 8px;
    }

    #sendButton,
    #micButton {
        width: 38px;
        height: 38px;
        padding: 5px;
        font-size: 12px;
    }

}

/* ORIONX MOBILE CLEAN LAYOUT */

@media (max-width: 600px) {

    .app {
        width: 100%;
        height: 100vh;
        display: block;
    }

    .sidebar {
        display: none;
    }

    .main {
        width: 100%;
        height: 100vh;
    }

    .topbar {
        height: 55px;
        padding: 10px 15px;
    }

    .topbar h2 {
        font-size: 18px;
    }

    .chat-area {
        height: calc(100vh - 180px);
        padding: 10px;
        overflow-y: auto;
    }

    .message {
        max-width: 85%;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .ai-tools {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .tool-card {
        width: 100%;
        box-sizing: border-box;
        padding: 12px;
    }

    .input-area {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        box-sizing: border-box;
        padding: 6px;
    }

    #imageInput {
        display: none;
    }

    #userInput {
        font-size: 14px;
        height: 38px;
        padding: 6px;
    }

    #sendButton,
    #micButton {
        width: 36px;
        height: 36px;
        font-size: 12px;
        padding: 5px;
    }

}


/* OrionX Mobile AI Cards */

@media (max-width: 600px) {

    .ai-tools {
        display:flex;
        flex-direction:row;
        gap:8px;
        padding:5px;
        justify-content:center;
    }


    .tool-card {

        width:45%;
        padding:10px;
        border-radius:15px;

    }


    .tool-icon {

        font-size:25px;

    }


    .tool-card h3 {

        font-size:12px;
        margin:5px 0;

    }


    .tool-card p {

        display:none;

    }


    .tool-btn {

        padding:6px 12px;
        font-size:11px;
        border-radius:20px;

    }

}



/* ORIONX TELEFON DÜZENİ */

@media (max-width:600px){

    .input-area{
        position:fixed;
        bottom:10px;
        left:10px;
        right:10px;
        width:auto;
        border-radius:25px;
        padding:8px;
    }


    .chat-box{
        display:flex;
        align-items:center;
        gap:8px;
        width:100%;
    }


    #userInput{
        flex:1;
        height:38px;
        border-radius:20px;
        padding:0 15px;
        font-size:14px;
    }


    #micButton,
    #sendButton{

        width:38px;
        height:38px;
        min-width:38px;
        border-radius:50%;
        padding:0;
        font-size:14px;

    }


    .ai-tools{

        margin-bottom:80px;
        padding:10px;

    }


    .tool-card{

        padding:10px;
        border-radius:18px;

    }


    .tool-card h3{

        font-size:13px;

    }


    .tool-btn{

        padding:6px 15px;
        font-size:11px;

    }

}



/* OrionX Mobil Küçük AI Kartları */

@media (max-width:600px){

    .ai-tools{
        display:flex;
        flex-direction:row;
        justify-content:center;
        gap:8px;
        padding:5px;
    }


    .tool-card{

        width:45%;
        padding:8px;
        border-radius:15px;

    }


    .tool-icon{

        font-size:22px;

    }


    .tool-card h3{

        font-size:11px;
        margin:5px 0;

    }


    .tool-card p{

        display:none;

    }


    .tool-btn{

        padding:5px 10px;
        font-size:10px;
        border-radius:15px;

    }

}


/* SADECE MOBIL AI KARTLARI KUCULTME */

@media (max-width:600px){

    .ai-tools{
        display:flex;
        flex-direction:row;
        justify-content:center;
        align-items:center;
        gap:6px;
        padding:5px;
    }


    .tool-card{

        width:120px;
        min-height:80px;
        padding:8px;
        border-radius:14px;
        text-align:center;

    }


    .tool-icon{

        font-size:22px;

    }


    .tool-card h3{

        font-size:11px;
        margin:3px;

    }


    .tool-card p{

        display:none;

    }


    .tool-btn{

        padding:4px 10px;
        font-size:10px;
        border-radius:12px;

    }

}



/* ORIONX CHATGPT STYLE MOBILE */

@media (max-width:600px){

body{
    overflow:hidden;
}


.app{
    height:100vh;
}


.chat-area{
    height:calc(100vh - 150px);
    padding:15px;
    overflow-y:auto;
}


/* Mesaj kutusu */

.input-area{

    position:fixed;
    bottom:10px;
    left:10px;
    right:10px;

    width:auto;

    border-radius:30px;

    padding:8px;

}


/* Yazı alanı */

#userInput{

    height:42px;

    border-radius:25px;

    padding-left:15px;

    font-size:14px;

}


/* Butonlar */

#micButton,
#sendButton{

    width:42px;
    height:42px;

    border-radius:50%;

    padding:0;

}


/* AI araçları */

.ai-tools{

    position:fixed;

    bottom:75px;

    left:0;

    width:100%;

    display:flex;

    justify-content:center;

    gap:8px;

}


.tool-card{

    width:100px;

    padding:8px;

    border-radius:15px;

}


.tool-icon{

    font-size:20px;

}


.tool-card h3{

    font-size:10px;

}


.tool-card p{

    display:none;

}


.tool-btn{

    padding:5px 8px;

    font-size:10px;

}

}


/* OrionX Dosya Butonu Gizleme */

#imageInput {
    display:none;
}


/* Mobil input düzeni */

.chat-box label {

    width:38px;
    height:38px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
    linear-gradient(135deg,#8b5cf6,#06b6d4);

    color:white;

    font-size:18px;

}


/* OrionX ChatGPT Mobile Input */

.chat-box {
    display:flex;
    align-items:center;
    gap:8px;

    background:white;
    border-radius:28px;

    padding:6px 10px;

    width:100%;
}


#plusButton {

    width:34px;
    height:34px;

    border-radius:50%;

    border:none;

    font-size:22px;

    background:#eee;

}


#userInput {

    flex:1;

    border:none;

    outline:none;

    font-size:14px;

}


#micButton,
#sendButton {

    width:36px;
    height:36px;

    border-radius:50%;

    border:none;

    display:flex;
    align-items:center;
    justify-content:center;

}


#sendButton {

    background:#111;
    color:white;

}


@media(max-width:600px){

.input-area{

    left:10px;
    right:10px;
    width:auto;

}

}




/* ORIONX CHATGPT STYLE INPUT */

.input-area {
    position: fixed;
    bottom: 12px;
    left: 10px;
    right: 10px;
    width: auto;
    padding: 0;
    background: transparent;
}


.chat-box {
    display: flex;
    align-items: center;
    gap: 8px;

    background: white;

    border-radius: 30px;

    padding: 8px 10px;

    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}


#plusButton,
#micButton,
#sendButton {

    width: 38px;
    height: 38px;

    border-radius: 50%;

    border: none;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #202123;

    color: white;

    font-size: 18px;

}


#userInput {

    flex: 1;

    border: none;

    outline: none;

    background: transparent;

    color: #111;

    font-size: 14px;

    height: 40px;

}


#userInput::placeholder {

    color: #777;

}


#micButton svg {





/* ORIONX AI TOOLS MINI MOBILE */

@media(max-width:600px){

.ai-tools {

    display:flex;
    justify-content:space-between;
    align-items:center;

    width:100%;

    padding:5px 6px;

    gap:5px;

}


.tool-card {

    width:95px;

    padding:5px;

    border-radius:12px;

    text-align:center;

}


.tool-icon {

    font-size:18px;

}


.tool-card h3 {

    font-size:10px;

    margin:2px 0;

}


.tool-card p {

    display:none;

}


.tool-btn {

    padding:3px 8px;

    font-size:9px;

    border-radius:12px;

}

}




/* ORIONX PREMIUM CHAT INPUT */

@media(max-width:600px){

.input-area{

    position:fixed;
    bottom:10px;
    left:10px;
    right:10px;

    width:auto;

    padding:6px;

    background:transparent;

}


.chat-box{

    display:flex;

    align-items:center;

    gap:8px;

    background:white;

    border-radius:25px;

    padding:6px 10px;

    box-shadow:
    0 4px 18px rgba(0,0,0,.15);

}


#userInput{

    flex:1;

    height:38px;

    border:none;

    outline:none;

    background:transparent;

    color:#111;

    font-size:13px;

    padding:0 10px;

}


#userInput::placeholder{

    color:#777;

}


#plusButton,
#micButton,
#sendButton{

    width:36px;

    height:36px;

    border-radius:50%;

    border:none;

    display:flex;

    align-items:center;

    justify-content:center;

}


#plusButton{

    background:#f0f0f0;

    color:#222;

    font-size:22px;

}


#micButton{

    background:#f0f0f0;

    color:#222;

}


#sendButton{

    background:#111;

    color:white;

    font-size:16px;

}

}



/* SADECE MESAJ KUTUSU KUCULT */

@media(max-width:600px){

#userInput {

    height:30px !important;

    font-size:12px !important;

    padding:4px 8px !important;

}


.chat-box {

    padding:4px 8px !important;

    border-radius:22px !important;

}


#plusButton,
#micButton,
#sendButton {

    width:32px !important;

    height:32px !important;

    font-size:14px !important;

}

}
