/* Kautek HUD - Final Version */
* { box-sizing: border-box; }

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

.kautek-stage-overlay-2025 {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(270deg, transparent, transparent 2px, rgba(0,0,0,0.1) 15px, rgba(0,0,0,0.1) 1px),
                radial-gradient(circle at 30% 40%, rgba(200,0,0,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(150,0,0,0.15) 0%, transparent 50%);
    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: #fff;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 100;
    text-shadow: 0 0 20px rgba(255,0,0,0.8), 0 2px 10px rgba(0,0,0,0.9);
    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, #ff0000, #fff, #ff0000, transparent);
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 20px #ff0000, 0 0 40px #fff;
    z-index: 100;
    width: 0;
    opacity: 1;
}
.kautek-beam-left-2025 { left: 0; }
.kautek-beam-right-2025 { right: 0; }

.kautek-desktop-layout-2025 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.kautek-mobile-layout-2025 {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px 15px;
}

.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-logo-box-2025 {
    position: absolute;
    width: 280px;
    height: 280px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: kautek-logoFloat-2025 4s ease-in-out infinite;
    border-radius: 100%;
    background-color: white;
    padding: 10px;
}

@keyframes kautek-logoFloat-2025 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.kautek-logo-box-2025 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.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(255,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: #ff0000;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255,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: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,0,0,0.9);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255,0,0,0.8), 0 0 40px rgba(255,0,0,0.4);
    white-space: nowrap;
    opacity: 0;
    animation: kautek-counterFade-2025 1s ease 2s forwards;
}

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

.kautek-menu-icon-2025 {
    width: 100px;
    height: 100px;
    background: rgba(20,0,0,0.6);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    flex-shrink: 0;
    margin: 0 15px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.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: rgba(255,255,255,0.9);
    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;
    text-shadow: 0 2px 10px rgba(255,255,255,0.3);
    background: linear-gradient(90deg, rgba(100,0,0,0.4), transparent);
    backdrop-filter: blur(5px);
    border-left: 3px solid rgba(255,0,0,0.6);
    border-radius: 0 8px 8px 0;
    text-decoration: none;
    display: inline-block;
}

.kautek-menu-arm-2025.kautek-left-2025 .kautek-menu-label-2025 {
    background: linear-gradient(90deg, transparent, rgba(100,0,0,0.4));
    border-left: none;
    border-right: 3px solid rgba(255,0,0,0.6);
    border-radius: 8px 0 0 8px;
}

.kautek-menu-label-2025:hover {
    color: #000;
    text-shadow: 0 0 20px #ff0000, 0 0 30px #fff;
    transform: translateX(8px);
    border-left-color: #ff0000;
    background: white;
}

.kautek-menu-arm-2025.kautek-left-2025 .kautek-menu-label-2025:hover {
    transform: translateX(-8px);
    border-right-color: #ff0000;
}

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

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

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

.kautek-menu-arm-2025.kautek-active-2025 .kautek-menu-icon-2025 {
    background: rgba(255,0,0,0.4);
    border-color: #ff0000;
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(255,0,0,0.8);
}

/* Mobile */
.kautek-mobile-wheel-2025 {
    width: 280px;
    height: 280px;
    flex-shrink: 0;
    position: relative;
    animation: kautek-slowSpin-2025 60s linear infinite;
}

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

/* Mobile Logo - Çarkın Merkezinde */
.kautek-mobile-logo-2025 {
    position: absolute;
    width: 140px;
    height: 140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    pointer-events: none;
    background: #ffffff;
    border-radius: 100px;
    padding: 10px;
}

.kautek-mobile-logo-2025 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: kautek-logoImgFloat-2025 4s ease-in-out infinite;
}

@keyframes kautek-logoImgFloat-2025 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.kautek-mobile-menu-grid-2025 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 380px;
    padding: 0 10px;
    margin-top: 20px;
}

.kautek-mobile-menu-item-2025 {
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,0,0,0.4);
    border-radius: 10px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.kautek-mobile-menu-item-2025:active {
    transform: scale(0.95);
    background: rgba(255,0,0,0.4);
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255,0,0,0.6);
}

.kautek-mobile-menu-item-2025 .kautek-menu-icon-2025 {
    width: 50px;
    height: 50px;
    font-size: 22px;
    margin: 0 0 8px 0;
    background: rgba(0,0,0,0.3);
}

.kautek-mobile-menu-item-2025 .kautek-menu-label-2025 {
    font-size: 12px;
    padding: 0 4px;
    text-align: center;
    border: none;
    background: transparent;
    letter-spacing: 0.8px;
    line-height: 1.3;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0,0,0,0.9);
}

.kautek-mobile-menu-item-2025:active .kautek-menu-icon-2025 {
    border-color: #ff0000;
    background: rgba(255,0,0,0.3);
    transform: scale(1.1);
}

.kautek-mobile-menu-item-2025:active .kautek-menu-label-2025 {
    color: #fff;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #fff;
}

@keyframes kautek-mobilePulse-2025 {
    0%, 100% {
        border-color: #ff0000;
        box-shadow: 0 0 20px rgba(255,0,0,0.6);
    }
    50% {
        border-color: #fff;
        box-shadow: 0 0 30px rgba(255,255,255,0.8), 0 0 40px rgba(255,0,0,0.8);
    }
}

.kautek-mobile-menu-item-2025.kautek-pulse-2025 {
    animation: kautek-mobilePulse-2025 0.5s ease-in-out;
}

@media (max-width: 768px) {
    .kautek-header-title-2025 {
        font-size: 16px;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: 90%;
    }

    .kautek-desktop-layout-2025 {
        display: none !important;
    }

    .kautek-mobile-layout-2025 {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .kautek-mobile-wheel-2025 {
        width: 240px;
        height: 240px;
    }

    .kautek-mobile-logo-2025 {
        width: 120px;
        height: 120px;
    }

    .kautek-mobile-menu-grid-2025 {
        max-width: 340px;
        gap: 8px;
    }

    .kautek-mobile-menu-item-2025 {
        min-height: 75px;
        padding: 5px;
    }

    .kautek-mobile-menu-item-2025 .kautek-menu-icon-2025 {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .kautek-mobile-menu-item-2025 .kautek-menu-label-2025 {
        font-size: 11px;
    }
}
