/* Kautek HUD Unique Styles - Journal3 Compatible - Desktop Only & Responsive */
* { box-sizing: border-box; }

.kautek-hud-wrapper-2025 {
    width: 100%;
    height: 105vh;
    min-height: 700px;
    max-height: 900px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Video Background Support - handled inline in template */

.kautek-stage-overlay-2025 {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
    animation: kautek-scanline-2025 8s linear infinite;
}

@keyframes kautek-scanline-2025 {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

.kautek-header-title-2025 {
    position: absolute;
    top: 30px;
    left: 40px;
    color: #000;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 100;
    opacity: 0;
    animation: kautek-fadeInTitle-2025 1s ease 1.5s forwards;
}

@keyframes kautek-fadeInTitle-2025 {
    to { opacity: 1; }
}

.kautek-intro-beam-2025 {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, transparent, #000000, #fff, #000000, transparent);
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 20px #000000, 0 0 40px #fff;
    z-index: 100;
    width: 0;
    opacity: 1;
}
.kautek-beam-left-2025 { left: 0; }
.kautek-beam-right-2025 { right: 0; }

/* DESKTOP LAYOUT (Always Visible) */
.kautek-desktop-layout-2025 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    /* Mobilde taşmayı engellemek için */
    overflow: hidden; 
}

/* HUB MERKEZİ - Tüm sistem bunun içinde */
.kautek-center-hub-2025 {
    position: relative;
    width: 0;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.kautek-wheel-container-2025 {
    position: absolute;
    width: 500px;
    height: 500px;
    z-index: 20;
    transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.kautek-wheel-ring-2025 {
    width: 100%;
    height: 100%;
    position: relative;
}

.kautek-wheel-ring-2025 svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.4));
    animation: kautek-wheelPulse-2025 3s ease-in-out infinite;
}

@keyframes kautek-wheelPulse-2025 {
    0%, 100% { 
        filter: drop-shadow(0 0 15px rgba(255,255,255,0.4));
    }
    50% { 
        filter: drop-shadow(0 0 25px rgba(255,255,255,0.7)) drop-shadow(0 0 40px rgba(0,0,0,0.3));
    }
}

.kautek-wheel-shine-2025 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(255,255,255,0.3) 30deg, transparent 60deg);
    border-radius: 50%;
    animation: kautek-rotateSlow-2025 12s linear infinite;
    pointer-events: none;
}

@keyframes kautek-rotateSlow-2025 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.kautek-desktop-menu-container-2025 {
    position: relative;
}

.kautek-menu-arm-2025 {
    position: absolute;
    display: flex;
    align-items: center;
    z-index: 30;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.kautek-menu-arm-2025.kautek-right-2025 {
    flex-direction: row;
}

.kautek-menu-arm-2025.kautek-left-2025 {
    flex-direction: row-reverse;
}

.kautek-connector-2025 {
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.3));
    transition: all 0.4s ease;
    width: 150px;
    box-shadow: 0 0 5px rgba(255,255,255,0.5);
    position: relative;
}

.kautek-menu-arm-2025.kautek-left-2025 .kautek-connector-2025 {
    background: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.8));
}

.kautek-connector-2025::after {
    content: '';
    position: absolute;
    top: -4px;
    width: 10px;
    height: 10px;
    background: #000000;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0,0,0,0.8);
    transition: all 0.4s;
}

.kautek-menu-arm-2025.kautek-right-2025 .kautek-connector-2025::after {
    right: -5px;
}

.kautek-menu-arm-2025.kautek-left-2025 .kautek-connector-2025::after {
    left: -5px;
}

.kautek-connector-2025::before {
    content: '';
    position: absolute;
    top: -3px;
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255,255,255,0.8);
}

.kautek-menu-arm-2025.kautek-right-2025 .kautek-connector-2025::before {
    left: -4px;
}

.kautek-menu-arm-2025.kautek-left-2025 .kautek-connector-2025::before {
    right: -4px;
}

