/* Extracted from hakkimizda.php */
.hstdr-3d-card {
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        position: relative;
        overflow: hidden;
    }
    .hstdr-3d-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3);
    }
    .hstdr-3d-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    .hstdr-3d-card:hover::before {
        opacity: 1;
    }
    .hstdr-glass {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0); }
        50% { transform: translateY(-20px) rotate(5deg); }
    }
    .hstdr-floating {
        animation: float 6s ease-in-out infinite;
    }
    .hstdr-glow-blue {
        box-shadow: 0 0 30px -10px rgba(59, 130, 246, 0.5);
    }
    /* 3D Tech Animation Styles */
    .hstdr-tech-node {
        position: absolute;
        width: 12px;
        height: 12px;
        background: #3b82f6;
        border-radius: 50%;
        filter: blur(2px);
        box-shadow: 0 0 15px #3b82f6;
        animation: hstdr-orbit 10s linear infinite;
    }
    @keyframes hstdr-orbit {
        from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
        to { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
    }
    .hstdr-cube-wrap {
        perspective: 1000px;
        perspective-origin: 50% 50%;
    }
    .hstdr-cube {
        width: 100px;
        height: 100px;
        position: relative;
        transform-style: preserve-3d;
        animation: hstdr-rotate-cube 20s infinite linear;
    }
    @keyframes hstdr-rotate-cube {
        from { transform: rotateX(0deg) rotateY(0deg); }
        to { transform: rotateX(360deg) rotateY(360deg); }
    }
    .hstdr-cube div {
        position: absolute;
        width: 100px;
        height: 100px;
        background: rgba(59, 130, 246, 0.11);
        border: 1px solid rgba(59, 130, 246, 0.4);
        backdrop-filter: blur(4px);
    }
    .hstdr-cube .front  { transform: translateZ(50px); }
    .hstdr-cube .back   { transform: rotateY(180deg) translateZ(50px); }
    .hstdr-cube .right  { transform: rotateY(90deg) translateZ(50px); }
    .hstdr-cube .left   { transform: rotateY(-90deg) translateZ(50px); }
    .hstdr-cube .top    { transform: rotateX(90deg) translateZ(50px); }
    .hstdr-cube .bottom { transform: rotateX(-90deg) translateZ(50px); }
