@charset "utf-8";
/* CSS Document */
        /* ===========================
           ESTILOS BASE
           =========================== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Quicksand', sans-serif;
            background-color: #EED638; /* Amarillo Hatties */
            color: #2e2e2e;
            height: 100vh;
            overflow: hidden;
        }

        .topbar {
            background-color: #2e2e2e;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 28px;
            height: 60px;
        }
        .topbar-logo { color: #EED638; font-weight: 700; font-size: 1.4rem; }
        .logout-btn { color: #ffffff; text-decoration: none; border: 2px solid rgba(255, 255, 255, 0.3); border-radius: 20px; padding: 6px 16px; font-weight: 700; }

        .layout { display: flex; height: calc(100vh - 60px); }

        .sidebar {
            width: 180px;
            background-color: #2e2e2e;
            display: flex; flex-direction: column;
            padding: 24px 0; gap: 4px;
        }
        .nav-item {
            color: rgba(255, 255, 255, 0.6);
            padding: 12px 20px;
            text-decoration: none;
            font-weight: 700; font-size: 0.9rem;
            border-left: 3px solid transparent;
        }
        .nav-item.activo { color: #EED638; border-left-color: #EED638; background-color: rgba(238, 214, 56, 0.08); }

        /* ===========================
           ESTILOS DEL MATCH
           =========================== */
        .contenido { 
            flex: 1; 
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .card-container {
            position: relative;
            width: 320px;
            height: 480px;
            margin-bottom: 20px;
        }

        .profile-card {
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: #2e2e2e;
            border-radius: 30px;
            color: white;
            padding: 25px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            transition: transform 0.5s ease-out, opacity 0.4s;
            z-index: 10;
        }

        .card-avatar {
            width: 90px; height: 90px;
            background-color: #EED638;
            color: #2e2e2e;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 2.2rem; font-weight: 700;
            margin: 0 auto 15px auto;
        }

        .card-info { text-align: center; }
        .card-name { font-size: 1.4rem; color: #EED638; margin-bottom: 10px; }
        
        .card-details {
            text-align: left;
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 15px;
            font-size: 0.85rem;
        }

        .detail-item { display: block; margin-bottom: 6px; }
        .detail-label { color: #EED638; font-weight: 700; margin-right: 5px; }

        /* BOTONES OSCUROS (#2e2e2e) */
        .actions {
            display: flex;
            gap: 30px;
        }

        .btn-action {
            width: 60px; height: 60px;
            border-radius: 50%;
            border: none;
            background-color: #2e2e2e; /* Color solicitado */
            color: #EED638; /* Iconos en amarillo para contraste */
            cursor: pointer;
            font-size: 1.5rem;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: transform 0.2s;
        }

        .btn-action:hover { transform: scale(1.15); }
        .btn-action:active { transform: scale(0.9); }

        /* Animaciones */
        .slide-left { transform: translateX(-150%) rotate(-20deg); opacity: 0; }
        .slide-right { transform: translateX(150%) rotate(20deg); opacity: 0; }

        .empty-state { display: none; text-align: center; color: #2e2e2e; }