/* =========================================
   l00t — Pages (404, Search, Static)
   ========================================= */

/* =========================================
   Search Form (shared)
   ========================================= */

.l00t-search-form {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(200, 210, 255, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.l00t-search-form:focus-within {
    border-color: rgba(200, 210, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    box-shadow:
        0 0 0 3px rgba(200, 210, 255, 0.1),
        0 0 24px rgba(200, 210, 255, 0.15);
}

.l00t-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 1.1rem;
    color: rgba(200, 210, 255, 0.5);
    flex-shrink: 0;
}

.l00t-search-icon svg {
    width: 18px;
    height: 18px;
}

.l00t-search-input {
    flex: 1;
    min-width: 0;
    padding: 1rem;
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 1rem;
    color: #fff;
    background: transparent;
    border: none;
    outline: none;
}

.l00t-search-input::placeholder {
    color: rgba(200, 200, 210, 0.35);
}

.l00t-search-submit {
    flex-shrink: 0;
    padding: 0 1.5rem;
    min-height: 52px;
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #050505;
    background: #c8d2ff;
    border: none;
    border-left: 1px solid rgba(200, 210, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.l00t-search-submit:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(200, 210, 255, 0.5);
}

/* =========================================
   404 Page
   ========================================= */

.l00t-404 {
    position: relative;
    min-height: calc(100vh - var(--l00t-header-height, 72px));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    overflow: hidden;
}


.l00t-404-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 720px;
    width: 100%;
    text-align: center;
}

.l00t-404-code {
    font-family: 'Orbitron', 'Rajdhani', system-ui, sans-serif;
    font-size: clamp(6rem, 20vw, 14rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 0.02em;
    user-select: none;

    background: linear-gradient(180deg, #ffffff 0%, #c0c0d0 45%, #303040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    filter:
        drop-shadow(0 0 30px rgba(200, 210, 255, 0.35))
        drop-shadow(0 0 60px rgba(120, 80, 200, 0.25));

    animation: l00t-404-glow 4s ease-in-out infinite alternate;
}

@keyframes l00t-404-glow {
    0% {
        filter:
            drop-shadow(0 0 20px rgba(200, 210, 255, 0.25))
            drop-shadow(0 0 40px rgba(120, 80, 200, 0.15));
    }
    100% {
        filter:
            drop-shadow(0 0 40px rgba(200, 210, 255, 0.5))
            drop-shadow(0 0 80px rgba(120, 80, 200, 0.4));
    }
}

.l00t-404-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: lowercase;
    color: #fff;
    margin: 0;
}

.l00t-404-text {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(200, 200, 210, 0.65);
    max-width: 480px;
    margin: 0 0 0.5rem;
}

.l00t-404-search {
    width: 100%;
    max-width: 520px;
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.l00t-404-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    width: 100%;
    max-width: 640px;
    margin-top: 1.5rem;
}

.l00t-404-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;

    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    text-decoration: none;
    color: rgba(200, 210, 255, 0.75);

    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(200, 210, 255, 0.12);
    border-radius: 6px;

    transition: all 0.3s ease;
}

.l00t-404-link:hover {
    color: #fff;
    border-color: rgba(200, 210, 255, 0.5);
    background: rgba(200, 210, 255, 0.05);
    transform: translateY(-3px);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(200, 210, 255, 0.1);
}

.l00t-404-link-icon {
    font-size: 1.25rem;
    line-height: 1;
    color: rgba(200, 210, 255, 0.5);
    transition: transform 0.3s ease, color 0.3s ease;
}

.l00t-404-link:hover .l00t-404-link-icon {
    color: #c8d2ff;
    transform: translateX(4px);
}

/* =========================================
   Search Results
   ========================================= */

.l00t-search-hero {
    max-width: 900px;
    margin: 4rem auto 1rem;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.l00t-page-hero-label {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(200, 210, 255, 0.5);
    padding-left: 5px;
}

.l00t-search-hero .l00t-page-title {
    font-family: 'Orbitron', 'Rajdhani', system-ui, sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    text-transform: lowercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin: 0;

    background: linear-gradient(180deg, #ffffff 0%, #c0c0d0 55%, #505060 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    filter:
        drop-shadow(0 0 20px rgba(200, 210, 255, 0.25))
        drop-shadow(0 0 40px rgba(120, 80, 200, 0.15));
}

.l00t-search-hero .l00t-page-sub {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 1rem;
    color: rgba(200, 200, 210, 0.7);
    letter-spacing: 0.5px;
    margin: 0;
}

.l00t-search-hero .l00t-page-sub strong {
    color: #c8d2ff;
    font-weight: 600;
}

.l00t-search-bar-wrap {
    width: 100%;
    max-width: 560px;
    margin-top: 1.5rem;
}

/* Sonuçlar */
.l00t-search-query {
    max-width: 900px;
    margin: 3rem auto 6rem;
    padding: 0 2rem;
}

.l00t-search-list {
    display: flex !important;
    flex-direction: column;
    gap: 1rem;
    margin: 0 0 3rem;
}

.l00t-search-item {
    padding: 1.5rem 1.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(200, 210, 255, 0.12);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.l00t-search-item:hover {
    border-color: rgba(200, 210, 255, 0.4);
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(4px);
}

.l00t-search-title {
    font-family: 'Orbitron', 'Rajdhani', system-ui, sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    letter-spacing: 0.3px;
    margin: 0 0 0.75rem !important;
}

.l00t-search-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.l00t-search-title a:hover {
    color: #c8d2ff;
    text-shadow: 0 0 15px rgba(200, 210, 255, 0.5);
}

.l00t-search-excerpt {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(200, 200, 210, 0.6);
    margin: 0 0 0.75rem !important;
}

.l00t-search-more {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c8d2ff !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(200, 210, 255, 0.3);
    padding-bottom: 1px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.l00t-search-more:hover {
    color: #fff !important;
    border-bottom-color: #fff;
}

/* Boş sonuç */
.l00t-search-empty {
    text-align: center;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.l00t-search-empty-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
}

.l00t-search-empty-text {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 1rem;
    color: rgba(200, 200, 210, 0.55);
    margin: 0;
    max-width: 400px;
}

.l00t-search-empty-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.l00t-search-empty-links a {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c8d2ff;
    text-decoration: none;
    padding: 0.6rem 1.25rem;
    border: 1px solid rgba(200, 210, 255, 0.25);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.l00t-search-empty-links a:hover {
    color: #fff;
    border-color: rgba(200, 210, 255, 0.6);
    background: rgba(200, 210, 255, 0.06);
}

/* =========================================
   Static Page (page.html)
   ========================================= */

.l00t-static-page {
    max-width: 780px;
    margin: 3rem auto 6rem;
    padding: 0 2rem;
}

.l00t-static-page-title {
    font-family: 'Orbitron', 'Rajdhani', system-ui, sans-serif !important;
    font-size: clamp(1.75rem, 4vw, 2.75rem) !important;
    font-weight: 600 !important;
    line-height: 1.15 !important;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    color: #fff;
    margin: 0 0 2rem !important;
}

.l00t-static-page-image {
    margin: 0 0 2rem !important;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(200, 210, 255, 0.12);
}

.l00t-static-page-image img {
    width: 100%;
    height: auto;
    display: block;
}

.l00t-static-page-content {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(230, 230, 240, 0.85);
}

.l00t-static-page-content h2,
.l00t-static-page-content h3,
.l00t-static-page-content h4 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
    color: #fff;
    margin: 2.25rem 0 1rem;
    line-height: 1.25;
}

.l00t-static-page-content h2 { font-size: 1.5rem; }
.l00t-static-page-content h3 { font-size: 1.2rem; }

.l00t-static-page-content p { margin: 0 0 1.25rem; }

.l00t-static-page-content a {
    color: #c8d2ff;
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 210, 255, 0.3);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.l00t-static-page-content a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.l00t-static-page-content ul,
.l00t-static-page-content ol {
    margin: 0 0 1.25rem;
    padding-left: 1.5rem;
}

.l00t-static-page-content li { margin: 0 0 0.5rem; }

.l00t-static-page-content blockquote {
    border-left: 2px solid rgba(200, 210, 255, 0.4);
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin: 1.5rem 0;
    color: rgba(200, 210, 255, 0.8);
    font-style: italic;
}

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 700px) {
    .l00t-404 { padding: 3rem 1.25rem; }
    .l00t-404-links { grid-template-columns: repeat(2, 1fr); }
    .l00t-404-text { font-size: 0.95rem; }

    .l00t-search-hero { padding: 0 1.25rem; margin-top: 3rem; }
    .l00t-search-query { padding: 0 1.25rem; margin: 2rem auto 4rem; }
    .l00t-search-item { padding: 1.25rem; }
    .l00t-search-title { font-size: 1.05rem !important; }

    .l00t-static-page { padding: 0 1.25rem; margin: 2rem auto 4rem; }
    .l00t-static-page-content { font-size: 1rem; }

    .l00t-search-form { max-width: 100%; }
    .l00t-search-input { padding: 0.85rem 0.75rem; font-size: 0.95rem; }
    .l00t-search-submit { padding: 0 1.1rem; font-size: 0.72rem; letter-spacing: 1.5px; }
}