input, textarea {
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

body {
    background-image: url("https://kobramt2.com/images/bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: #eee;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background-color: #0b0b0b;
}

/* 2. NAVBAR VE LOGO */
.navbar { 
    background: #1a1a1a; 
    border: none; 
    border-bottom: 2px solid #f39c12; 
    min-height: 140px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    overflow: visible !important;
}

.navbar a {
    position: relative;
    display: inline-block !important;
    text-decoration: none !important;
    overflow: visible !important;
    z-index: 100;
}

.navbar a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: portalPulse 2s infinite;
    pointer-events: none;
}

.navbar a::after {
    content: "KobraMt2";
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #f39c12;
    color: #000;
    padding: 8px 18px;
    border-radius: 10px;
    font-weight: 900;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    white-space: nowrap;
    opacity: 0;
    z-index: 99999 !important;
    border: 2px solid #000;
    box-shadow: 0 10px 30px rgba(0,0,0,1);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar a:hover::after {
    top: 140px; 
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}

.logo-img {
    max-height: 160px;
    width: auto;
    position: relative;
    z-index: 50;
    animation: extremeGlow 3s infinite alternate, floating 4s ease-in-out infinite;
    filter: drop-shadow(0px 0px 15px rgba(243, 156, 18, 0.5));
}

/* 3. İÇERİK YAPISI */
.main-container { 
    margin-top: 50px; 
    background: rgba(26, 26, 26, 0.9); 
    padding: 30px; 
    border: 1px solid #333; 
    box-shadow: 0 0 20px rgba(0,0,0,0.8); 
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f39c12;
}

.form-control { 
    background: #333; 
    border: 1px solid #444; 
    color: #fff; 
    height: 45px;
}

.btn-kobra { 
    background: #f39c12; 
    color: #000; 
    font-weight: 700; 
    text-transform: uppercase; 
    border: none;
    padding: 12px;
    width: 100%;
    transition: 0.3s;
}

.btn-kobra:hover { background: #e67e22; color: #fff; transform: translateY(-2px); }

.kurumsal-footer { 
    background: #080808 !important; 
    border-top: 3px solid #f39c12 !important; 
    padding: 60px 0 30px 0 !important; 
    color: #eee; 
    font-family: 'Inter', sans-serif;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    left: 0;
    clear: both;
    display: block;
    margin-top: 50px;
    -webkit-user-select: none;
    -ms-user-select: none;    
    user-select: none;           
    cursor: default;             
}

.footer-title {
    color: #f39c12; 
    font-family: 'Oswald', sans-serif; 
    text-transform: uppercase; 
    margin-bottom: 20px; 
    font-size: 18px;
    letter-spacing: 1px;
}

.footer-text { font-size: 13px; color: #999; line-height: 22px; }

.admin-badge {
    background: linear-gradient(45deg, #1a1a1a, #000);
    border: 1px solid #333;
    padding: 10px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 10px;
}

.ddos-badge {
    margin-top: 15px;
    padding: 8px 12px;
    background: rgba(46, 204, 113, 0.05);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 4px;
    display: inline-block;
}

.pulse { 
    display: inline-block; 
    width: 9px; 
    height: 9px; 
    border-radius: 50%; 
    background: #2ecc71; 
    margin-right: 7px; 
    animation: pulse-animation 2s infinite; 
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

@keyframes portalPulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

@keyframes extremeGlow {
    0% { filter: drop-shadow(0px 0px 10px rgba(243, 156, 18, 0.4)); }
    100% { filter: drop-shadow(0px 0px 30px rgba(243, 156, 18, 0.8)); }
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@media (max-width: 768px) {
    .kurumsal-footer {
        width: 100%;
        margin-left: 0;
        text-align: center !important;
    }

    .text-mobile-center {
        text-align: center !important;
    }
    
    .footer-title {
        text-align: center !important;
    }

    .col-md-4 {
        margin-bottom: 40px;
    }

    .logo-img { max-height: 100px; }
    .navbar { min-height: 110px; }
}

.dropdown-menu {
    background-color: #1a1a1a !important;
    border: 1px solid #f39c12 !important;
    border-radius: 4px;
    margin-top: 10px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.9);
    width: 100%;

    display: block; 
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    color: #eee !important;
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    border-bottom: 1px solid #333;
    transition: all 0.2s ease;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.dropdown-menu li a:hover {
    background-color: rgba(243, 156, 18, 0.15) !important;
    color: #f39c12 !important;
    padding-left: 25px;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-header {
    color: #f39c12 !important;
    background: #000;
    padding: 10px;
    font-size: 11px;
    font-weight: bold;
    border-bottom: 1px solid #f39c12;
}

#indirHizliModal .modal-content {
    box-shadow: 0 0 25px rgba(243, 156, 18, 0.4);
    border-radius: 8px;
}

#indirUrlInput::selection {
    background: #f39c12;
    color: #000;
}

.modal-open {
    padding-right: 0 !important;
}

.blink-red {
    animation: blink-animation 1.5s steps(5, start) infinite;
    -webkit-animation: blink-animation 1.5s steps(5, start) infinite;
}
@keyframes blink-animation {
    to { visibility: hidden; }
}

@media (max-width: 767px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    body { padding-top: 100px !important; }
    [id] { scroll-margin-top: 120px !important; }

    #kobra-smart-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100px !important;
        z-index: 10000 !important;
        background: rgba(10, 10, 10, 0.9) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 2px solid rgba(243, 156, 18, 0.8) !important;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        overflow: visible !important;
    }

    .nav-up { transform: translateY(-100%) !important; }
    .nav-down { transform: translateY(0) !important; }

    .kobra-mobil-logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 100 !important;
    }

    .kobra-mobil-logo img {
        max-height: 100px !important;
        width: auto !important;
        filter: drop-shadow(0px 0px 10px rgba(243, 156, 18, 0.5));
    }

    .kobra-burger-trigger {
        position: absolute !important;
        right: 15px !important;
        top: 28px !important;
        width: 48px;
        height: 44px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(243, 156, 18, 0.1);
        border: 1px solid rgba(243, 156, 18, 0.3);
        border-radius: 8px;
        z-index: 101 !important;
        touch-action: manipulation;
        transition: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6) !important;
    }

    .burger-box { width: 28px; height: 20px; position: relative; }
    .burger-box span {
        display: block;
        position: absolute;
        height: 2px !important;
        width: 100%;
        background: #f39c12 !important;
        border-radius: 4px;
        transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6) !important;
        box-shadow: 0 0 12px rgba(243, 156, 18, 0.8) !important;
    }

    .line-1 { top: 0; }
    .line-2 { top: 9px; width: 60% !important; right: 0; left: auto !important; }
    .line-3 { top: 18px; }

    .kobra-burger-trigger[aria-expanded="true"] .line-1 {
        transform: translateY(9px) rotate(225deg) !important;
        background: #fff !important;
        box-shadow: 0 0 15px #fff !important;
    }

    .kobra-burger-trigger[aria-expanded="true"] .line-2 {
        opacity: 0 !important;
        transform: translateX(20px) !important;
    }

    .kobra-burger-trigger[aria-expanded="true"] .line-3 {
        transform: translateY(-9px) rotate(-225deg) !important;
        background: #fff !important;
        box-shadow: 0 0 15px #fff !important;
    }

    .kobra-burger-trigger:active { transform: scale(0.9); }

    #mobil-menu-kobra {
        background: rgba(8, 8, 8, 0.98) !important;
        border-bottom: 2px solid #f39c12 !important;
        position: fixed !important;
        top: 100px !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        max-height: calc(100vh - 100px) !important;
        overflow-y: auto !important;
    }

    .kobra-mobil-links li a {
        color: #ddd !important;
        text-align: center !important;
        padding: 20px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        font-family: 'Oswald', sans-serif;
        text-transform: uppercase;
    }

    .kobra-mobil-links li a:focus, 
    .kobra-mobil-links li a:active, 
    .kobra-mobil-links li a:hover {
        background-color: rgba(243, 156, 18, 0.1) !important;
        color: #f39c12 !important;
        outline: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }

    .kobra-mobil-links li {
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
    }

    #mobil-menu-kobra.in .kobra-mobil-links li {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (min-width: 768px) {
    .pc-kobra-original { 
        min-height: 140px !important; 
        background: #1a1a1a !important; 
        display: flex !important; 
        align-items: center; 
        justify-content: center; 
    }
}

@media (max-width: 767px) {
    .kobra-letter-container {
        position: absolute;
        left: 20px;
        top: 35px;
        display: flex;
        gap: 4px;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }

    #kobra-smart-nav:has(.collapse.in) .kobra-letter-container {
        opacity: 1;
        visibility: visible;
    }

    .kro-l {
        color: #f39c12;
        font-family: 'Oswald', sans-serif;
        font-size: 22px;
        font-weight: 700;
        display: inline-block;
        text-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
        transform-style: preserve-3d;
    }

    .animate-kro {
        animation: kroFlip 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    @keyframes kroFlip {
        0% { transform: rotateY(0deg) scale(0.5); opacity: 0; }
        50% { transform: rotateY(180deg) scale(1.2); opacity: 1; color: #fff; }
        100% { transform: rotateY(360deg) scale(1); opacity: 1; color: #f39c12; }
    }

    .kro-l:nth-child(1) { animation-delay: 0.1s; }
    .kro-l:nth-child(2) { animation-delay: 0.15s; }
    .kro-l:nth-child(3) { animation-delay: 0.2s; }
    .kro-l:nth-child(4) { animation-delay: 0.25s; }
    .kro-l:nth-child(5) { animation-delay: 0.3s; }
    .kro-l:nth-child(6) { animation-delay: 0.35s; }
    .kro-l:nth-child(7) { animation-delay: 0.4s; }
}