/* COUNTER */
.kautek-menu-counter-2025 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    white-space: nowrap;
    text-shadow: 0 0 15px rgb(255 255 255 / 90%), 0 0 8px rgb(255 255 255 / 60%);
    z-index: 5;
    opacity: 0;
    animation: kautek-counterFadeIn-2025 1s ease 2.5s forwards;
}

@keyframes kautek-counterFadeIn-2025 {
    to { opacity: 1; }
}

.kautek-menu-icon-2025 {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.4s ease;
    flex-shrink: 0;
    margin: 0 15px;
    text-decoration: none;
    cursor: pointer;
}

.kautek-menu-icon-2025 img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 5px;
    pointer-events: none;
}

.kautek-menu-label-2025 {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    border-left: 3px solid rgba(0,0,0,0.6);
    text-decoration: none;
    display: inline-block;
}

.kautek-menu-label-2025:hover {
    color: #000;
    transform: translateX(8px);
    border-left-color: #000000;
    background: white;
}

.kautek-menu-arm-2025.kautek-left-2025 .kautek-menu-label-2025:hover {
    color: #000;
}

.kautek-menu-arm-2025.kautek-active-2025 .kautek-connector-2025 {
    background: linear-gradient(90deg, #fff, rgba(0,0,0,0.9));
    box-shadow: 0 0 20px #000000, 0 0 35px #fff;
    width: 170px;
}

.kautek-menu-arm-2025.kautek-left-2025.kautek-active-2025 .kautek-connector-2025 {
    background: linear-gradient(90deg, rgba(0,0,0,0.9), #fff);
}

.kautek-menu-arm-2025.kautek-active-2025 .kautek-connector-2025::after {
    background: #fff;
    box-shadow: 0 0 25px #000000, 0 0 40px #fff;
    transform: scale(1.4);
}

.kautek-menu-arm-2025.kautek-active-2025 .kautek-menu-icon-2025 {
    transform: scale(1.15);
}

/* =========================================
   RESPONSIVE SCALING LOGIC (Her Ekran İçin)
   ========================================= */

/* Büyük ekranlar (Large Desktop) */
@media (min-width: 1600px) {
    .kautek-center-hub-2025 {
        transform: scale(1.2); /* Biraz büyüt */
    }
}

/* Laptop / Küçük Desktop (1024px - 1366px arası) */
@media (max-width: 1366px) {
    .kautek-center-hub-2025 {
        transform: scale(0.85); /* Hafif küçült */
    }
}

/* Tablet (Portrait) & iPad (768px - 1023px) */
@media (max-width: 1024px) {
    .kautek-hud-wrapper-2025 {
        min-height: 600px; /* Yüksekliği biraz kıs */
    }
    
    .kautek-center-hub-2025 {
        transform: scale(0.65); /* Belirgin şekilde küçült */
    }

    .kautek-header-title-2025 {
        font-size: 24px;
        left: 20px;
    }
}

/* Mobile (Landscape & Large Phones) (481px - 767px) */
@media (max-width: 768px) {
    .kautek-hud-wrapper-2025 {
        height: 100vh;
        min-height: 500px;
    }

    .kautek-center-hub-2025 {
        transform: scale(0.45); /* Yarıdan fazla küçült */
    }

    /* Başlığı ortala */
    .kautek-header-title-2025 {
        font-size: 18px;
        width: 100%;
        text-align: center;
        left: 0;
        top: 20px;
    }
}

/* Small Mobile (Portrait) (max 480px) */
@media (max-width: 480px) {
    .kautek-hud-wrapper-2025 {
        min-height: 450px;
    }

    .kautek-center-hub-2025 {
        transform: scale(0.32); /* Ekrana sığması için iyice küçült */
    }

    .kautek-header-title-2025 {
        font-size: 16px;
        top: 15px;
    }
}

/* Landscape Mode (Yatay Tutuş) */
@media (max-height: 500px) and (orientation: landscape) {
    .kautek-hud-wrapper-2025 {
        min-height: 100vh;
    }
    
    .kautek-center-hub-2025 {
        transform: scale(0.4); /* Yatayda sığması için */
    }
    
    .kautek-header-title-2025 {
        display: none; /* Yer kaplamaması için başlığı gizle */
    }
}