        .logo {
            width: 150px;
            height: 110px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(26,42,58,0.95), rgba(26,42,58,0.98));
            border-radius: 16px;
            border: 2px solid rgba(255,107,107,0.4);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
            transition: left 0.5s;
        }

        .logo:hover::before {
            left: 100%;
        }

        .logo:hover {
            transform: scale(1.02);
            border-color: #ff6b6b;
            box-shadow: 0 0 20px rgba(255,107,107,0.4);
        }

        .logo .top {
            display: flex;
            align-items: flex-end;
            gap: 3px;
            margin-bottom: 2px;
        }

        .logo .bottom {
            display: flex;
            align-items: flex-start;
            gap: 3px;
            margin-top: 2px;
        }

        .logo .shape {
            width: 10px;
            animation: colorShift 4s infinite alternate;
        }

        .logo .shape1 { 
            height: 10px; 
            background: #1abc9c; 
            clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 30%);
            filter: drop-shadow(0 0 2px #f39c12); 
            animation-delay: 0s;
        }
        .logo .shape2 { 
            height: 14px; 
            background: #3498db; 
            clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 30%);
            filter: drop-shadow(0 0 2px #e74c3c); 
            animation-delay: 0.5s;
        }
        .logo .shape3 { 
            height: 18px; 
            background: #1abc9c;
            clip-path: polygon(50% 0%, 50% 0%, 100% 20%, 100% 100%, 0% 100%, 0% 20%);
            filter: drop-shadow(0 0 2px #9b59b6); 
            animation-delay: 1s;
        }
        .logo .shape4 { 
            height: 14px; 
            background: #3498db;
            clip-path: polygon(0% 0%, 100% 30%, 100% 100%, 0% 100%, 0% 50%);
            filter: drop-shadow(0 0 2px #1abc9c); 
            animation-delay: 1.5s;
        }
        .logo .shape5 { 
            height: 10px; 
            background: #1abc9c; 
            clip-path: polygon(0% 0%, 100% 30%, 100% 100%, 0% 100%, 0% 50%);
            filter: drop-shadow(0 0 2px #e67e22); 
            animation-delay: 2s;
        }

        .logo .bottom .shape {
            transform: scaleY(-1);
        }

        @keyframes colorShift {
            0% { background-color: #1abc9c; filter: drop-shadow(0 0 2px #f39c12); }
            25% { background-color: #3498db; filter: drop-shadow(0 0 2px #e74c3c); }
            50% { background-color: #9b59b6; filter: drop-shadow(0 0 2px #f1c40f); }
            75% { background-color: #e74c3c; filter: drop-shadow(0 0 2px #1abc9c); }
            100% { background-color: #1abc9c; filter: drop-shadow(0 0 2px #f39c12); }
        }

        .logo .text {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            width: 100%;
        }

        .logo .text h1 {
            font-size: 14px;
            font-weight: bold;
            margin: 2px 0;
            line-height: 1.2;
            background: linear-gradient(135deg, #ff6b6b, #ffd93d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 0.5px;
        }

        .logo .text p {
            font-size: 10px;
            margin: 0;
            line-height: 1.1;
            color: #cbd5e0;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .logo .text h1 {
                font-size: 11px;
            }
            .logo .text p {
                font-size: 9px;
            }
            .logo .shape {
                width: 8px;
            }
            .logo .shape1, .logo .shape5 { height: 8px; }
            .logo .shape2, .logo .shape4 { height: 11px; }
            .logo .shape3 { height: 14px; }
        }
